Migrating Ionic app to AndroidX

Hello, I found myself in a similar issue and this resolved my situation:

# add plugin to enable AndroidX in the project
cordova plugin add cordova-plugin-androidx

# add plugin to patch existing plugin source that uses the Android Support Library to use AndroidX
cordova plugin add cordova-plugin-androidx-adapter

Which can be found here:

10 Likes