first commit

This commit is contained in:
slymax
2018-07-10 21:05:52 +02:00
commit 290bcbbc0d
24 changed files with 534 additions and 0 deletions

24
app/build.gradle Executable file
View File

@@ -0,0 +1,24 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "com.example.app"
minSdkVersion 21
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
}