друзья, я занимаюсь разработкой приложения для Android с возможностью оплаты. Мне нужна интеграция с PayPal, поэтому я использую прямой метод Braintree с поддержкой SDK для мозгового дерева, но когда я добавляю удаление зависимости пользовательского интерфейса, появляется ошибка.
Error:Execution failed for
task:app:transformDexArchiveWithExternalLibsDexMergerForDebug.
> java.lang.RuntimeException: java.lang.RuntimeException: com.android.builder.dexing.DexArchiveMergerException: Unable to merge dex
Я прикрепляю файл Gradle ниже
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
implementation 'com.braintreepayments.api:braintree:2.+'
implementation 'com.braintreepayments.api:drop-in:3.0.0'
}
файл build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
multiDexEnabled true
applicationId "com.stunntech.paypalandroid"
minSdkVersion 16
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
implementation 'com.braintreepayments.api:braintree:2.4.0'
// implementation 'com.braintreepayments.api:drop-in:3.0.5'
}