1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-11-26 06:11:19 +00:00

Update build.gradle and suppress lint warnings temporarily (#9)

This commit is contained in:
Catfriend1 2018-08-20 00:26:26 +02:00 committed by GitHub
parent 922b81d0d4
commit b60c019f46
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 3 deletions

View file

@ -11,11 +11,11 @@ dependencies {
implementation 'com.google.guava:guava:23.6-android'
implementation 'com.annimon:stream:1.1.9'
implementation 'com.android.volley:volley:1.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
implementation 'com.google.dagger:dagger:2.14.1'
annotationProcessor "com.google.dagger:dagger-compiler:2.14.1"
androidTestImplementation 'com.android.support.test:rules:1.0.1'
androidTestImplementation 'com.android.support:support-annotations:27.0.2'
androidTestImplementation 'com.android.support.test:rules:1.0.2'
androidTestImplementation 'com.android.support:support-annotations:27.1.1'
}
android {

View file

@ -62,4 +62,10 @@
<ignore path="src/main/res/layout/widget_toolbar.xml" />
</issue>
<issue id="OldTargetApi" severity="ignore" />
<!-- Temporary ignored until it's time to fix them -->
<issue id="Overdraw" severity="ignore" />
<issue id="PrivateResource" severity="ignore" />
<issue id="RelativeOverlap">
<ignore path="src/main/res/layout/activity_first_start.xml" />
</issue>
</lint>