25-7-26-1
This commit is contained in:
55
android/build.gradle
Normal file
55
android/build.gradle
Normal file
@@ -0,0 +1,55 @@
|
||||
// allprojects {
|
||||
// repositories {
|
||||
// google()
|
||||
// mavenCentral()
|
||||
// }
|
||||
// }
|
||||
|
||||
// rootProject.buildDir = "../build"
|
||||
// subprojects {
|
||||
// project.buildDir = "${rootProject.buildDir}/${project.name}"
|
||||
// }
|
||||
// subprojects {
|
||||
// project.evaluationDependsOn(":app")
|
||||
// }
|
||||
|
||||
// tasks.register("clean", Delete) {
|
||||
// delete rootProject.buildDir
|
||||
// }
|
||||
buildscript {
|
||||
ext.kotlin_version = '1.9.23'
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
// START: FlutterFire Configuration
|
||||
// classpath 'com.google.gms:google-services:4.4.2'
|
||||
// // END: FlutterFire Configuration
|
||||
// classpath 'com.android.tools.build:gradle:7.3.1'
|
||||
classpath 'com.google.gms:google-services:4.3.15'
|
||||
// END: FlutterFire Configuration
|
||||
classpath 'com.android.tools.build:gradle:8.11.0'
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||
}
|
||||
}
|
||||
|
||||
allprojects {
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
||||
|
||||
rootProject.buildDir = '../build'
|
||||
subprojects {
|
||||
project.buildDir = "${rootProject.buildDir}/${project.name}"
|
||||
}
|
||||
subprojects {
|
||||
project.evaluationDependsOn(':app')
|
||||
}
|
||||
|
||||
tasks.register("clean", Delete) {
|
||||
delete rootProject.buildDir
|
||||
}
|
||||
Reference in New Issue
Block a user