all: initial import

Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
Elias Naur
2019-03-30 13:18:49 +01:00
commit 0f05231c35
102 changed files with 17926 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.1'
}
}
apply plugin: 'com.android.application'
android {
buildToolsVersion "28.0.3"
compileSdkVersion 27
defaultConfig {
targetSdkVersion 27
minSdkVersion 16
versionCode 1
versionName "0.1"
}
}
dependencies {
implementation fileTree(dir: '.', include: ['*.aar'])
}
repositories {
google()
jcenter()
}