allscore_app/android/app/build.gradle

45 lines
1.1 KiB
Groovy
Raw Normal View History

2024-12-14 16:44:36 +00:00
plugins {
id "com.android.application"
2025-01-07 13:38:36 +00:00
// START: FlutterFire Configuration
id 'com.google.gms.google-services'
// END: FlutterFire Configuration
2024-12-14 16:44:36 +00:00
id "kotlin-android"
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
id "dev.flutter.flutter-gradle-plugin"
}
android {
2025-01-07 13:38:36 +00:00
namespace = "com.allscore_app"
compileSdkVersion = 34
2024-12-14 16:44:36 +00:00
ndkVersion = flutter.ndkVersion
compileOptions {
2025-01-07 13:38:36 +00:00
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
2024-12-14 16:44:36 +00:00
}
kotlinOptions {
2025-01-07 13:38:36 +00:00
jvmTarget = JavaVersion.VERSION_17
2024-12-14 16:44:36 +00:00
}
defaultConfig {
2025-01-07 13:38:36 +00:00
applicationId = "com.allscore_app"
minSdkVersion 23
targetSdkVersion 34
versionCode = 1
versionName = "1.0"
2024-12-14 16:44:36 +00:00
}
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.debug
}
}
}
flutter {
source = "../.."
}