This is my error log acheived with android studio 1.0.2
02-03 13:05:23.831 8385-8385/com.******.*******E/AndroidRuntime﹕ FATAL EXCEPTION: main
ja
Was stuck for hours due to this issue but finally got the solution.
Step#1:
dependencies {
compile 'com.android.support:multidex:1.0.0'
}
Step#2:
defaultConfig {
multiDexEnabled true
}
Step#3:
public class AppController extends Application {
@Override
public void onCreate() {
super.onCreate();
MultiDex.install(this);
}
}
Happy coding!