android-wrapper/build.gradle

29 lines
580 B
Groovy
Raw Normal View History

2024-11-11 23:00:13 +01:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
2025-07-06 20:22:40 +02:00
classpath 'com.android.tools.build:gradle:8.7.2'
2024-11-11 23:00:13 +01: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()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}