mirror of
https://github.com/moparisthebest/android-app
synced 2024-11-15 13:25:07 -05:00
25 lines
533 B
Groovy
25 lines
533 B
Groovy
|
apply plugin: 'com.android.application'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 20
|
||
|
buildToolsVersion '20'
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId "fr.gaulupeau.apps.InThePoche"
|
||
|
minSdkVersion 8
|
||
|
targetSdkVersion 20
|
||
|
versionCode 9
|
||
|
versionName "1.6"
|
||
|
}
|
||
|
buildTypes {
|
||
|
release {
|
||
|
runProguard false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile 'com.android.support:appcompat-v7:20.0.0'
|
||
|
}
|