我想使用eclipse在android中开发库项目。我试过Android开发者网站,我无法进入。我需要帮助,如何更改我的清单,现在我的文件看起来像这样。现在我需要做哪些更改?
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.Thinkpalm.gestureinput"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".gestureinput"
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 :(得分:9)
从project
(eclipse)中选择Package Explorer
或创建一个新的Properties
,然后按Alt + Enter(或右键单击+属性)打开IsLibray
对话框并检查{{ 1}}复选框。
有关详细信息,请参阅Setting up a Library Project