Я добавил Firestore в своем Gradle, и когда я синхронизирую его синхронизацию правильно, но когда я запускаю проект, я получаю эту ошибку.
error: cannot access zza class file for com.google.android.gms.common.internal.safeparcel.zza not found
вот мои зависимости файла gradle
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:design:26.+'
compile 'com.android.support:cardview-v7:26.+'
compile 'com.google.android.gms:play-services:10.0.1'
compile 'com.google.android.gms:play-services-maps:10.0.1'
compile 'com.sothree.slidinguppanel:library:3.4.0'
compile 'com.github.florent37:singledateandtimepicker:1.2.2'
compile 'com.android.support:multidex:1.0.1'
compile 'com.jakewharton:butterknife:8.7.0'
testCompile 'junit:junit:4.12'
compile 'com.jakewharton:butterknife:8.7.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.7.0'
compile 'com.chabbal:slidingdotsplash:1.0.2'
implementation 'com.google.firebase:firebase-firestore:16.0.0'
}