Skip to content

Commit 5f13a74

Browse files
committed
Disable lint due to retrolambda bug when compiling lint tasks.
1 parent 63eb6ed commit 5f13a74

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ android:
66
- android-19
77

88
script:
9-
./gradlew build
9+
./gradlew build -x lint

data/build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ android {
4141
}
4242

4343
lintOptions {
44-
abortOnError false;
44+
quiet true
45+
abortOnError false
46+
ignoreWarnings true
4547
disable 'InvalidPackage' // Some libraries have issues with this
4648
disable 'OldTargetApi' // Due to Robolectric that modifies the manifest when running tests
4749
}

presentation/build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ android {
3232
}
3333

3434
lintOptions {
35-
abortOnError false;
35+
quiet true
36+
abortOnError false
37+
ignoreWarnings true
3638
disable 'InvalidPackage' //Some libraries have issues with this.
3739
disable 'OldTargetApi' //Lint gives this warning but SDK 20 would be Android L Beta.
3840
disable 'IconDensities' //For testing purpose. This is safe to remove.

0 commit comments

Comments
 (0)