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