vanilla/app/build.gradle
TacoTheDank dd40e45cbd stable build.gradle (#788)
* Update build.gradle

* Update gradle-wrapper.properties

* Update gradle-wrapper.properties

* Update build.gradle

* Update .travis.yml

* Update gradle-wrapper.properties
2018-06-30 09:30:52 +02:00

33 lines
689 B
Groovy

apply plugin: 'com.android.application'
android {
lintOptions {
disable 'MissingTranslation'
disable 'ExtraTranslation'
}
compileSdkVersion 27
defaultConfig {
applicationId "ch.blinkenlights.android.vanilla"
minSdkVersion 15
targetSdkVersion 27
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
lintOptions {
abortOnError false
}
}
dependencies {
implementation 'com.android.support:support-core-ui:27.1.1'
compileOnly 'com.android.support:support-annotations:27.1.1'
}