Skip to content

Commit

Permalink
Lower minimum platform/API/SDK level/version to 26 (Android 8.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
torokati44 committed Nov 30, 2023
1 parent 55dc297 commit 7072c1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
run: |
unset ANDROID_SDK_ROOT # Deprecated, will cause an error if left set.
cd native
cargo ndk --target ${{ matrix.android-abi }} --platform 29 -o ../jniLibs build --release
cargo ndk --target ${{ matrix.android-abi }} --platform 26 -o ../jniLibs build --release
- uses: actions/upload-artifact@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions app/ruffle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
}
defaultConfig {
applicationId "rs.ruffle"
minSdk 29
minSdk 26
targetSdk 33
versionCode 1
versionName "1.0"
Expand Down Expand Up @@ -96,7 +96,7 @@ if (System.getenv("GITHUB_ACTIONS") == null) {

cargoNdk {
module = "../native"
apiLevel = 29
apiLevel = 26
buildType = "release"
}
}

0 comments on commit 7072c1f

Please sign in to comment.