We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27b2a80 commit b03af50Copy full SHA for b03af50
app/build.gradle.kts
@@ -13,7 +13,11 @@ android {
13
14
defaultConfig {
15
applicationId = "org.fairscan.app"
16
- minSdk = 24
+ // Based on tests against virtual devices, the app works with Android 8.0 (API level 26).
17
+ // It crashes because of LiteRT on earlier versions.
18
+ // LiteRT documentation only states that version 1.2.0 requires Android 12:
19
+ // https://ai.google.dev/edge/litert/android/index
20
+ minSdk = 26
21
targetSdk = 35
22
versionCode = 13
23
versionName = "0.10.0"
0 commit comments