Private
Public Access
1
0

Initial commit of basics.

This commit is contained in:
Kevin Whitaker
2015-11-16 20:10:21 -05:00
commit 5d1e09690e
22 changed files with 428 additions and 0 deletions

24
build.gradle Normal file
View File

@@ -0,0 +1,24 @@
// 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:1.3.+'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}