2015-11-24 11:23:31 -05:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2017-12-10 23:07:37 +01:00
|
|
|
compileSdkVersion 27
|
2017-12-02 19:10:35 +01:00
|
|
|
buildToolsVersion '26.0.2'
|
2015-11-24 11:23:31 -05:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.wismna.geoffroy.donext"
|
2017-03-15 17:34:27 -04:00
|
|
|
minSdkVersion 19
|
2017-12-10 23:07:37 +01:00
|
|
|
targetSdkVersion 27
|
2017-12-27 10:39:22 +01:00
|
|
|
versionCode 25
|
|
|
|
versionName "1.5.1"
|
2015-11-24 11:23:31 -05:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2017-12-20 18:54:21 +01:00
|
|
|
zipAlignEnabled true
|
2015-11-24 11:23:31 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2017-12-26 14:16:23 +01:00
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation 'com.android.support:appcompat-v7:27.0.2'
|
|
|
|
implementation 'com.android.support:design:27.0.2'
|
|
|
|
implementation 'com.android.support:support-v4:27.0.2'
|
|
|
|
implementation 'com.android.support:percent:27.0.2'
|
|
|
|
implementation 'com.android.support:recyclerview-v7:27.0.2'
|
|
|
|
implementation 'com.google.android.gms:play-services-ads:11.8.0'
|
|
|
|
implementation 'net.danlew:android.joda:2.9.7'
|
|
|
|
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
|
|
|
|
testImplementation 'junit:junit:4.12'
|
2015-11-24 11:23:31 -05:00
|
|
|
}
|