Skip to content

Commit

Permalink
chore: increase Android targetSdkVersion from 33 to 34 (#896)
Browse files Browse the repository at this point in the history
* Increase targetSdkVersion from 33 to 34

* Archive AAB with unified backend in CI

* Add NDK filter in build.gradle
  • Loading branch information
anhappdev authored Jul 9, 2024
1 parent 09e4b41 commit e5c54e6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/android-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,13 @@ jobs:
path: output/android-apks/*-qsmgt-${{ github.run_number }}.apk
retention-days: 28
if-no-files-found: error
- name: Archive AAB with unified backend
uses: actions/upload-artifact@v4
with:
name: android-aab-unified-${{ github.run_number }}
path: output/android-apks/*-qsmgt-${{ github.run_number }}.aab
retention-days: 28
if-no-files-found: error

test-android-apk-tflite:
needs: build-android-apk
Expand Down
6 changes: 5 additions & 1 deletion flutter/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,14 @@ android {
defaultConfig {
applicationId "org.mlcommons.android.mlperfbench"
minSdkVersion 21
targetSdkVersion 33
targetSdkVersion 34
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

ndk {
abiFilters "arm64-v8a", "armeabi-v7a"
}
}

signingConfigs {
Expand Down

0 comments on commit e5c54e6

Please sign in to comment.