Android ClassNotFoundException android.support.v4.util.ArrayMap
0
I have migrated my Android support libraries dependencies to AndroidX as per the documentation in the following official web page: https://developer.android.com/jetpack/androidx/migrate After the migration I am getting the following error: java.lang.NoClassDefFoundError: Failed resolution of: Landroid/support/v4/util/ArrayMap; ... ... Caused by: java.lang.ClassNotFoundException: Didn't find class "android.support.v4.util.ArrayMap" My gradle file is: apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' android { compileSdkVersion 28 defaultConfig { applicationId "app.app.app.app" minSdkVersion 26 targetSdkVersion 28 versionCode 1 v