Build against SDK version 4 (Donut) to ensure compatibility

Use the correct SDK version and version code parameters in the
manifest (they were in the wrong spot).  Bump the version code
to 10 (one greater than what's on bazaar currently).
This commit is contained in:
Dan Egnor
2010-02-23 21:25:09 -08:00
parent 2e16fbc36b
commit e89d3740dd
2 changed files with 6 additions and 6 deletions

View File

@@ -18,6 +18,6 @@ include $(CLEAR_VARS)
LOCAL_CERTIFICATE := platform
LOCAL_MODULE_TAGS := eng
LOCAL_PACKAGE_NAME := BugReportSender
LOCAL_SDK_VERSION := current
LOCAL_SDK_VERSION := 4
LOCAL_SRC_FILES := $(call all-subdir-java-files)
include $(BUILD_PACKAGE)

View File

@@ -15,16 +15,16 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.bugreportsender" >
package="com.android.bugreportsender"
android:versionCode="10" >
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-sdk android:minSdkVersion="4" />
<application
android:icon="@drawable/icon"
android:label="Bug Report Sender"
android:versionCode="1" >
<uses-sdk android:minSdkVersion="4" />
android:label="Bug Report Sender" >
<activity android:name="BugReportListActivity">
<intent-filter>