fix Android example app

This commit is contained in:
Nick Fisher
2023-09-19 17:48:54 +08:00
parent 0e51deb31c
commit 791ac0504d
133 changed files with 21 additions and 11741 deletions

View File

@@ -29,7 +29,7 @@ apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android {
compileSdkVersion 31
ndkVersion "23.1.7779620"
ndkVersion "25.2.9519653"
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
@@ -45,12 +45,14 @@ android {
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "app.polyvox.filament_example"
minSdkVersion 21
targetSdkVersion 30
minSdkVersion 22
targetSdkVersion 31
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
ndk {
abiFilters 'arm64-v8a' // 'x86_64' 'armeabi-v7a'
}
}
buildTypes {
@@ -63,12 +65,6 @@ android {
'proguard-rules.pro'
}
}
packagingOptions {
pickFirst "lib/**/libjnidispatch.so"
}
aaptOptions {
noCompress "ktx"
}
}
flutter {