diff options
author | Damian Patel <damianpatel@google.com> | 2021-07-29 15:24:02 +0000 |
---|---|---|
committer | Damian Patel <damianpatel@google.com> | 2021-07-29 16:45:20 +0000 |
commit | 5057292d1566e60eb981faeec1f71f3b4a846831 (patch) | |
tree | 7aa12b1f7b26fca82392485e25c534aa26c6a4a4 | |
parent | 64397745d05db1d98dbe0bfdb717847d557412a8 (diff) | |
download | platform_packages_apps_WallpaperPicker-android-s-beta-5.tar.gz platform_packages_apps_WallpaperPicker-android-s-beta-5.tar.bz2 platform_packages_apps_WallpaperPicker-android-s-beta-5.zip |
API level 30 upgrade: AOSP WallpaperPickerandroid-s-beta-5android-s-beta-5
The AndroidManifest.xml and build.gradele files
have been updated so that the targetSdkVersion is
30.
Test: manual - the app builds successfully and
wallpapers can be changed and added without any
issues. The CTS provider test output is seen below:
================= Results ==================
=============== Consumed Time ==============
arm64-v8a CtsProviderTestCases: 13m 19s
Total aggregated tests run time: 13m 19s
============== TOP 1 Slow Modules ==============
arm64-v8a CtsProviderTestCases: 0.47 tests/sec [376 tests / 799893 msec]
============== Modules Preparation Times ==============
arm64-v8a CtsProviderTestCases => prep = 12093 ms || clean = 2457 ms
Total preparation time: 12s || Total tear down time: 2s
=======================================================
=============== Summary ===============
Total Run time: 15m 14s
1/1 modules completed
Total Tests : 376
PASSED : 362
FAILED : 0
IGNORED : 6
ASSUMPTION_FAILURE: 8
============== End of Results ==============
Change-Id: I2135ab451f8e30863c85415ff1d51cbe999515e3
-rw-r--r-- | AndroidManifest.xml | 2 | ||||
-rw-r--r-- | build.gradle | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index d6d7759..17341e4 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -6,7 +6,7 @@ android:versionName="1.0"> <uses-sdk android:minSdkVersion="16" - android:targetSdkVersion="29"/> + android:targetSdkVersion="30"/> <uses-permission android:name="android.permission.SET_WALLPAPER"/> diff --git a/build.gradle b/build.gradle index ee7426b..38291c5 100644 --- a/build.gradle +++ b/build.gradle @@ -10,12 +10,12 @@ buildscript { apply plugin: 'com.android.library' android { - compileSdkVersion 23 + compileSdkVersion 30 buildToolsVersion "22.0.1" defaultConfig { minSdkVersion 16 - targetSdkVersion 23 + targetSdkVersion 30 versionCode 1 versionName "1.0" } |