46 lines
1.4 KiB
Groovy
46 lines
1.4 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion '26.0.2'
|
|
|
|
defaultConfig {
|
|
applicationId "org.secuso.privacyfriendlybreakreminder"
|
|
minSdkVersion 21
|
|
targetSdkVersion 25
|
|
versionCode 3
|
|
versionName "2.1"
|
|
vectorDrawables.useSupportLibrary = true
|
|
}
|
|
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 {
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
compile 'com.android.support:appcompat-v7:25.4.0'
|
|
compile 'com.android.support:design:25.4.0'
|
|
compile 'com.github.bumptech.glide:glide:3.7.0'
|
|
compile 'com.android.support:support-v4:25.4.0'
|
|
compile 'com.android.support:support-annotations:27.0.0'
|
|
compile 'com.android.support:cardview-v7:25.4.0'
|
|
compile 'com.android.support.constraint:constraint-layout:1.0.2'
|
|
compile 'com.nex3z:flow-layout:1.0.0'
|
|
compile 'com.readystatesoftware.sqliteasset:sqliteassethelper:2.0.1'
|
|
testCompile 'junit:junit:4.12'
|
|
compile 'com.shawnlin:number-picker:2.4.4' // https://github.com/ShawnLin013/NumberPicker
|
|
}
|