Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2ac6d470 authored by Damian Patel's avatar Damian Patel
Browse files

API level 30 upgrade: AOSP Dialer

The various AndroidManifest.xml files of the AOSP Dialer
app have been upgraded so that their targetSdkVersion
is 30.

Test: manual - the Dialer app build, initialized, and
ran successfully with the UI features functioning properly.
CTS provider tests were also run and the output is seen below:

================= Results ==================
=============== Consumed Time ==============
    arm64-v8a CtsProviderTestCases: 9m 48s
Total aggregated tests run time: 9m 48s
============== TOP 1 Slow Modules ==============
    arm64-v8a CtsProviderTestCases: 0.64 tests/sec [376 tests / 588562 msec]
============== Modules Preparation Times ==============
    arm64-v8a CtsProviderTestCases => prep = 10306 ms || clean = 2287 ms
Total preparation time: 10s  ||  Total tear down time: 2s
=======================================================
=============== Summary ===============
Total Run time: 11m 22s
1/1 modules completed
Total Tests       : 376
PASSED            : 362
FAILED            : 0
IGNORED           : 6
ASSUMPTION_FAILURE: 8
============== End of Results ==============

Change-Id: I56ad0467ffb78ad723eaf25e9f5477def2ce9f68
parent 787c53e1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@

  <uses-sdk
    android:minSdkVersion="24"
    android:targetSdkVersion="29"/>
    android:targetSdkVersion="30"/>

  <uses-permission android:name="android.permission.CALL_PHONE"/>
  <uses-permission android:name="android.permission.READ_CONTACTS"/>
+1 −1
Original line number Diff line number Diff line
@@ -16,6 +16,6 @@
  -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.google.android.assets.quantum">
  <uses-sdk android:targetSdkVersion="29" />
  <uses-sdk android:targetSdkVersion="30" />
  <application/>
</manifest>
+1 −1
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@

  <uses-sdk
    android:minSdkVersion="24"
    android:targetSdkVersion="29"/>
    android:targetSdkVersion="30"/>

  <application>

+1 −1
Original line number Diff line number Diff line
@@ -17,6 +17,6 @@

  <uses-sdk
      android:minSdkVersion="24"
      android:targetSdkVersion="29"/>
      android:targetSdkVersion="30"/>

</manifest>
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@

  <uses-sdk
      android:minSdkVersion="24"
      android:targetSdkVersion="29"/>
      android:targetSdkVersion="30"/>

  <application>
    <activity
Loading