Android Studio Ошибка при создании основного списка декс - PullRequest
0 голосов
/ 07 декабря 2018

Я новичок в разработке приложений для Android, но я создаю приложение AR, которое также использует glide, чтобы выбрать произведение искусства с веб-сайта, а затем использует AR, чтобы повесить на стену.

Я получаю "Ошибка при создании основного списка dex ", и я не уверен, почему.

Я уже создал главное приложение, а затем импортировал часть AR из wikitude, так что мне интересно, не создает ли это конфликт.

Я не уверен, что лучший способ показать вам - это загрузить проект куда-нибудь, а затем попросить кого-нибудь его просмотреть?

Заранее спасибо

apply plugin: 'com.android.application'

android {
compileSdkVersion 27
defaultConfig {
    applicationId "codingwithmitch.com.recyclerview"
    minSdkVersion 19
    targetSdkVersion 27
    multiDexEnabled true
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

    dexOptions {
        javaMaxHeapSize "4g"
    }

}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}



dependencies {

implementation (name: 'wikitudesdk', ext:'aar' )
implementation project(':arapp')
    implementation 'com.android.support:appcompat-v7:27.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
//recyclerview
implementation 'com.android.support:recyclerview-v7:27.1.0'
//glide
implementation 'com.github.bumptech.glide:glide:4.4.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.4.0'
//circle imageview
implementation 'de.hdodenhof:circleimageview:2.2.0'
implementation 'androidx.multidex:multidex:2.0.0'



}

Это для дополненной реальности

apply plugin: 'com.android.library'

android {
compileSdkVersion 27
buildToolsVersion '28.0.3'

defaultConfig {

    minSdkVersion 19
    targetSdkVersion 27
    multiDexEnabled true
    versionCode 1
    versionName "8.0.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 
'proguard-rules.pro'
    }
}
}

dependencies {
 testImplementation 'junit:junit:4.12'
implementation 'com.android.support:appcompat-v7:27.1.0'
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation(name: 'wikitudesdk', ext: 'aar')
implementation 'com.google.ar:core:1.1.0'


}

repositories {
flatDir{
    dirs 'libs'
}
}

1 Ответ

0 голосов
/ 07 декабря 2018

Может быть, вы можете попробовать это, я не уверен, что это сработает:

//In your app gradle file, inside "android":

dexOptions {
        javaMaxHeapSize "4g"
    }

//Also in your app gradle file, inside "dependencies":
implementation 'androidx.multidex:multidex:2.0.0'
...