gpt4 book ai didi

android - VM 有 multidex 支持,MultiDex 支持库被禁用

转载 作者:可可西里 更新时间:2023-11-01 18:48:00 25 4
gpt4 key购买 nike

我收到以下错误。

致命异常:main

  • 2.1.0 版的 VM 支持 multidex
  • 安装
  • VM 支持 multidex,MultiDex 支持库被禁用。
  • 安装
  • VM 支持 multidex,MultiDex 支持库被禁用。
  • 关闭虚拟机

这是我的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/

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