diff options
author | Anton Hansson <hansson@google.com> | 2018-02-21 14:11:44 +0000 |
---|---|---|
committer | Cosme Domínguez Díaz <cosme.ddiaz@gmail.com> | 2018-08-26 16:17:10 +0200 |
commit | 5c3d83ae9944809c8f07ee0a5709e73365629df4 (patch) | |
tree | 0923e51c5383107110c3be8c23570e070e10d7b3 /doze/Android.mk | |
parent | d1f38b3713915d3a204bb29b231999d97b9a6298 (diff) |
msm8996-common: 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: Ic906adbd670c4dbfe2cdf0b71cdbeaf9ac08a27e
Diffstat (limited to 'doze/Android.mk')
-rw-r--r-- | doze/Android.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doze/Android.mk b/doze/Android.mk index 373caeb..6aeb8d5 100644 --- a/doze/Android.mk +++ b/doze/Android.mk @@ -7,6 +7,7 @@ LOCAL_SRC_FILES := $(call all-java-files-under, src) LOCAL_PACKAGE_NAME := ZukDoze LOCAL_CERTIFICATE := platform +LOCAL_PRIVATE_PLATFORM_APIS := true LOCAL_PRIVILEGED_MODULE := true LOCAL_USE_AAPT2 := true |