AndroidX migrate dependency / libraries

感情迁移 提交于 2020-06-25 09:00:07

问题


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.



来源:https://stackoverflow.com/questions/52518935/androidx-migrate-dependency-libraries

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!