を実行しない原因私はたくさんの検索が、私の問題のいずれかの解決策を見つけていない、私は、任意のデバイス上で自分のアプリケーションを実行しようと、私はこのエラーを得た:重複エントリアプリケーションが
それは投げcom.github.bumptech.glideとのエラー:滑り:3.5.2、それはそれのクラスがどのように重複しているのか、一度だけ使用されています。前にこの問題を解決するために同じ依存関係でこのアプリケーションを実行しましたが、アプリを実行します。
app.gradleファイル
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion '25.0.3'
defaultConfig {
applicationId "info.androidhive.firebase"
minSdkVersion 19
targetSdkVersion 25
versionCode 1
versionName "1.0"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.google.firebase:firebase-auth:10.0.1'
compile 'com.android.support:design:25.1.0'
compile 'com.firebaseui:firebase-ui-database:1.1.1'
compile 'com.firebaseui:firebase-ui-storage:1.1.1'
compile 'com.google.firebase:firebase-database:10.0.1'
compile 'com.google.firebase:firebase-core:10.0.1'
compile 'com.android.support.constraint:constraint-layout:1.0.0'
compile 'com.google.code.gson:gson:2.6.2'
compile 'com.github.bumptech.glide:glide:3.5.2'
compile 'com.android.support:cardview-v7:25.3.1'
compile 'com.android.support:recyclerview-v7:25.3.1'
compile 'com.android.support:multidex:1.0.1'
compile 'com.crystal:crystalrangeseekbar:1.1.1'
testCompile 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'
何について 'compile 'com.github.bumptech.glide:glide:3.8.0''? –
私はそれが問題の原因だと思います。 –
cmdleからgradlew cleanを試みましたが、スレッド "main"でこの例外を受け取りました。java.util.zip.ZipException:zipファイルを開く際にエラーが発生しました。 –