mirror of
https://github.com/ethauvin/android-about-box.git
synced 2025-04-24 18:27:11 -07:00
32 lines
733 B
Groovy
32 lines
733 B
Groovy
apply plugin: 'com.android.library'
|
|
apply from: "quality.gradle"
|
|
apply plugin: 'com.github.dcendents.android-maven'
|
|
|
|
group='com.github.eggheadgames'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion "25.0.3"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 15
|
|
targetSdkVersion 24
|
|
versionCode 7
|
|
versionName "1.3.1"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
lintOptions {
|
|
warningsAsErrors true
|
|
disable 'GradleDependency'
|
|
disable 'OldTargetApi'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.github.daniel-stoneuk:material-about-library:2.2.1'
|
|
}
|