add skeleton

This commit is contained in:
Sai Naw Wun
2020-05-28 21:50:32 +06:30
parent 2e19baa0d1
commit 4c851d9971
62 changed files with 1634 additions and 13 deletions

29
android/build.gradle Normal file
View File

@@ -0,0 +1,29 @@
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}