Skip to content

Commit

Permalink
Revert minSdkVersion from 23 to 21 to fix crashed with QTI backend
Browse files Browse the repository at this point in the history
  • Loading branch information
anhappdev committed May 28, 2024
1 parent 773b8b2 commit 64ddf9e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions flutter/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ android {

defaultConfig {
applicationId "org.mlcommons.android.mlperfbench"
minSdkVersion 23
minSdkVersion 21
targetSdkVersion 33
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
Expand Down Expand Up @@ -91,7 +91,9 @@ dependencies {
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'

implementation(platform("com.google.firebase:firebase-bom:33.0.0"))
// firebase-bom v32.8.1 is required to use minSdkVersion 21
// https://firebase.google.com/support/release-notes/android#2024-05-02
implementation(platform("com.google.firebase:firebase-bom:32.8.1"))
implementation("com.google.firebase:firebase-appcheck-playintegrity")
implementation("com.google.firebase:firebase-appcheck-debug")
}

0 comments on commit 64ddf9e

Please sign in to comment.