I already enable multidex in my project but still received this error after my project building, need some help, guys. Android Studio 3.5.2, Gradle build tools 3.0.1.
support_multidex : "com.android.support:multidex:1.0.3"
defaultConfig {
// Enabling multidex support.
multiDexEnabled true
}
public class MyApplication extends Application {
@Override
protected void attachBaseContext(Context base) {
super.attachBaseContext(base);
MultiDex.install(this);
}
}