Update oauth package and ignore linting for it

OAuth2 isnt used therefore we can ignore it
This commit is contained in:
Jannis Mattheis
2018-11-14 20:38:38 +01:00
parent d4c6273214
commit 94d23c9248
4 changed files with 18 additions and 2 deletions

View File

@@ -26,6 +26,7 @@ android {
}
lintOptions {
disable 'GoogleAppIndexingWarning'
lintConfig file('../lint.xml')
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
@@ -50,6 +51,12 @@ dependencies {
implementation 'com.squareup.picasso:picasso:2.71828'
}
configurations {
all {
exclude group: 'org.json', module: 'json'
}
}
spotless {
java {
target '**/*.java'