Skip to content

Commit 4464bf0

Browse files
Erik Andrefacebook-github-bot
authored andcommitted
Turned off breakOnError for gradle modules in Fresco
Reviewed By: massimocarli Differential Revision: D4737600 fbshipit-source-id: 274d8ecf28d90c8cec636da16f883d4deb189c2c
1 parent f0545aa commit 4464bf0

File tree

18 files changed

+46
-0
lines changed

18 files changed

+46
-0
lines changed

animated-drawable/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ version = VERSION_NAME
66
android {
77
buildToolsVersion rootProject.ext.buildToolsVersion
88
compileSdkVersion rootProject.ext.compileSdkVersion
9+
lintOptions {
10+
abortOnError false
11+
}
912
}
1013

1114
dependencies {

animated-webp/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ android {
3838
jni.srcDirs = []
3939
}
4040
}
41+
42+
lintOptions {
43+
abortOnError false
44+
}
4145
}
4246

4347
task sourcesJar(type: Jar) {

drawee-backends/drawee-pipeline/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ android {
2424
exclude 'META-INF/NOTICE'
2525
exclude 'META-INF/NOTICE.txt'
2626
}
27+
28+
lintOptions {
29+
abortOnError false
30+
}
2731
}
2832

2933
task sourcesJar(type: Jar) {

drawee-backends/drawee-volley/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ android {
2525
exclude 'META-INF/NOTICE'
2626
exclude 'META-INF/NOTICE.txt'
2727
}
28+
29+
lintOptions {
30+
abortOnError false
31+
}
2832
}
2933

3034
task sourcesJar(type: Jar) {

drawee-span/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ apply from: rootProject.file('release.gradle')
2525
android {
2626
buildToolsVersion rootProject.ext.buildToolsVersion
2727
compileSdkVersion rootProject.ext.compileSdkVersion
28+
lintOptions {
29+
abortOnError false
30+
}
2831
}
2932

3033
task sourcesJar(type: Jar) {

drawee/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ android {
4343
exclude 'META-INF/NOTICE'
4444
exclude 'META-INF/NOTICE.txt'
4545
}
46+
47+
lintOptions {
48+
abortOnError false
49+
}
4650
}
4751

4852
task sourcesJar(type: Jar) {

samples/animation/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ android {
3737

3838
lintOptions {
3939
warning 'InvalidPackage'
40+
abortOnError false
4041
}
4142

4243
splits {

samples/animation2/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ android {
3434

3535
lintOptions {
3636
warning 'InvalidPackage'
37+
abortOnError false
3738
}
3839

3940
splits {

samples/bitmapfactory/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ android {
2929

3030
lintOptions {
3131
warning 'InvalidPackage'
32+
abortOnError false
3233
}
3334

3435
splits {

samples/comparison/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ android {
4747

4848
lintOptions {
4949
warning 'InvalidPackage'
50+
abortOnError false
5051
}
5152

5253
splits {

0 commit comments

Comments
 (0)