I had this issue where I overflow the 64k method limit in Dalvik when compiling all the library I used. I started to have this issue when I imported the Support
defaultConfig { multiDexEnabled true } dependencies { compile 'com.android.support:multidex:1.0.0' }
and also add this method into your application class
@Override protected void attachBaseContext(Context newBase) { super.attachBaseContext(newBase); MultiDex.install(this); }