mirror of
https://github.com/wismna/DoNext.git
synced 2025-10-03 15:40:14 -04:00
New type of task layout without description and with bigger title Old layout is now called Detailed Possibility to choose layout in Settings Task list delete confirmation checkbox "never ask again" implemented and present in Settings Divider between tasks Design changes (different colors on Swipe) Data validation on new task and new task list Correction of database open bug in Task List fragment
32 lines
894 B
Groovy
32 lines
894 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.2"
|
|
|
|
defaultConfig {
|
|
applicationId "com.wismna.geoffroy.donext"
|
|
minSdkVersion 15
|
|
targetSdkVersion 23
|
|
versionCode 5
|
|
versionName "0.5"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
testCompile 'junit:junit:4.12'
|
|
compile 'com.android.support:appcompat-v7:23.1.1'
|
|
compile 'com.android.support:design:23.1.1'
|
|
compile 'com.android.support:support-v4:23.1.1'
|
|
compile 'com.android.support:percent:23.1.1'
|
|
compile 'com.android.support:recyclerview-v7:23.1.1'
|
|
compile 'com.google.android.gms:play-services-ads:8.4.0'
|
|
}
|