it's not clear but as i see you are using so much libs so maybe you have to use MultiDex
.
Add multiDexEnabled true
to your gradle file.
defaultConfig {
applicationId "com.company.application"
minSdkVersion 19
targetSdkVersion 25
versionCode 1
multiDexEnabled true // this line
}
and
dependencies {
compile 'com.android.support:multidex:1.0.1'
}
then go to your manifest.xml
and add :
<application
android:name="android.support.multidex.MultiDexApplication" //this line >
</application>
full documentation
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…