2015-11-24 11:23:31 -05:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2017-02-06 18:48:13 -05:00
|
|
|
compileSdkVersion 25
|
2017-03-15 17:34:27 -04:00
|
|
|
buildToolsVersion '25.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-02-06 18:48:13 -05:00
|
|
|
targetSdkVersion 25
|
2017-03-26 23:43:43 -04:00
|
|
|
versionCode 17
|
|
|
|
versionName "1.4.2"
|
2015-11-24 11:23:31 -05:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
2017-03-15 17:34:27 -04:00
|
|
|
compile 'com.android.support:appcompat-v7:25.3.0'
|
|
|
|
compile 'com.android.support:design:25.3.0'
|
|
|
|
compile 'com.android.support:support-v4:25.3.0'
|
|
|
|
compile 'com.android.support:percent:25.3.0'
|
|
|
|
compile 'com.android.support:recyclerview-v7:25.3.0'
|
2017-03-23 17:55:38 -04:00
|
|
|
compile 'com.google.android.gms:play-services-ads:10.2.1'
|
2017-03-15 17:34:27 -04:00
|
|
|
compile 'net.danlew:android.joda:2.9.7'
|
2017-03-20 17:01:50 -04:00
|
|
|
testCompile 'junit:junit:4.12'
|
2015-11-24 11:23:31 -05:00
|
|
|
}
|