- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在我的应用程序中使用 Multidex,这导致了一些问题,导致我的应用程序在安装后立即打开它时意外崩溃,当我通过我的 android studio 运行它时它工作正常,但当我尝试使用安装应用程序时我的 apk 在某些设备上崩溃了,我以为这是特定于设备的问题,但每次我使用 APK 文件在任何设备上安装时它都会崩溃。我尝试了很多方法来解决这个问题,
我尝试清理项目并再次构建它生成 apk并安装它,但不起作用
我尝试使缓存无效并重新启动 android studio,但仍然无法正常工作
然后我开始在互联网上寻找解决方案,我发现了很多建议,我都尝试了。我浏览了各种帖子、博客和文档,包括 64K limit , Multidex android documentation还有更多...
我的应用程序的最小 sdk 版本是 16,所以我这样做了,
defaultConfig {
......
minSdkVersion 16
targetSdkVersion 25
.......
multiDexEnabled true
proguardFiles 'proguard-rules.pro'
........
vectorDrawables.useSupportLibrary(true)
// default scheme variables
buildConfigField "String", "DEFAULT_SCHEME", "\"http\""
buildConfigField "String", "REDIRECT_SCHEME", "\"https\""
}
我将此行添加到依赖项中,
compile 'com.android.support:multidex:1.0.1'
我尝试理解并尝试了很多 gradle 文件中的 dexoptions,
dexOptions {
preDexLibraries = false
javaMaxHeapSize "4g"
}
我创建了一个名为multidex.keep的文件,其内容如下:
android/support/multidex/BuildConfig/class
android/support/multidex/MultiDex$V14/class
android/support/multidex/MultiDex$V19/class
android/support/multidex/MultiDex$V4/class
android/support/multidex/MultiDex/class
android/support/multidex/MultiDexApplication/class
android/support/multidex/MultiDexExtractor$1/class
android/support/multidex/MultiDexExtractor/class
android/support/multidex/ZipUtil$CentralDirectory/class
android/support/multidex/ZipUtil/class
然后我将这些行添加到应用程序的 gradle 文件中,
afterEvaluate {
tasks.matching {
it.name.startsWith('dex')
}.each { dx ->
if (dx.additionalParameters == null) {
dx.additionalParameters = []
}
dx.additionalParameters += '--multi-dex'
dx.additionalParameters += "--main-dex- list=$projectDir/multidex.keep".toString()
}
}
我仍然无法解决该问题,仍在寻找解决方案,欢迎任何帮助/建议。
提前谢谢您!
最佳答案
在 list 文件的应用程序标记中添加以下行:
android:name="android.support.multidex.MultiDexApplication"
关于android - multidex 问题,显示在 dexpathlist 中找不到类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42924618/
我想在我的应用程序中使用 multidex,起初我使用 depedencies :'com.google.android:multidex:0.1',但是编译后出现这个错误: Error:Execut
我的应用程序在 pre-21 上崩溃并出现 java.lang.NoClassDefFoundError app.module.SomeClass 错误。 我已经启用了 Multidex: build
按照以下位置提到的说明进行操作:https://developer.android.com/studio/build/multidex.html#mdex-gradle 我遇到错误找不到符号 clas
我收到以下错误。 致命异常:main 2.1.0 版的 VM 支持 multidex 安装 VM 支持 multidex,MultiDex 支持库被禁用。 安装 VM 支持 multidex,Mult
我已经尝试了互联网上的所有解决方案,但其中任何一个都有效,这是我的 gradle: android { compileSdkVersion 25 buildToolsVersion '
> Could not resolve all files for configuration ':app:debugCompileClasspath'. > Could not find co
为了启用多索引,我在 CustomApplication 类中有以下代码: @Override public void onCreate() { MultiDex.install(this);
找不到 multidex.jar (com.android.support:multidex:1.0.2)。在以下位置搜索: https://jcenter.bintray.com/com/andro
这是我的build.gradle,当我运行应用程序时,它报告这个错误消息: 错误:任务 ':app:transformClassesWithJarMergingForDebug' 执行失败。 com.
我正在尝试启用 MultiDex。我添加了 multiDexEnabled true和 compile 'com.android.support:multidex:1.0.3'构建.gradle。我做
我曾经在几天前收到 DexIndexOverflowException,我所做的是: a) 在我的 build.gradle 文件中将 multiDexEnabled true 添加到 default
我有以下争吵: 因此,对于一个较大的项目,我需要有多个应用程序,其中包含一个可重用的库模块,用于多种用途。不幸的是,我的库模块中的类和库的基本数量似乎超出了项目的 dex 限制具有以下 gradle
我下载了 SugarORM 源代码以将其用作库模块(因此我可以覆盖应用程序的“attachBaseContext”方法。 我已经看到问题SugarORM and multidex ,问题是我不知道
我在启用 multidex 时遇到问题。我正在使用 Android Studio,我在 DrawerLayoutWidget 上收到“找不到类”。这是设置 build.gradle apply plu
我在我的应用程序中遇到了 multidex 支持的问题,实际上应用程序安装正常,但在此过程中,一些 Activity 崩溃了,应用程序重新启动了主要 Activity 。在 logcat 中我发现了这
我有这个错误。 Error:Execution failed for task ':myApp:createDebugMainDexClassList'. com.android.ide.common
我正在创建一个新的 android 项目,并决定使用新的 AndroidX 替代支持库,可以在此处找到相关文档:https://developer.android.com/jetpack/androi
我最近发现了 Android 的新 MultiDex 功能,可用于处理具有超过 65,000 个引用的应用程序。请参阅:https://developer.android.com/tools/buil
我更新了所有内置工具、支持库和 google Play 服务。但我仍然收到以下错误: Error:Execution failed for task ':app:shrinkReleaseMultiD
我正在使用 CircledImageView 库。它在 lollipop+ android 版本上运行良好。但是在 kitkat 中它崩溃了。所以在谷歌搜索之后。我发现我必须在我的应用程序中实现 mu
我是一名优秀的程序员,十分优秀!