Files
oott/frontend/android/app/build.gradle.kts
T

52 lines
1.6 KiB
Kotlin
Raw Normal View History

2026-02-11 14:07:27 -05:00
plugins {
id("com.android.application")
id("kotlin-android")
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
id("dev.flutter.flutter-gradle-plugin")
}
android {
2026-06-08 14:46:55 -04:00
namespace = "net.oottsecurity.app"
2026-02-11 14:07:27 -05:00
compileSdk = flutter.compileSdkVersion
ndkVersion = flutter.ndkVersion
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
2026-06-08 14:46:55 -04:00
// flutter_local_notifications uses java.time APIs that need desugaring on older Android.
isCoreLibraryDesugaringEnabled = true
2026-02-11 14:07:27 -05:00
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_17.toString()
}
defaultConfig {
2026-06-08 14:46:55 -04:00
applicationId = "net.oottsecurity.app"
2026-02-11 14:07:27 -05:00
// You can update the following values to match your application needs.
// For more information, see: https://flutter.dev/to/review-gradle-config.
minSdk = flutter.minSdkVersion
targetSdk = flutter.targetSdkVersion
versionCode = flutter.versionCode
versionName = flutter.versionName
}
buildTypes {
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")
}
}
}
flutter {
source = "../.."
}
2026-06-08 14:46:55 -04:00
dependencies {
// Backport of java.time etc. required by flutter_local_notifications (see
// isCoreLibraryDesugaringEnabled above).
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.1.4")
}