49 lines
1.0 KiB
Groovy
49 lines
1.0 KiB
Groovy
plugins {
|
|
id "com.android.application"
|
|
// (Firebase, Google Services 필요 시)
|
|
id 'com.google.gms.google-services'
|
|
id "kotlin-android"
|
|
id "dev.flutter.flutter-gradle-plugin"
|
|
}
|
|
|
|
android {
|
|
namespace = "com.allscore_app"
|
|
compileSdkVersion 34
|
|
|
|
defaultConfig {
|
|
applicationId "com.allscore_app"
|
|
minSdkVersion 23
|
|
targetSdkVersion 34
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
|
|
// ...
|
|
|
|
buildTypes {
|
|
release {
|
|
signingConfig signingConfigs.debug
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = JavaVersion.VERSION_17
|
|
}
|
|
}
|
|
|
|
flutter {
|
|
source = "../.."
|
|
}
|
|
|
|
dependencies {
|
|
// 기존 의존성 ...
|
|
implementation 'com.google.android.gms:play-services-auth:20.6.0'
|
|
}
|
|
|
|
// (Firebase Auth, Crashlytics 등을 사용한다면, 아래 구문이 필요할 수 있습니다.)
|
|
apply plugin: 'com.google.gms.google-services'
|