2014-08-19 16:53:49 -04:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2014-11-13 10:40:09 -05:00
|
|
|
compileSdkVersion 21
|
|
|
|
buildToolsVersion '21'
|
2014-08-19 16:53:49 -04:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "fr.gaulupeau.apps.InThePoche"
|
|
|
|
minSdkVersion 8
|
2014-11-13 10:40:09 -05:00
|
|
|
targetSdkVersion 21
|
2014-11-20 11:41:29 -05:00
|
|
|
versionCode 10
|
2014-11-16 08:48:52 -05:00
|
|
|
versionName "1.7"
|
2014-08-19 16:53:49 -04:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
runProguard false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2014-11-13 13:00:43 -05:00
|
|
|
compile 'com.android.support:appcompat-v7:21.0.0'
|
2014-08-19 16:53:49 -04:00
|
|
|
}
|