mirror of
https://github.com/wismna/DoNext.git
synced 2025-10-03 15:40:14 -04:00

ViewPagerAdapter now has its own file Async classes are static with WeakReferences to containing entity History and Today icons are changed Created new History activity Modified TasksFragment to determine parent activity (Today, History or else)
35 lines
1.0 KiB
Groovy
35 lines
1.0 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 27
|
|
buildToolsVersion '26.0.2'
|
|
|
|
defaultConfig {
|
|
applicationId "com.wismna.geoffroy.donext"
|
|
minSdkVersion 19
|
|
targetSdkVersion 27
|
|
versionCode 24
|
|
versionName "1.5"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
zipAlignEnabled true
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support:appcompat-v7:27.0.2'
|
|
compile 'com.android.support:design:27.0.2'
|
|
compile 'com.android.support:support-v4:27.0.2'
|
|
compile 'com.android.support:percent:27.0.2'
|
|
compile 'com.android.support:recyclerview-v7:27.0.2'
|
|
compile 'com.google.android.gms:play-services-ads:11.8.0'
|
|
compile 'net.danlew:android.joda:2.9.7'
|
|
compile 'com.android.support.constraint:constraint-layout:1.0.2'
|
|
testCompile 'junit:junit:4.12'
|
|
}
|