Невозможно создать / запустить приложение: тип программы уже присутствует
Пожалуйста, помогите мне решить эту ошибку:
Повторяющаяся запись в формате zip [com/google/android/gms/internal/e/hz.class == classes.jar:com/google/android/gms/internal/measure / zzyd.class]
FAILURE: сборка не удалась, исключение.
Что пошло не так:
Не удалось выполнить задачу ': app: transformDexArchiveWithDexMergerForDebug'.
com.android.build.api.transform.TransformException: java.lang.RuntimeException: java.lang.RuntimeException: com.android.builder.dexing.DexArchiveMergerException: ошибка при объединении декс-архивов: E:\Projects\AndroidStudio\kt\DebtTracer\app\build\ middleates\transforms\dexBuilder\debug\0.jar Попробуйте: Запустите с параметром --stacktrace, чтобы получить трассировку стека. Запустите с параметром --info или --debug, чтобы получить больше вывода журнала. Запустите с --scan, чтобы получить полное представление.
Получить дополнительную помощь на https://help.gradle.org/
СТРОИТЬ ОШИБКИ за 4 м 17 с
Файл Gradle модуля приложения:
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.company.appname"
minSdkVersion 16
targetSdkVersion 27
versionCode 1
versionName "1.0"
multiDexEnabled true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
resConfigs "en", "fr"
dexOptions {
javaMaxHeapSize "4g"
}
}
buildTypes {
debug {
multiDexKeepFile file('multidex-config.txt')
multiDexKeepProguard file('multidex-config.pro')
minifyEnabled true
useProguard true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
release {
multiDexKeepFile file('multidex-config.txt')
multiDexKeepProguard file('multidex-config.pro')
minifyEnabled true
useProguard true //
shrinkResources true //
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
buildToolsVersion '28.0.0 rc2'
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
implementation 'com.google.firebase:firebase-auth:16.0.2'
implementation 'com.google.firebase:firebase-messaging:17.0.0'
implementation 'com.google.firebase:firebase-firestore:17.0.1'
implementation 'com.google.firebase:firebase-invites:16.0.0'
implementation 'com.google.firebase:firebase-ads:15.0.1'
implementation 'com.google.firebase:firebase-crash:16.0.1'
implementation 'com.google.firebase:firebase-core:16.0.1'
implementation 'com.android.support:support-v4:27.1.1'
implementation 'com.google.android.gms:play-services-auth:15.0.1'
implementation 'com.google.android.gms:play-services-wallet:15.0.1'
implementation 'com.android.support:support-vector-drawable:27.1.1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:recyclerview-v7:27.1.1'
implementation 'com.android.support:multidex:1.0.3'
//third party
implementation 'com.github.PhilJay:MPAndroidChart:v3.0.3'
implementation files('libs/activation.jar')
implementation files('libs/additionnal.jar')
implementation files('libs/mail.jar')
}
apply plugin: 'com.google.gms.google-services'
Я попытался удалить и.gradle каталог, очистить и пересобрать проект, проверяя наличие дублирующихся зависимостей, как это было предложено в некоторых постах, и они, похоже, не работают для меня. Проблема начала происходить, когда я добавил зависимость ниже:
implementation 'com.google.android.gms:play-services-wallet:15.0.1'
но удаление и повторное построение проекта без него по-прежнему не решают проблему.
Использую: acer tmp455-mg, windows 10, android studio 3.1.3, Gradle версия 4.4, Java версия 8