1
0
Fork 0
mirror of https://github.com/ethauvin/android-about-box.git synced 2025-04-25 10:47:10 -07:00
android-about-box/library/build.gradle
2017-02-09 16:13:14 -08:00

35 lines
831 B
Groovy

apply plugin: 'com.android.library'
apply from: "quality.gradle"
apply plugin: 'com.github.dcendents.android-maven'
group='com.github.eggheadgames'
android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
defaultConfig {
minSdkVersion 15
targetSdkVersion 24
versionCode 2
versionName "1.0.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:1.5.0'
compile('io.branch.sdk.android:library:2.5.7') {
exclude module: 'answers.shim'
}
}