-->

AndroidX migrate dependency / libraries

2020-08-16 03:55发布

问题:

I have successfully migrated my project to AndroidX. App is running perfectly, but I am getting compile time errors, because my dependencies use support package.

Reason of this error

Because PhotoView is a dependency class, which uses android.support.v7.widget.AppCompatImageView which is no more available in my project. Because it is now androidx.appcompat.widget.AppCompatImageView

Project still run?

Yes, android.enableJetifier convert this dependency to AndroidX at runtime, but I want to get rid of compile time errors.

Is there a quick fix for now?

回答1:

If you depend on a library that references the older Support Library, Android Studio will update that library to reference androidx instead via dependency translation. Dependency translation is automatically applied by the Android Gradle Plugin 3.2.0-alpha14, which rewrites bytecode and resources of JAR and AAR dependencies (and transitive dependencies) to reference the new androidx-packaged classes and artifacts. We will also provide a standalone translation tool as a JAR.

I see (using ./gradlew app:dependencies) that rxbinding's design dependency is updated to the new com.google.android.material dependency. Passing com.google.android.material.snackbar.Snackbar to a library function that references android.support.design.widget.Snackbar themselves makes Android Studio show a compiler error, but actually compiling and running the app works. I assume AS can't really handle these changes yet.

It seems there are some caching issues, removing .idea/libraries and performing a Gradle sync makes the errors disappear.



回答2:

I solved this issue by deleting .idea folder and syncing project again.

This seems a bug of IDE not Jetifier, it does not re-sync dependencies after migrating. Jetifier does its work well. It converts all dependencies support libraries into androidx at building time. See @this post for good explaination.



回答3:

My fix for this was converting the library with the compile time error to AndroidX and submitting a pull request to the library.