51 lines
1.7 KiB
Groovy
51 lines
1.7 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
|
applicationId "org.secuso.aktivpause"
|
|
minSdkVersion 21
|
|
targetSdkVersion 28
|
|
versionCode 5
|
|
versionName "0.5"
|
|
vectorDrawables.useSupportLibrary = true
|
|
}
|
|
lintOptions {
|
|
checkReleaseBuilds false
|
|
// Or, if you prefer, you can continue to check for errors in release builds,
|
|
// but continue the build even when errors are found:
|
|
abortOnError false
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
mavenLocal()
|
|
google()
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation 'com.android.support:appcompat-v7:28.0.0'
|
|
implementation 'com.android.support:design:28.0.0'
|
|
implementation 'com.github.bumptech.glide:glide:4.9.0'
|
|
implementation 'com.android.support:support-v4:28.0.0'
|
|
implementation 'com.android.support:support-annotations:28.0.0'
|
|
implementation 'com.android.support:cardview-v7:28.0.0'
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
|
implementation 'com.nex3z:flow-layout:1.0.0'
|
|
implementation 'com.readystatesoftware.sqliteasset:sqliteassethelper:2.0.1'
|
|
testImplementation 'junit:junit:4.12'
|
|
implementation 'com.shawnlin:number-picker:2.4.4' // https://github.com/ShawnLin013/NumberPicker
|
|
}
|