我这里有一个小问题,如果我想在Android Studio中构建一个APK,我会得到这个错误消息:
Error:The number of method references in a .dex file cannot exceed 64K.
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 '/usr/local/java/jdk1.8.0_77/bin/java'' finished with non-zero exit value 2
compile 'com.android.support:multidex:1.0.0'
这是我的分级文件:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.android.support:support-v4:23.4.0'
compile 'com.google.android.gms:play-services:9.0.2'
compile 'com.android.support:multidex:1.0.0'
}
您需要在应用程序中启用多德兴,方法是将build.gradle
中的multidexenabled
标志设置为true。请记住,您的最低SDK版本也必须是14或更高。
android {
compileSdkVersion 21
buildToolsVersion "21.1.0"
defaultConfig {
...
minSdkVersion 14
targetSdkVersion 21
...
// Enabling multidex support.
multiDexEnabled true
}
...
}
dependencies {
compile 'com.android.support:multidex:1.0.0'
}
然后,在清单中配置应用程序元素:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.multidex.myapplication">
<application
...
android:name="android.support.multidex.MultiDexApplication">
...
</application>
</manifest>
这是logcat。我需要澄清这个错误,请社区 我做了更改,但我再次得到这个错误??
我在Windows 7X64计算机上使用Qt 5.12,Qt Creator 4.8上的设备低于此版本: 如图所示,SDK、NDK和JDK似乎都很好。 通过这条路径,我去创建一个名为“test_1”的简单QML项目: 代码如下: SDK包还如下: 这里有什么问题吗? 现在使用工具包测试程序: Desktop:OK Android X86或Arm7:Faild 下面是红色的编译输出窗口的所有内容:
和build.gradle文件(project)中的这一行: 所以..知道发生了什么吗?我知道有重复的文件,但他们是自动创建的!!有工作人员吗?
我试图隐藏Actionbar并改用工具栏,但如果我更改Theme.appcompat.light.NoActionBar,它确实会隐藏,但应用程序在行setContentView(r.layout.activity_main)处崩溃; 尽管它确实使用getSupportActionBar()隐藏。hide();但我不能用这个代码 Toolbar Toolbar=(Toolbar)findViewB
@SpringBootApplication公共类 SpringApiApplication 扩展了 SpringBootServlet初始化器实现 Web应用程序初始化器 { @Override受保护的 SpringApplicationBuilder configure(SpringApplicationBuilder 应用程序) { 返回 application.sources(Spring
这是我的闪屏xml代码,我试图在这里创建一个有点不同的闪屏活动。我使用了一个可绘制的闪屏xml文件,我将将其设置为主题,然后将其用作启动器活动,这将导致我的主要活动。但是我的可绘制xml文件抛出了eroor AAPT:错误:格式不正确 出现问题的不是XML,而是android中应该存在的PNG:src = " @ MIP map/IC _ launcher "/