android: add build files

This commit is contained in:
BreadFish64 2018-10-08 16:56:16 -05:00
parent 6b4c40ffd5
commit 8838485b1a
12 changed files with 508 additions and 0 deletions

26
src/android/build.gradle Normal file
View file

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