- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我收到以下错误。
致命异常:main
这是我的build.gradle,我在android部分启用了multidex,
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '23.0.0'
defaultConfig {
applicationId "com.mycompany.newlogin"
minSdkVersion 15
targetSdkVersion 22
versionCode 1
versionName "1.0"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
useLibrary 'org.apache.http.legacy'
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:multidex:1.0.0'
compile 'com.google.guava:guava-jdk5:17.0'
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:design:23.0.1'
//compile 'org.apache.httpcomponents:httpcore:4.4.1'
compile 'org.apache.httpcomponents:httpclient:4.5'
compile 'org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.apache.http.client:4.1.2'
}
我的 list 文件是
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mycompany.newlogin" >
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:name="android.support.multidex.MultiDexApplication">
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".Login"
android:label="@string/title_activity_login" >
</activity>
<activity
android:name=".Register"
android:label="@string/title_activity_register" >
</activity>
</application>
</manifest>
最佳答案
创建一个类,将其命名为 App
并从 MultiDexApplication
扩展,如下所示:
import android.support.multidex.MultiDexApplication;
public class App extends MultiDexApplication {
//you can leave this empty or override methods if you like so the thing is that you need to extend from MultiDexApplication
}
在您的 list 中添加 App
作为您的应用程序名称,就像这样
<application
android:name=".App" // <<< this is the important line!
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name">
在添加完所有内容后进行干净的构建,它现在应该可以工作了:)。
关于android - VM 有 multidex 支持,MultiDex 支持库被禁用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33326575/
我想在我的应用程序中使用 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
我是一名优秀的程序员,十分优秀!