27 lines
651 B
Groovy
27 lines
651 B
Groovy
|
apply plugin: 'com.android.application'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 23
|
||
|
buildToolsVersion "23.0.2"
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId "com.hyperling.carbupbeta"
|
||
|
minSdkVersion 8
|
||
|
targetSdkVersion 23
|
||
|
versionCode 6
|
||
|
versionName "0.11"
|
||
|
}
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
compile 'com.android.support:appcompat-v7:23.1.1'
|
||
|
compile 'com.google.android.gms:play-services-ads:8.3.0'
|
||
|
}
|