If your application extends from Application then override attachBaseContext inside Application i.e
@Override
protected void attachBaseContext(Context base) {
super.attachBaseContext(base);
MultiDex.install(this);
}
Also need to add dependency
compile 'com.android.support:multidex:1.0.1'