«android-multidex» 태그된 질문

22
오류 : 요청한 클래스를 단일 dex 파일에 맞출 수 없습니다. 메인 덱스 목록을 제공하십시오. # 방법 : 72477> 65536
통합 위치 서비스를 추가하고 싶지만 약간의 오류가 표시됩니다. 도와 줘요. apply plugin: 'com.android.application' android { compileSdkVersion 26 buildToolsVersion "27.0.1" defaultConfig { applicationId "com.example.adil.bloodbankapplication" minSdkVersion 15 targetSdkVersion 26 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { compile fileTree(include: …

14
.dex 파일의 메소드 참조 수는 64k API 17을 초과 할 수 없습니다
SugarORM Library로 앱을 빌드하고 있지만 API 17 용 프로젝트를 빌드하려고하면 (다른 사람을 확인하지 않은 경우) 빌드 오류가 표시됩니다. Information:Gradle tasks [:app:assembleDebug] :app:preBuild UP-TO-DATE :app:preDebugBuild UP-TO-DATE :app:checkDebugManifest :app:preReleaseBuild UP-TO-DATE :app:prepareComAndroidSupportAnimatedVectorDrawable2330Library UP-TO-DATE :app:prepareComAndroidSupportAppcompatV72330Library UP-TO-DATE :app:prepareComAndroidSupportCardviewV72330Library UP-TO-DATE :app:prepareComAndroidSupportDesign2330Library UP-TO-DATE :app:prepareComAndroidSupportMediarouterV72300Library UP-TO-DATE :app:prepareComAndroidSupportRecyclerviewV72330Library UP-TO-DATE :app:prepareComAndroidSupportSupportV42330Library UP-TO-DATE :app:prepareComAndroidSupportSupportVectorDrawable2330Library UP-TO-DATE :app:prepareComAndroidVolleyVolley100Library UP-TO-DATE :app:prepareComGithubSatyanSugar14Library UP-TO-DATE :app:prepareComGoogleAndroidGmsPlayServices840Library UP-TO-DATE …

14
새로운 Android Multidex 지원 라이브러리로 멀티 덱싱을 활성화하는 방법
새로운 Multidex 지원 라이브러리를 사용하여 내 앱 중 하나의 방법 제한을 깨고 싶습니다. Google은 Android Lollipop을 통해 멀티 덱스를 쉽게 만들 수있는 멀티 덱스 지원 라이브러리를 도입했습니다. 이 라이브러리를 사용하고 멀티 덱스 지원으로 내 앱을 빌드하려면 어떤 단계가 필요합니까?

21
java.util.zip.ZipException : packageAllDebugClassesForMultiDex 중 중복 항목
이 오류가 무엇을 의미하는지 잘 모르겠습니다. Execution failed for task ':excelSior:packageAllDebugClassesForMultiDex'. > java.util.zip.ZipException: duplicate entry: android/support/v4/util/TimeUtils.class 현재 android-support-v4.jar내 라이브러리에 사용 하고 있습니다. dependencies { compile project(':addThisSDK') compile project(':centeredContentButton') compile project(':googleplayservices_lib') compile files('libs/adxtag2.4.6.jar') compile files('libs/android-support-v4.jar') compile files('libs/aws-android-sdk-1.7.1.1-debug.jar') compile files('libs/commons-lang-2.6.jar') compile files('libs/crittercism_v4_4_0_sdkonly.jar') compile files('libs/dd-plist.jar') compile files('libs/FiksuAndroidSDK_4.1.1.jar') compile files('libs/iqengines-sdk-barcode.jar') compile files('libs/irEventTracker-1.2.jar') compile files('libs/jolt-core-0.0.7.jar') …

5
Android MultiDex 란 무엇입니까?
MultiDex에 대한 많은 게시물이 있습니다. 가끔 오류가 포함 해결, 경험 multiDexEnabled true에 defaultConfig내 build.gradle의 섹션을 참조하십시오. 그러나이 기능은 정확히 무엇입니까? 그것을 사용하는 시나리오는 무엇입니까?

12
코드 축소 방법-dex의 65k 메서드 제한
많은 도서관 프로젝트에 의존하는 다소 큰 Android 앱이 있습니다. Android 컴파일러에는 .dex 파일 당 65536 개의 메서드 제한이 있으며이 수를 초과합니다. 메서드 제한에 도달하면 기본적으로 두 가지 경로를 선택할 수 있습니다 (적어도 내가 아는). 1) 코드 축소 2) 여러 dex 파일 빌드 ( 이 블로그 게시물 참조 ) 나는 두 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.