yuzu/externals/SDL/android-project/build.gradle

26 lines
542 B
Groovy
Raw Normal View History

2021-04-18 07:35:25 +04:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
2021-05-09 13:30:38 +04:00
mavenCentral()
2021-04-18 07:35:25 +04:00
google()
}
dependencies {
2021-12-07 05:20:09 +04:00
classpath 'com.android.tools.build:gradle:7.0.3'
2021-04-18 07:35:25 +04:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
2021-05-09 13:30:38 +04:00
mavenCentral()
2021-04-18 07:35:25 +04:00
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}