NoClassDefFoundError below SDK 21

I resolved the issue by adding this to my Application Class.

@Override
protected void attachBaseContext(Context base) {
    super.attachBaseContext(base);
    MultiDex.install(this);
}

Seems to be neccessary for android versions prior 5.

Leave a Comment