gpt4 book ai didi

android - 比 Lollipop 更旧的 API 超过了 64k 限制,但不是更新的

转载 作者:IT王子 更新时间:2023-10-28 23:29:11 25 4
gpt4 key购买 nike

所以我想知道为什么我尝试在比 Lollipop 更早的 android 版本上运行我的应用程序时遇到 64k dex 方法限制,而它在较新的版本上运行得很好。

可能是因为在旧版本上运行时实际上引用了支持库?

这是我的毕业典礼:

    apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion '23.0.2'
lintOptions {
checkReleaseBuilds true
// Or, if you prefer, you can continue to check for errors in release builds,
// but continue the build even when errors are found:
abortOnError false
}

defaultConfig {
applicationId "com.domain.myapp"
minSdkVersion 16
targetSdkVersion 23
versionCode 27
versionName "1.2"

// Vector compat
vectorDrawables.useSupportLibrary = true
}

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

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}

dependencies {

compile files('libs/commons-io-2.4.jar')
compile files('libs/activation.jar')
compile files('libs/additionnal.jar')
compile files('libs/mail.jar')
compile project(':libraries:preferencefragment')

// Gmail API
compile('com.google.api-client:google-api-client-android:1.20.0') {
exclude group: 'org.apache.httpcomponents'
}
compile('com.google.apis:google-api-services-gmail:v1-rev29-1.20.0') {
exclude group: 'org.apache.httpcomponents'
}

// Play Services
compile 'com.google.android.gms:play-services-location:8.4.0'
compile 'com.google.android.gms:play-services-maps:8.4.0'
compile 'com.google.android.gms:play-services-ads:8.4.0'
compile 'com.google.android.gms:play-services-analytics:8.4.0'
compile 'com.google.android.gms:play-services-identity:8.4.0'

// Support libraries
compile 'com.android.support:support-v4:23.3.0'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support:cardview-v7:23.3.0'
compile 'com.android.support:design:23.3.0'

compile 'com.github.bumptech.glide:glide:3.6.1'
compile 'com.anjlab.android.iab.v3:library:1.0.20'
compile 'com.sothree.slidinguppanel:library:2.0.3'
compile 'com.commit451:PhotoView:1.2.5'

compile('com.github.afollestad.material-dialogs:core:0.8.5.7@aar') {
transitive = true
}
}

编辑:

澄清一下:当我尝试在运行的模拟器上运行应用程序时会发生这种情况。奇巧 API 19

来自 gradle 控制台的崩溃日志:

...
:App:generateDebugInstantRunAppInfo
:App:transformClassesWithDexForDebug
AGPBI: {"kind":"error","text":"The number of method references in a .dex file cannot exceed 64K.\nLearn how to resolve this issue at https://developer.android.com/tools/building/multidex.html","sources":[{}],"original":"UNEXPECTED TOP-LEVEL EXCEPTION:\ncom.android.dex.DexIndexOverflowException: method ID not in [0, 0xffff]: 65536\n\tat com.android.dx.merge.DexMerger$6.updateIndex(DexMerger.java:484)\n\tat com.android.dx.merge.DexMerger$IdMerger.mergeSorted(DexMerger.java:261)\n\tat com.android.dx.merge.DexMerger.mergeMethodIds(DexMerger.java:473)\n\tat com.android.dx.merge.DexMerger.mergeDexes(DexMerger.java:161)\n\tat com.android.dx.merge.DexMerger.merge(DexMerger.java:188)\n\tat com.android.dx.command.dexer.Main.mergeLibraryDexBuffers(Main.java:504)\n\tat com.android.dx.command.dexer.Main.runMonoDex(Main.java:334)\n\tat com.android.dx.command.dexer.Main.run(Main.java:277)\n\tat com.android.dx.command.dexer.Main.main(Main.java:245)\n\tat com.android.dx.command.Main.main(Main.java:106)\n","tool":"Dex"}

FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':App:transformClassesWithDexForDebug'.
> com.android.build.api.transform.TransformException: com.android.ide.common.process.ProcessException: java.util.concurrent.ExecutionException: com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/bin/java'' finished with non-zero exit value 2

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

来自消息窗口的崩溃消息:

:App:transformClassesWithDexForDebug
Error:The number of method references in a .dex file cannot exceed 64K.
Learn how to resolve this issue at https://developer.android.com/tools/building/multidex.html
Error:Execution failed for task ':App:transformClassesWithDexForDebug'.
> com.android.build.api.transform.TransformException: com.android.ide.common.process.ProcessException: java.util.concurrent.ExecutionException: com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/bin/java'' finished with non-zero exit value 2

最佳答案

回答您的具体问题是:

  • 此方法计数限制在 DEX(Dalvik 可执行文件)文件中。
  • 此限制的常见解决方法是拥有多个 DEX 文件。
  • 旧版 Android 本身不支持多个 DEX 文件。
  • 从 Lollipop 开始,系统原生支持它。

这就是它在旧设备上失败但在新设备上工作的原因。它与支持库无关。

为我的回答添加更多有用的内容:

但也许有些人可能想知道如何在旧设备上解决它,请注意我在上面的要点中使用了 native 这个词。这意味着,有一些变通方法可以让旧平台支持它,但您必须将这些变通方法编码到您的应用中。

此 Google 指南中详细说明了解决方法(甚至问题本身):http://developer.android.com/tools/building/multidex.html

它的基础是:

  • 将 multidex 添加到您的依赖项compile 'com.android.support:multidex:+'
  • 在 android->default config multiDexEnabled true
  • 中的构建脚本上启用 multiDex
  • 在 list 上使您的应用程序扩展自 MultidexApplication android:name="android.support.multidex.MultiDexApplication" 或者,如果您需要子类 Application 为您自己的应用程序,让您的应用程序从它扩展。

关于android - 比 Lollipop 更旧的 API 超过了 64k 限制,但不是更新的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36559835/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com