Skip to content
This repository was archived by the owner on Mar 7, 2021. It is now read-only.

Commit 5ef43fd

Browse files
committed
Don't fail a build on lint errors
1 parent 80c1e5c commit 5ef43fd

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

library/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ android {
4545
minifyEnabled false
4646
}
4747
}
48+
49+
lintOptions {
50+
abortOnError false
51+
}
4852
}
4953

5054
dependencies {

sample/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ android {
3333
minifyEnabled false
3434
}
3535
}
36+
37+
lintOptions {
38+
abortOnError false
39+
}
3640
}
3741

3842
dependencies {

0 commit comments

Comments
 (0)