I'm creating a new android project and decided to use the new AndroidX replacement for the support libraries, docs for which can be found here: https://developer.android.com/jetpack/androidx/migrate.
I followed the steps to the letter and after syncing gradle I have access to the androidx
namespace and various classes contained within. However, when creating my application class I want to inherit from androidx.multidex.MultiDexApplication
(which can be seen in the table in the link above). However, the entire multidex
package doesn't exist.
Has anyone resolved this issue? Any pointers?