Skip to content

Commit b028990

Browse files
committed
Set targetSdkVersion in addition to minSdkVersion (this also needs
to be set to a non-default value to install on non-dev builds). Also bump the version number once more.
1 parent 2f657ec commit b028990

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

apps/BugReportSender/AndroidManifest.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@
1616

1717
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
1818
package="com.android.bugreportsender"
19-
android:versionCode="10" >
19+
android:versionCode="11" >
2020

2121
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
2222

23-
<uses-sdk android:minSdkVersion="4" />
23+
<!-- Minimum Donut, target Froyo -->
24+
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="7" />
2425

2526
<application
2627
android:icon="@drawable/icon"

0 commit comments

Comments
 (0)