blob: a097bd2f350d75d201bf1d8172888defd8f0473d [file] [log] [blame]
Colin Cross20299032018-05-09 13:29:51 -07001#
2# Copyright (C) 2018 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17# Including this makefile will force AAPT2 on if FORCE_AAPT2==true,
18# rewriting some properties to convert standard AAPT usage to AAPT2.
19
Jeff Gaston777cf2c2018-05-22 18:57:22 +000020ifeq ($(FORCE_AAPT2),true)
Colin Crossd4432442018-05-15 15:25:20 -070021 ifeq ($(LOCAL_USE_AAPT2),)
Colin Cross20299032018-05-09 13:29:51 -070022 # Force AAPT2 on
23 LOCAL_USE_AAPT2 := true
Colin Cross20299032018-05-09 13:29:51 -070024 # Filter out support library resources
25 LOCAL_RESOURCE_DIR := $(filter-out \
26 prebuilts/sdk/current/% \
27 frameworks/support/%,\
28 $(LOCAL_RESOURCE_DIR))
29 # Filter out unnecessary aapt flags
Colin Cross282065a2018-05-17 07:13:43 -070030 ifneq (,$(filter --extra-packages,$(LOCAL_AAPT_FLAGS)))
31 LOCAL_AAPT_FLAGS := $(subst --extra-packages=,--extra-packages$(space), \
32 $(filter-out \
33 --extra-packages=android.support.% \
34 --extra-packages=androidx.%, \
35 $(subst --extra-packages$(space),--extra-packages=,$(LOCAL_AAPT_FLAGS))))
36 ifeq (,$(filter --extra-packages,$(LOCAL_AAPT_FLAGS)))
37 LOCAL_AAPT_FLAGS := $(filter-out --auto-add-overlay,$(LOCAL_AAPT_FLAGS))
38 endif
39 endif
Colin Cross20299032018-05-09 13:29:51 -070040
41 # AAPT2 is pickier about missing resources. Support library may have references to resources
42 # added in current, so always treat LOCAL_SDK_VERSION as LOCAL_SDK_RES_VERSION := current.
43 ifdef LOCAL_SDK_VERSION
44 LOCAL_SDK_RES_VERSION := current
45 endif
46
47 ifeq (,$(strip $(LOCAL_MANIFEST_FILE)$(LOCAL_FULL_MANIFEST_FILE)))
48 ifeq (,$(wildcard $(LOCAL_PATH)/AndroidManifest.xml))
49 # work around missing manifests by creating a default one
Jeff Gaston777cf2c2018-05-22 18:57:22 +000050 $(call pretty-warning, Missing manifest file)
Colin Cross20299032018-05-09 13:29:51 -070051 LOCAL_FULL_MANIFEST_FILE := $(call local-intermediates-dir,COMMON)/DefaultManifest.xml
Colin Crossd45079a2018-05-23 16:32:48 -070052 ifdef LOCAL_MIN_SDK_VERSION
53 my_manifest_min_sdk_version := $(LOCAL_MIN_SDK_VERSION)
54 else ifneq (,$(filter-out current system_current test_current core_current, $(LOCAL_SDK_VERSION)))
55 my_manifest_min_sdk_version := $(call get-numeric-sdk-version,$(LOCAL_SDK_VERSION))
56 else
57 my_manifest_min_sdk_version := $(DEFAULT_APP_TARGET_SDK)
58 endif
59 $(call create-default-manifest-file,$(LOCAL_FULL_MANIFEST_FILE),$(my_manifest_min_sdk_version))
60 my_manifest_min_sdk_version :=
Colin Cross20299032018-05-09 13:29:51 -070061 endif
62 endif
63 endif
64endif
65
66ifneq ($(LOCAL_USE_AAPT2),true)
67 ifneq ($(LOCAL_USE_AAPT2),false)
68 ifneq ($(LOCAL_USE_AAPT2),)
69 $(call pretty-error,Invalid value for LOCAL_USE_AAPT2: "$(LOCAL_USE_AAPT2)")
70 endif
71 endif
72endif