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:
@@ -18,6 +18,6 @@ include $(CLEAR_VARS)
|
|||||||
LOCAL_CERTIFICATE := platform
|
LOCAL_CERTIFICATE := platform
|
||||||
LOCAL_MODULE_TAGS := eng
|
LOCAL_MODULE_TAGS := eng
|
||||||
LOCAL_PACKAGE_NAME := BugReportSender
|
LOCAL_PACKAGE_NAME := BugReportSender
|
||||||
LOCAL_SDK_VERSION := current
|
LOCAL_SDK_VERSION := 4
|
||||||
LOCAL_SRC_FILES := $(call all-subdir-java-files)
|
LOCAL_SRC_FILES := $(call all-subdir-java-files)
|
||||||
include $(BUILD_PACKAGE)
|
include $(BUILD_PACKAGE)
|
||||||
|
|||||||
@@ -15,16 +15,16 @@
|
|||||||
-->
|
-->
|
||||||
|
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<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-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||||
|
|
||||||
|
<uses-sdk android:minSdkVersion="4" />
|
||||||
|
|
||||||
<application
|
<application
|
||||||
android:icon="@drawable/icon"
|
android:icon="@drawable/icon"
|
||||||
android:label="Bug Report Sender"
|
android:label="Bug Report Sender" >
|
||||||
android:versionCode="1" >
|
|
||||||
|
|
||||||
<uses-sdk android:minSdkVersion="4" />
|
|
||||||
|
|
||||||
<activity android:name="BugReportListActivity">
|
<activity android:name="BugReportListActivity">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
|
|||||||
Reference in New Issue
Block a user