From f4d9b1bf64b866fa10ea589152563908c9716b29 Mon Sep 17 00:00:00 2001 From: Neil Fuller Date: Tue, 19 Dec 2017 15:52:01 +0000 Subject: Track changes in frameworks/base Add the newly required permission to the Time Zone Updater app. Test: PTS: run -m PtsTimeZoneTestCases Test: atest FrameworksServicesTests:RulesManagerServiceTest Bug: 69443060 Change-Id: I99513f246f1bb5d8f91191e35f59951b2c22e133 --- AndroidManifest.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/AndroidManifest.xml b/AndroidManifest.xml index a3665a9..284fc2e 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -19,6 +19,7 @@ package="com.android.timezone.updater" android:versionCode="1"> + Date: Thu, 22 Feb 2018 17:03:01 +0000 Subject: packages/apps/TimeZoneUpdater: Set LOCAL_SDK_VERSION where possible. This change sets LOCAL_SDK_VERSION for all packages where this is possible without breaking the build, and LOCAL_PRIVATE_PLATFORM_APIS := true otherwise. Setting one of these two will be made required soon, and this is a change in preparation for that. Not setting LOCAL_SDK_VERSION makes the app implicitly depend on the bootclasspath, which is often not required. This change effectively makes depending on private apis opt-in rather than opt-out. Test: make relevant packages Bug: 73535841 Change-Id: I283419238eddc3a623e8ca53a8a717d90740b573 --- Android.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/Android.mk b/Android.mk index 08e0e86..fcbc2bd 100644 --- a/Android.mk +++ b/Android.mk @@ -29,6 +29,7 @@ LOCAL_MODULE_TAGS := optional LOCAL_PROGUARD_ENABLED := disabled LOCAL_STATIC_JAVA_LIBRARIES := time_zone_updater LOCAL_PACKAGE_NAME := TimeZoneUpdater +LOCAL_PRIVATE_PLATFORM_APIS := true LOCAL_CERTIFICATE := platform LOCAL_PRIVILEGED_MODULE := true include $(BUILD_PACKAGE) -- cgit v1.2.3