Skip to content

Commit 2f504ac

Browse files
egnorAndroid (Google) Code Review
authored andcommitted
Merge "Set targetSdkVersion in addition to minSdkVersion (this also needs to be set to a non-default value to install on non-dev builds)."
2 parents 7002718 + b028990 commit 2f504ac

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)