Remove min sdk version and set target/max sdk version to 29

Min sdk version has been force set to 28 (P) to support beta devices.
Since we now don't need to support them, we delete it. It is set to 29
by the build system.

Target and max sdk versions are bumped to 29.

Bug: 131128233
Test: m and check the sdk version numbers
Change-Id: I9ecf2b7542bde239955daf91c88b8e612d7d7069
gugelfrei
Jiyong Park 5 years ago
parent a6d436ca27
commit 90f411141b

@ -18,10 +18,9 @@
package="com.android.media">
<!-- APEX does not have classes.dex -->
<application android:hasCode="false" />
<!-- Setting maxSdk to lock the module to Q. minSdk is 28 for now to cover Q beta devices. -->
<!-- Setting maxSdk to lock the module to Q. minSdk is auto-set by build system -->
<uses-sdk
android:minSdkVersion="28"
android:maxSdkVersion="29"
android:targetSdkVersion="28"
android:targetSdkVersion="29"
/>
</manifest>

@ -18,10 +18,9 @@
package="com.android.media.swcodec">
<!-- APEX does not have classes.dex -->
<application android:hasCode="false" />
<!-- Setting maxSdk to lock the module to Q. minSdk is 28 for now to cover Q beta devices. -->
<!-- Setting maxSdk to lock the module to Q. minSdk is auto-set by build system -->
<uses-sdk
android:minSdkVersion="28"
android:maxSdkVersion="29"
android:targetSdkVersion="28"
android:targetSdkVersion="29"
/>
</manifest>

Loading…
Cancel
Save