I have the same problem (the application will be broken on all devices = Android 4.4, but works fine with Android> = 5.0) with the following build.gradle setting:
apply plugin: 'com.android.application' android { compileSdkVersion 22 buildToolsVersion "21.1.2" defaultConfig { applicationId "com.aams.going" minSdkVersion 16 targetSdkVersion 22 versionCode 1 versionName "1.0" multiDexEnabled true } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'com.android.support:appcompat-v7:22.2.0' compile 'com.facebook.android:facebook-android-sdk:4.0.0' compile 'com.google.android.gms:play-services:7.5.0' compile 'com.google.code.gson:gson:2.3.1' compile 'com.jakewharton:butterknife:6.1.0' compile 'com.google.apis:google-api-services-youtube:v3-rev141-1.20.0' compile 'com.google.api-client:google-api-client-android:1.20.0' compile 'com.google.api-client:google-api-client-gson:1.20.0' compile 'com.orhanobut:logger:1.4' compile 'com.github.rey5137:material:1.1.1' compile 'com.afollestad:material-dialogs:0.7.6.0' }
Problem
This is called multiDexEnabled true the Google Play API and google-api in gradle.
Decision
I solved this problem by removing multiDexEnabled true and specifying only those Google Play services APIs that my application uses.
- Removing
multiDexEnabled true . - Use
compile 'com.google.android.gms:play-services-identity:7.5.0' instead of compile 'com.google.android.gms:play-services:7.5.0'
Here is my last and most developed build.gradle :
apply plugin: 'com.android.application' android { compileSdkVersion 22 buildToolsVersion "21.1.2" defaultConfig { applicationId "com.aams.going" minSdkVersion 16 targetSdkVersion 22 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'com.android.support:appcompat-v7:22.2.0' compile 'com.facebook.android:facebook-android-sdk:4.0.0' compile 'com.google.android.gms:play-services-identity:7.5.0' compile 'com.google.code.gson:gson:2.3.1' compile 'com.jakewharton:butterknife:6.1.0' compile 'com.google.apis:google-api-services-youtube:v3-rev141-1.20.0' compile 'com.google.api-client:google-api-client-android:1.20.0' compile 'com.google.api-client:google-api-client-gson:1.20.0' compile 'com.orhanobut:logger:1.4' compile 'com.github.rey5137:material:1.1.1' compile 'com.afollestad:material-dialogs:0.7.6.0' }
source share