Home > Software engineering >  How to migrate android module to androidx?
How to migrate android module to androidx?

Time:03-17

This android project has lots of modules, when I do Refactor->Migrate to androidx, source codes from module "app" upgraded, Only app module auto migrated

but codes from modules are never migrated...

Now have to fix it buy lots of manual replacement. Any idea how to migrate these modules? Thanks for your help.

CodePudding user response:

Check if you added this code android.useAndroidX=true in gradle.properties.for more details please refer this link

CodePudding user response:

Anyway, thanks, I solved it by doing migration first on a refresh copy without doing anything to gradle versions.

  • Related