From a9f7405cfa12cca2f9815b192f13bd67136f1c72 Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Wed, 6 Sep 2023 20:31:08 +0200 Subject: [PATCH] K/M: Enable tvOS and watchOS targets --- .github/workflows/mobsf.yml | 6 +++--- CHANGELOG.md | 1 + kase64/build.gradle.kts | 4 ++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/mobsf.yml b/.github/workflows/mobsf.yml index 9cd1fa8..baa2082 100644 --- a/.github/workflows/mobsf.yml +++ b/.github/workflows/mobsf.yml @@ -9,12 +9,12 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Setup Python 3.10 + - name: Setup Python 3.11 uses: actions/setup-python@v4 with: - python-version: 3.10 + python-version: '3.11' - name: Run mobsfscan - uses: MobSF/mobsfscan@a60d10a83af68e23e0b30611c6515da604f06f65 + uses: MobSF/mobsfscan@0.3.4 with: args: . --sarif --output results.sarif || true - name: Upload mobsfscan report diff --git a/CHANGELOG.md b/CHANGELOG.md index 14132df..8faff77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Changed +- Apple: Add targets `tvos` and `watchos` - Dependency update: - [Android Gradle Plugin 7.2.2](https://developer.android.com/studio/releases/gradle-plugin#7-2-0) - [Gradle-7.5.1](https://docs.gradle.org/7.5.1/release-notes.html) diff --git a/kase64/build.gradle.kts b/kase64/build.gradle.kts index ed21358..bbfc5ab 100644 --- a/kase64/build.gradle.kts +++ b/kase64/build.gradle.kts @@ -20,8 +20,8 @@ kotlin { linuxX64() macosArm64() mingwX64() // Winwhat?!? - // tvos() - // watchos() + tvos() + watchos() sourceSets["commonTest"].dependencies { implementation(kotlin("test"))