androidX jetifier - Is there a way to ignore jetifying a .JAR?
Currently android.jetifier.blacklist
is deprecated.
It was removed in version 7.0 of the Android Gradle plugin.
This property has been replaced by android.jetifier.ignorelist
added this to gradle.properties
:
android.jetifier.blacklist = pass
as suggested by folks at google here.
Be warned - this feature is experimental and unsupported.
Update- current syntax is android.jetifier.ignorelist={your.ignored.lib}
as Suggested by @YaMiN