Here\'s the log.
java.lang.NoClassDefFoundError: android.support.v7.app.AppCompatDelegateImplV14
at android.support.v7.app.AppCompatDelegate.create(A
I had the same error and FULLY enabling multidex worked for me. here is what I did in gradle and manifest files
android {
compileSdkVersion 21
buildToolsVersion "21.1.0"
defaultConfig {
...
minSdkVersion 14
targetSdkVersion 21
...
// Enabling multidex support.
multiDexEnabled true
}
...
}
dependencies {
compile 'com.android.support:multidex:1.0.0'
}
also in my manifest file, I have add the MultiDexApplication class from the multidex support library to the application element like this
...