2015-06-06 19:33:55 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath 'com.android.tools.build:gradle:1.1.1'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 22
|
|
|
|
buildToolsVersion "22.0.1"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.amine.horaires"
|
|
|
|
minSdkVersion 14
|
|
|
|
targetSdkVersion 22
|
|
|
|
versionCode 39
|
|
|
|
versionName "2.1.2"
|
|
|
|
}
|
|
|
|
|
|
|
|
compileOptions {
|
2015-06-24 21:22:02 +00:00
|
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
2015-06-06 19:33:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds true
|
|
|
|
abortOnError false
|
|
|
|
}
|
|
|
|
|
|
|
|
signingConfigs {
|
2015-06-24 21:22:02 +00:00
|
|
|
|
2015-06-06 19:33:55 +00:00
|
|
|
release {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
signingConfig signingConfigs.release
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-24 21:22:02 +00:00
|
|
|
configurations {
|
|
|
|
compile.exclude group: 'stax'
|
|
|
|
compile.exclude group: 'xpp3'
|
|
|
|
}
|
|
|
|
|
2015-06-06 19:33:55 +00:00
|
|
|
dependencies {
|
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
compile 'com.android.support:appcompat-v7:+'
|
|
|
|
compile 'com.android.support:support-v4:+'
|
|
|
|
compile 'com.android.support:recyclerview-v7:+'
|
2015-06-24 21:22:02 +00:00
|
|
|
compile 'com.android.support:cardview-v7:+'
|
|
|
|
|
2015-06-06 19:33:55 +00:00
|
|
|
compile 'com.google.android.gms:play-services:4.3.23'
|
|
|
|
compile 'com.melnykov:floatingactionbutton:1.2.0'
|
|
|
|
compile 'com.pnikosis:materialish-progress:1.5'
|
|
|
|
compile 'com.wdullaer:materialdatetimepicker:1.3.0'
|
|
|
|
compile 'de.cketti.library.changelog:ckchangelog:1.2.2'
|
2015-06-25 08:18:22 +00:00
|
|
|
|
|
|
|
compile 'com.squareup.picasso:picasso:2.5.2'
|
2015-06-06 19:33:55 +00:00
|
|
|
}
|