Skip to content

Commit debdb13

Browse files
authored
Disable jetifier. (#2748)
* Disable jetifier. Jetifier is no longer needed and is causing failures for the encoders proto plugin. * Disable fiamd androidx lint check.
1 parent 7ba2d2a commit debdb13

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

firebase-inappmessaging-display/firebase-inappmessaging-display.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,13 @@ android {
3232

3333
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
3434
}
35+
lintOptions {
36+
// com.squareup.picasso:picasso:2.71828 depends on com.android.support:exifinterface so we
37+
// disable this lint error since we have no control over that dependency and enabling
38+
// jetification in our SDK build will still require developers to use jetification in their
39+
// apps.
40+
disable "GradleCompatible"
41+
}
3542

3643
compileOptions {
3744
sourceCompatibility JavaVersion.VERSION_1_8

gradle.properties

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@
1313
# limitations under the License.
1414
org.gradle.jvmargs=-Xmx8g -XX:MaxPermSize=8g
1515

16-
android.enableJetifier=true
17-
android.useAndroidX=true
18-
android.jetifier.blacklist=errorprone,firebase-encoders-processor
19-
2016
org.gradle.parallel=true
2117
org.gradle.caching=true
2218

0 commit comments

Comments
 (0)