1
0
Fork 0
mirror of https://github.com/ethauvin/android-about-box.git synced 2025-04-25 10:47:10 -07:00

Added pmd, findbugs and lint support

This commit is contained in:
Alex Dibrivnyi 2017-02-05 20:38:33 +02:00
parent 9f171cf706
commit 6a2a19f5b4
12 changed files with 37 additions and 1 deletions

View file

@ -1,4 +1,5 @@
apply plugin: 'com.android.library'
apply from: "quality.gradle"
android {
compileSdkVersion 24
@ -17,6 +18,11 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
warningsAsErrors true
disable 'GradleDependency'
disable 'OldTargetApi'
}
}
dependencies {