1
0
Fork 0
mirror of https://github.com/ethauvin/android-about-box.git synced 2025-04-25 02:37:11 -07:00
android-about-box/library/build.gradle
Michael Mee 2a99354cf5 Release 1.1.0
Adds support for a link to a help file in the app.
Updates to the latest Material About Box, which adds theme support
2017-04-14 10:10:57 -07: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 "25.0.2"
defaultConfig {
minSdkVersion 15
targetSdkVersion 24
versionCode 4
versionName "1.1.0"
}
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.8.2'
compile('io.branch.sdk.android:library:2.6.1') {
exclude module: 'answers.shim'
}
}