clear and see another error if yes
1.go to your build.gradle
file. add multiDexEnabled true
defaultConfig { multiDexEnabled true }
2. in your dependencies add compile 'com.android.support:multidex:1.0.1'
dependencies { compile 'com.android.support:multidex:1.0.1' }
3. Insert your application tag in menifest add android:name="android.support.multidex.MultiDexApplication"
<application android:name="android.support.multidex.MultiDexApplication" ....
4. Use this override method at startup.
@Override protected void attachBaseContext(Context base) { super.attachBaseContext(base); MultiDex.install(this); }
source share