remove transparency apple

This commit is contained in:
zach
2025-12-30 20:09:25 -07:00
parent dc9f172d01
commit 9acb2fa547
23 changed files with 16 additions and 13 deletions
+15 -13
View File
@@ -29,14 +29,15 @@ android {
targetSdk = flutter.targetSdkVersion
versionCode = flutter.versionCode
versionName = flutter.versionName
externalNativeBuild {
cmake {
arguments += listOf("-DANDROID_STL=c++_shared")
}
}
ndk {
abiFilters += listOf("armeabi-v7a", "arm64-v8a", "x86_64")
}
// Codec2 native build removed - no longer needed
// externalNativeBuild {
// cmake {
// arguments += listOf("-DANDROID_STL=c++_shared")
// }
// }
// ndk {
// abiFilters += listOf("armeabi-v7a", "arm64-v8a", "x86_64")
// }
}
buildTypes {
@@ -47,11 +48,12 @@ android {
}
}
externalNativeBuild {
cmake {
path = file("src/main/cpp/CMakeLists.txt")
}
}
// Codec2 native build removed - no longer needed
// externalNativeBuild {
// cmake {
// path = file("src/main/cpp/CMakeLists.txt")
// }
// }
}
flutter {