Switched to new style gradle Android application build process

This commit is contained in:
Sam Lantinga
2017-10-23 15:23:43 -07:00
parent 862da6ff19
commit f08480af78
36 changed files with 567 additions and 328 deletions

View File

@@ -0,0 +1,23 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}