summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamian Patel <damianpatel@google.com>2021-07-14 19:47:53 +0000
committerDamian Patel <damianpatel@google.com>2021-07-14 19:47:53 +0000
commitd2ccb7c7551af7a0a970f9cfa41389aefba17e70 (patch)
tree55ce1c54e13268718d003aa7abc2e756b5e2f1cd
parent231a577ca300be20fb3cf66f1d72df73ff9d1f66 (diff)
downloadMusic-d2ccb7c7551af7a0a970f9cfa41389aefba17e70.tar.gz
API level 30 upgrade: AOSP/Music
The AndroidManifest.xml files of both the Java and Kotlin version of the AOSP Music app have had their targetSDKversions upgraded to level 30. For now, the Java version of the app will be kept so that it can be showcased for Bazel conversion. Test: manual - after the changes, both Music and MusicKotlin built successfully. Moreovoer, mp3 files were pushed onto the phone and played using the Music and MusicKotlin apps without issues. CTSProviderTests were also run and the output can be seen below: ================= Results ================== =============== Consumed Time ============== arm64-v8a CtsProviderTestCases: 11m 31s Total aggregated tests run time: 11m 31s ============== TOP 1 Slow Modules ============== arm64-v8a CtsProviderTestCases: 0.54 tests/sec [376 tests / 691227 msec] ============== Modules Preparation Times ============== arm64-v8a CtsProviderTestCases => prep = 9081 ms || clean = 2422 ms Total preparation time: 9s || Total tear down time: 2s ======================================================= =============== Summary =============== Total Run time: 13m 11s 1/1 modules completed Total Tests : 376 PASSED : 362 FAILED : 0 IGNORED : 6 ASSUMPTION_FAILURE: 8 ============== End of Results ============== Change-Id: I2415a5d4fd3029698d48b24ae6e142edcbf4e373
-rw-r--r--AndroidManifest.xml4
-rw-r--r--kotlin/AndroidManifest.xml4
2 files changed, 4 insertions, 4 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 48d416c..7788947 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -17,14 +17,14 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.music"
- xmlns:tools="http://schemas.android.com/tools">
+ xmlns:tools="http://schemas.android.com/tools">
<!-- Package Name -->
<original-package android:name="com.android.music"/>
<!-- SDK Versions -->
<uses-sdk android:minSdkVersion="19"
- android:targetSdkVersion="29"/>
+ android:targetSdkVersion="30"/>
<!-- Permissions -->
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
diff --git a/kotlin/AndroidManifest.xml b/kotlin/AndroidManifest.xml
index 48d416c..7788947 100644
--- a/kotlin/AndroidManifest.xml
+++ b/kotlin/AndroidManifest.xml
@@ -17,14 +17,14 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.music"
- xmlns:tools="http://schemas.android.com/tools">
+ xmlns:tools="http://schemas.android.com/tools">
<!-- Package Name -->
<original-package android:name="com.android.music"/>
<!-- SDK Versions -->
<uses-sdk android:minSdkVersion="19"
- android:targetSdkVersion="29"/>
+ android:targetSdkVersion="30"/>
<!-- Permissions -->
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>