I recently migrated my app to AndroidX and thus use the Jetifier tool (currently the version bundled with Android Gradle plugin version 3.3.0-alpha10
):
# gradle.properties
android.useAndroidX=true
android.enableJetifier=true
It works fine, but adds many logs (for every library it transforms) like below throughout a build of my app and makes the logs hard to read.
It looks like this:
> Transform room-runtime.aar (androidx.room:room-runtime:2.0.0-rc01) with AarTransform
> Transform lifecycle-extensions.aar (androidx.lifecycle:lifecycle-extensions:2.0.0-rc01) with AarTransform
> Transform work-runtime.aar (android.arch.work:work-runtime:1.0.0-alpha08) with AarTransform
Is there any way to disable/ignore/filter these logs?