SimpleQR/android/build.gradle

31 lines
634 B
Groovy
Raw Permalink Normal View History

2022-05-24 13:26:36 +08:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2023-06-18 12:10:48 +08:00
2022-05-24 13:26:36 +08:00
repositories {
google()
2022-09-23 15:27:03 +08:00
mavenCentral()
2022-05-24 13:26:36 +08:00
}
dependencies {
2023-06-18 12:10:48 +08:00
classpath 'com.android.tools.build:gradle:8.0.2'
classpath 'com.google.gms:google-services:4.3.15'
2022-05-24 13:26:36 +08:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
apply from: "variables.gradle"
allprojects {
repositories {
google()
2022-09-23 15:27:03 +08:00
mavenCentral()
2022-05-24 13:26:36 +08:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
2022-09-23 15:27:03 +08:00