不知何故,android packager没有(再)包含我在APK中的应用程序的类文件。
我已经尝试了将我的设置与示例项目进行比较以重新安装Eclipse时所想到的一切。但是,当我打包应用程序时,无论是通过'导出(un)签名的应用程序包'还是只是通过在调试设备/模拟器上运行它,一切都包含在内(jar库,android库项目(例如ActionBarSherlock))除了我自己的代码。 : - (
这是仍然产生问题的最小配置......感谢任何提示或帮助!
Android Manifest:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.kawak.bla.android"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".activity.MainActivity"
android:theme="@android:style/Theme.NoTitleBar" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
类路径:
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry kind="lib" path="libs/json-simple-1.1.1.jar"/>
<classpathentry kind="lib" path="libs/zbar.jar"/>
<classpathentry combineaccessrules="false" kind="src" path="/SherlockActionBar"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>
Eclipse项目配置:
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>bla-android</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
更新 我的问题实际上是ActionBarSherlock是针对Android 4.2构建的,它在某种程度上搞砸了所有这些都没有一个像样的错误消息。幸运的是,在常见问题解答中提到你有来构建它以对抗4.0 ...接受Robert的答案,因为他是最接近的。
答案 0 :(得分:1)
你如何最有可能出现构建错误,而且该过程无法完成它的工作。
答案 1 :(得分:0)