* Update build.gradle * Update gradle-wrapper.properties * Update gradle-wrapper.properties * Update build.gradle * Update .travis.yml * Update gradle-wrapper.properties
33 lines
689 B
Groovy
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'
|
|
}
|