openai service

This commit is contained in:
2026-02-08 12:04:45 +06:00
parent 5c7b65a0d3
commit d7722ad81d
19 changed files with 1372 additions and 1008 deletions

View File

@@ -31,12 +31,29 @@ android {
}
buildTypes {
debug {
// Fix for Samsung device crash dump error
isDebuggable = true
isJniDebuggable = false
isMinifyEnabled = false
ndk {
// Disable crash dump on Samsung devices
abiFilters.clear()
abiFilters.addAll(listOf("arm64-v8a", "armeabi-v7a"))
}
}
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig = signingConfigs.getByName("debug")
}
}
packagingOptions {
jniLibs {
useLegacyPackaging = true
}
}
}
flutter {