54 lines
1.3 KiB
Plaintext
54 lines
1.3 KiB
Plaintext
plugins {
|
|
id("com.android.application")
|
|
id("kotlin-android")
|
|
id("dev.flutter.flutter-gradle-plugin")
|
|
id("com.google.gms.google-services")
|
|
}
|
|
|
|
dependencies {
|
|
// Import the Firebase BoM
|
|
implementation(platform("com.google.firebase:firebase-bom:33.9.0"))
|
|
|
|
|
|
// TODO: Add the dependencies for Firebase products you want to use
|
|
// When using the BoM, don't specify versions in Firebase dependencies
|
|
implementation("com.google.firebase:firebase-analytics")
|
|
|
|
|
|
// Add the dependencies for any other desired Firebase products
|
|
// https://firebase.google.com/docs/android/setup#available-libraries
|
|
}
|
|
|
|
android {
|
|
namespace = "com.putricantik.denta_koas"
|
|
compileSdk = flutter.compileSdkVersion
|
|
ndkVersion = "27.0.12077973"
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = JavaVersion.VERSION_11.toString()
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId = "com.putricantik.denta_koas"
|
|
minSdk = 23
|
|
targetSdk = flutter.targetSdkVersion
|
|
versionCode = flutter.versionCode
|
|
versionName = flutter.versionName
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
signingConfig = signingConfigs.getByName("debug")
|
|
}
|
|
}
|
|
}
|
|
|
|
flutter {
|
|
source = "../.."
|
|
}
|