我为Android开发下载了构思版本13社区版。我下载了JDK 1.7和Android SDK。当我创建android项目时,我指定了jdk版本和android sdk版本。所以,这里有一个问题:当我选择jdk 1.7和android sdk 4.0.3或者更少的时候我推“重建项目”我有这个错误日志:
Android Dex: [testApp2] Unable to execute DX
Android Dex: [testApp2] java.nio.BufferOverflowException
Android Dex: [testApp2] at java.nio.Buffer.nextPutIndex(Buffer.java:519)
Android Dex: [testApp2] at java.nio.HeapByteBuffer.putShort(HeapByteBuffer.java:315)
Android Dex: [testApp2] at com.android.dex.Dex$Section.writeShort(Dex.java:818)
Android Dex: [testApp2] at com.android.dex.Dex$Section.writeTypeList(Dex.java:870)
...
这是我的manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.testApp2"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8"
android:targetSdkVersion="16"/>
<application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
<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>
</application>
</manifest>
答案 0 :(得分:2)
我最后几天也遇到了同样的问题。 我可以通过将Android Build工具更新到版本18.1.1来解决它。 版本19.0对我不起作用。
要在Intellij中升级/降级,请转到Android ADK-Manager(工具 - &gt; Android-&gt; SDK-Manager) 在工具下是不同的Android SDK Build-tools。 安装版本18.1.1。也许卸载19版。
这适合我。
答案 1 :(得分:1)
这看起来像构建工具中的一个错误。这个question的答案表明您需要确保 AndroidManifest.xml 中的 android:targetSdkVersion 必须与 target.sdk local.properties 中的属性。
在您的情况下,您已指定;
<uses-sdk android:targetSdkVersion="16"/>
所以在你的local.properties中应该设置为;
target.sdk=android-16
不应该需要降级构建工具版本。