2018-06-08 01:46:02 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# Copyright (C) 2018 The Android Open Source Project
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
"""A tool for inserting values from the build system into a manifest."""
|
|
|
|
|
|
|
|
from __future__ import print_function
|
2019-05-20 22:14:18 +02:00
|
|
|
|
2018-06-08 01:46:02 +02:00
|
|
|
import argparse
|
|
|
|
import sys
|
|
|
|
from xml.dom import minidom
|
|
|
|
|
|
|
|
|
2019-05-20 22:14:18 +02:00
|
|
|
from manifest import android_ns
|
|
|
|
from manifest import compare_version_gt
|
|
|
|
from manifest import ensure_manifest_android_ns
|
|
|
|
from manifest import find_child_with_attribute
|
|
|
|
from manifest import get_children_with_tag
|
|
|
|
from manifest import get_indent
|
|
|
|
from manifest import parse_manifest
|
|
|
|
from manifest import write_xml
|
2018-06-18 04:01:00 +02:00
|
|
|
|
|
|
|
|
2018-06-08 01:46:02 +02:00
|
|
|
def parse_args():
|
|
|
|
"""Parse commandline arguments."""
|
|
|
|
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
parser.add_argument('--minSdkVersion', default='', dest='min_sdk_version',
|
|
|
|
help='specify minSdkVersion used by the build system')
|
2018-09-10 22:35:13 +02:00
|
|
|
parser.add_argument('--targetSdkVersion', default='', dest='target_sdk_version',
|
|
|
|
help='specify targetSdkVersion used by the build system')
|
|
|
|
parser.add_argument('--raise-min-sdk-version', dest='raise_min_sdk_version', action='store_true',
|
|
|
|
help='raise the minimum sdk version in the manifest if necessary')
|
2018-07-24 23:51:30 +02:00
|
|
|
parser.add_argument('--library', dest='library', action='store_true',
|
|
|
|
help='manifest is for a static library')
|
2018-06-18 04:01:00 +02:00
|
|
|
parser.add_argument('--uses-library', dest='uses_libraries', action='append',
|
2018-10-16 04:00:04 +02:00
|
|
|
help='specify additional <uses-library> tag to add. android:requred is set to true')
|
|
|
|
parser.add_argument('--optional-uses-library', dest='optional_uses_libraries', action='append',
|
|
|
|
help='specify additional <uses-library> tag to add. android:requred is set to false')
|
2018-08-28 13:41:01 +02:00
|
|
|
parser.add_argument('--uses-non-sdk-api', dest='uses_non_sdk_api', action='store_true',
|
|
|
|
help='manifest is for a package built against the platform')
|
2020-02-12 02:27:19 +01:00
|
|
|
parser.add_argument('--logging-parent', dest='logging_parent', default='',
|
|
|
|
help=('specify logging parent as an additional <meta-data> tag. '
|
|
|
|
'This value is ignored if the logging_parent meta-data tag is present.'))
|
2019-01-29 22:00:33 +01:00
|
|
|
parser.add_argument('--use-embedded-dex', dest='use_embedded_dex', action='store_true',
|
|
|
|
help=('specify if the app wants to use embedded dex and avoid extracted,'
|
2019-02-06 06:55:21 +01:00
|
|
|
'locally compiled code. Must not conflict if already declared '
|
2019-01-29 22:00:33 +01:00
|
|
|
'in the manifest.'))
|
2019-02-06 06:55:21 +01:00
|
|
|
parser.add_argument('--extract-native-libs', dest='extract_native_libs',
|
|
|
|
default=None, type=lambda x: (str(x).lower() == 'true'),
|
|
|
|
help=('specify if the app wants to use embedded native libraries. Must not conflict '
|
|
|
|
'if already declared in the manifest.'))
|
2019-05-31 00:51:14 +02:00
|
|
|
parser.add_argument('--has-no-code', dest='has_no_code', action='store_true',
|
|
|
|
help=('adds hasCode="false" attribute to application. Ignored if application elem '
|
|
|
|
'already has a hasCode attribute.'))
|
2018-06-08 01:46:02 +02:00
|
|
|
parser.add_argument('input', help='input AndroidManifest.xml file')
|
2018-06-18 04:01:00 +02:00
|
|
|
parser.add_argument('output', help='output AndroidManifest.xml file')
|
2018-06-08 01:46:02 +02:00
|
|
|
return parser.parse_args()
|
|
|
|
|
|
|
|
|
2018-09-10 22:35:13 +02:00
|
|
|
def raise_min_sdk_version(doc, min_sdk_version, target_sdk_version, library):
|
2018-06-08 01:46:02 +02:00
|
|
|
"""Ensure the manifest contains a <uses-sdk> tag with a minSdkVersion.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
doc: The XML document. May be modified by this function.
|
2018-09-10 22:35:13 +02:00
|
|
|
min_sdk_version: The requested minSdkVersion attribute.
|
|
|
|
target_sdk_version: The requested targetSdkVersion attribute.
|
2019-05-20 22:14:18 +02:00
|
|
|
library: True if the manifest is for a library.
|
2018-06-08 01:46:02 +02:00
|
|
|
Raises:
|
|
|
|
RuntimeError: invalid manifest
|
|
|
|
"""
|
|
|
|
|
|
|
|
manifest = parse_manifest(doc)
|
|
|
|
|
|
|
|
# Get or insert the uses-sdk element
|
|
|
|
uses_sdk = get_children_with_tag(manifest, 'uses-sdk')
|
|
|
|
if len(uses_sdk) > 1:
|
|
|
|
raise RuntimeError('found multiple uses-sdk elements')
|
|
|
|
elif len(uses_sdk) == 1:
|
|
|
|
element = uses_sdk[0]
|
|
|
|
else:
|
|
|
|
element = doc.createElement('uses-sdk')
|
2018-06-18 04:01:00 +02:00
|
|
|
indent = get_indent(manifest.firstChild, 1)
|
2018-06-08 01:46:02 +02:00
|
|
|
manifest.insertBefore(element, manifest.firstChild)
|
|
|
|
|
|
|
|
# Insert an indent before uses-sdk to line it up with the indentation of the
|
|
|
|
# other children of the <manifest> tag.
|
|
|
|
manifest.insertBefore(doc.createTextNode(indent), manifest.firstChild)
|
|
|
|
|
2018-07-24 23:51:30 +02:00
|
|
|
# Get or insert the minSdkVersion attribute. If it is already present, make
|
|
|
|
# sure it as least the requested value.
|
2018-06-08 01:46:02 +02:00
|
|
|
min_attr = element.getAttributeNodeNS(android_ns, 'minSdkVersion')
|
|
|
|
if min_attr is None:
|
|
|
|
min_attr = doc.createAttributeNS(android_ns, 'android:minSdkVersion')
|
2018-09-10 22:35:13 +02:00
|
|
|
min_attr.value = min_sdk_version
|
2018-06-08 01:46:02 +02:00
|
|
|
element.setAttributeNode(min_attr)
|
2018-07-24 23:51:30 +02:00
|
|
|
else:
|
2018-09-10 22:35:13 +02:00
|
|
|
if compare_version_gt(min_sdk_version, min_attr.value):
|
|
|
|
min_attr.value = min_sdk_version
|
2018-06-08 01:46:02 +02:00
|
|
|
|
2018-07-24 23:51:30 +02:00
|
|
|
# Insert the targetSdkVersion attribute if it is missing. If it is already
|
|
|
|
# present leave it as is.
|
|
|
|
target_attr = element.getAttributeNodeNS(android_ns, 'targetSdkVersion')
|
|
|
|
if target_attr is None:
|
|
|
|
target_attr = doc.createAttributeNS(android_ns, 'android:targetSdkVersion')
|
|
|
|
if library:
|
2018-10-02 00:15:51 +02:00
|
|
|
# TODO(b/117122200): libraries shouldn't set targetSdkVersion at all, but
|
|
|
|
# ManifestMerger treats minSdkVersion="Q" as targetSdkVersion="Q" if it
|
|
|
|
# is empty. Set it to something low so that it will be overriden by the
|
|
|
|
# main manifest, but high enough that it doesn't cause implicit
|
|
|
|
# permissions grants.
|
2021-01-13 04:02:03 +01:00
|
|
|
target_attr.value = '16'
|
2018-07-24 23:51:30 +02:00
|
|
|
else:
|
2018-09-10 22:35:13 +02:00
|
|
|
target_attr.value = target_sdk_version
|
2018-07-24 23:51:30 +02:00
|
|
|
element.setAttributeNode(target_attr)
|
2018-06-08 01:46:02 +02:00
|
|
|
|
|
|
|
|
2020-02-12 02:27:19 +01:00
|
|
|
def add_logging_parent(doc, logging_parent_value):
|
|
|
|
"""Add logging parent as an additional <meta-data> tag.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
doc: The XML document. May be modified by this function.
|
|
|
|
logging_parent_value: A string representing the logging
|
|
|
|
parent value.
|
|
|
|
Raises:
|
|
|
|
RuntimeError: Invalid manifest
|
|
|
|
"""
|
|
|
|
manifest = parse_manifest(doc)
|
|
|
|
|
|
|
|
logging_parent_key = 'android.content.pm.LOGGING_PARENT'
|
|
|
|
elems = get_children_with_tag(manifest, 'application')
|
|
|
|
application = elems[0] if len(elems) == 1 else None
|
|
|
|
if len(elems) > 1:
|
|
|
|
raise RuntimeError('found multiple <application> tags')
|
|
|
|
elif not elems:
|
|
|
|
application = doc.createElement('application')
|
|
|
|
indent = get_indent(manifest.firstChild, 1)
|
|
|
|
first = manifest.firstChild
|
|
|
|
manifest.insertBefore(doc.createTextNode(indent), first)
|
|
|
|
manifest.insertBefore(application, first)
|
|
|
|
|
|
|
|
indent = get_indent(application.firstChild, 2)
|
|
|
|
|
|
|
|
last = application.lastChild
|
|
|
|
if last is not None and last.nodeType != minidom.Node.TEXT_NODE:
|
|
|
|
last = None
|
|
|
|
|
|
|
|
if not find_child_with_attribute(application, 'meta-data', android_ns,
|
|
|
|
'name', logging_parent_key):
|
|
|
|
ul = doc.createElement('meta-data')
|
|
|
|
ul.setAttributeNS(android_ns, 'android:name', logging_parent_key)
|
|
|
|
ul.setAttributeNS(android_ns, 'android:value', logging_parent_value)
|
|
|
|
application.insertBefore(doc.createTextNode(indent), last)
|
|
|
|
application.insertBefore(ul, last)
|
|
|
|
last = application.lastChild
|
|
|
|
|
|
|
|
# align the closing tag with the opening tag if it's not
|
|
|
|
# indented
|
|
|
|
if last and last.nodeType != minidom.Node.TEXT_NODE:
|
|
|
|
indent = get_indent(application.previousSibling, 1)
|
|
|
|
application.appendChild(doc.createTextNode(indent))
|
|
|
|
|
|
|
|
|
2018-10-16 04:00:04 +02:00
|
|
|
def add_uses_libraries(doc, new_uses_libraries, required):
|
|
|
|
"""Add additional <uses-library> tags
|
2018-06-18 04:01:00 +02:00
|
|
|
|
|
|
|
Args:
|
|
|
|
doc: The XML document. May be modified by this function.
|
|
|
|
new_uses_libraries: The names of libraries to be added by this function.
|
2018-10-16 04:00:04 +02:00
|
|
|
required: The value of android:required attribute. Can be true or false.
|
2018-06-18 04:01:00 +02:00
|
|
|
Raises:
|
|
|
|
RuntimeError: Invalid manifest
|
|
|
|
"""
|
|
|
|
|
|
|
|
manifest = parse_manifest(doc)
|
|
|
|
elems = get_children_with_tag(manifest, 'application')
|
|
|
|
application = elems[0] if len(elems) == 1 else None
|
|
|
|
if len(elems) > 1:
|
|
|
|
raise RuntimeError('found multiple <application> tags')
|
|
|
|
elif not elems:
|
|
|
|
application = doc.createElement('application')
|
|
|
|
indent = get_indent(manifest.firstChild, 1)
|
|
|
|
first = manifest.firstChild
|
|
|
|
manifest.insertBefore(doc.createTextNode(indent), first)
|
|
|
|
manifest.insertBefore(application, first)
|
|
|
|
|
|
|
|
indent = get_indent(application.firstChild, 2)
|
|
|
|
|
|
|
|
last = application.lastChild
|
|
|
|
if last is not None and last.nodeType != minidom.Node.TEXT_NODE:
|
|
|
|
last = None
|
|
|
|
|
|
|
|
for name in new_uses_libraries:
|
|
|
|
if find_child_with_attribute(application, 'uses-library', android_ns,
|
|
|
|
'name', name) is not None:
|
|
|
|
# If the uses-library tag of the same 'name' attribute value exists,
|
|
|
|
# respect it.
|
|
|
|
continue
|
|
|
|
|
|
|
|
ul = doc.createElement('uses-library')
|
|
|
|
ul.setAttributeNS(android_ns, 'android:name', name)
|
2018-10-16 04:00:04 +02:00
|
|
|
ul.setAttributeNS(android_ns, 'android:required', str(required).lower())
|
2018-06-18 04:01:00 +02:00
|
|
|
|
|
|
|
application.insertBefore(doc.createTextNode(indent), last)
|
|
|
|
application.insertBefore(ul, last)
|
|
|
|
|
|
|
|
# align the closing tag with the opening tag if it's not
|
|
|
|
# indented
|
|
|
|
if application.lastChild.nodeType != minidom.Node.TEXT_NODE:
|
|
|
|
indent = get_indent(application.previousSibling, 1)
|
|
|
|
application.appendChild(doc.createTextNode(indent))
|
|
|
|
|
2019-05-20 22:14:18 +02:00
|
|
|
|
2018-08-28 13:41:01 +02:00
|
|
|
def add_uses_non_sdk_api(doc):
|
|
|
|
"""Add android:usesNonSdkApi=true attribute to <application>.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
doc: The XML document. May be modified by this function.
|
|
|
|
Raises:
|
|
|
|
RuntimeError: Invalid manifest
|
|
|
|
"""
|
|
|
|
|
|
|
|
manifest = parse_manifest(doc)
|
|
|
|
elems = get_children_with_tag(manifest, 'application')
|
|
|
|
application = elems[0] if len(elems) == 1 else None
|
|
|
|
if len(elems) > 1:
|
|
|
|
raise RuntimeError('found multiple <application> tags')
|
|
|
|
elif not elems:
|
|
|
|
application = doc.createElement('application')
|
|
|
|
indent = get_indent(manifest.firstChild, 1)
|
|
|
|
first = manifest.firstChild
|
|
|
|
manifest.insertBefore(doc.createTextNode(indent), first)
|
|
|
|
manifest.insertBefore(application, first)
|
|
|
|
|
|
|
|
attr = application.getAttributeNodeNS(android_ns, 'usesNonSdkApi')
|
|
|
|
if attr is None:
|
|
|
|
attr = doc.createAttributeNS(android_ns, 'android:usesNonSdkApi')
|
|
|
|
attr.value = 'true'
|
|
|
|
application.setAttributeNode(attr)
|
|
|
|
|
2018-06-18 04:01:00 +02:00
|
|
|
|
2019-01-29 22:00:33 +01:00
|
|
|
def add_use_embedded_dex(doc):
|
2018-10-22 20:16:25 +02:00
|
|
|
manifest = parse_manifest(doc)
|
|
|
|
elems = get_children_with_tag(manifest, 'application')
|
|
|
|
application = elems[0] if len(elems) == 1 else None
|
|
|
|
if len(elems) > 1:
|
|
|
|
raise RuntimeError('found multiple <application> tags')
|
|
|
|
elif not elems:
|
|
|
|
application = doc.createElement('application')
|
|
|
|
indent = get_indent(manifest.firstChild, 1)
|
|
|
|
first = manifest.firstChild
|
|
|
|
manifest.insertBefore(doc.createTextNode(indent), first)
|
|
|
|
manifest.insertBefore(application, first)
|
|
|
|
|
2019-01-29 22:00:33 +01:00
|
|
|
attr = application.getAttributeNodeNS(android_ns, 'useEmbeddedDex')
|
2018-10-22 20:16:25 +02:00
|
|
|
if attr is None:
|
2019-01-29 22:00:33 +01:00
|
|
|
attr = doc.createAttributeNS(android_ns, 'android:useEmbeddedDex')
|
2018-10-22 20:16:25 +02:00
|
|
|
attr.value = 'true'
|
|
|
|
application.setAttributeNode(attr)
|
|
|
|
elif attr.value != 'true':
|
2019-01-29 22:00:33 +01:00
|
|
|
raise RuntimeError('existing attribute mismatches the option of --use-embedded-dex')
|
2018-10-22 20:16:25 +02:00
|
|
|
|
|
|
|
|
2019-02-06 06:55:21 +01:00
|
|
|
def add_extract_native_libs(doc, extract_native_libs):
|
|
|
|
manifest = parse_manifest(doc)
|
|
|
|
elems = get_children_with_tag(manifest, 'application')
|
|
|
|
application = elems[0] if len(elems) == 1 else None
|
|
|
|
if len(elems) > 1:
|
|
|
|
raise RuntimeError('found multiple <application> tags')
|
|
|
|
elif not elems:
|
|
|
|
application = doc.createElement('application')
|
|
|
|
indent = get_indent(manifest.firstChild, 1)
|
|
|
|
first = manifest.firstChild
|
|
|
|
manifest.insertBefore(doc.createTextNode(indent), first)
|
|
|
|
manifest.insertBefore(application, first)
|
|
|
|
|
|
|
|
value = str(extract_native_libs).lower()
|
|
|
|
attr = application.getAttributeNodeNS(android_ns, 'extractNativeLibs')
|
|
|
|
if attr is None:
|
|
|
|
attr = doc.createAttributeNS(android_ns, 'android:extractNativeLibs')
|
|
|
|
attr.value = value
|
|
|
|
application.setAttributeNode(attr)
|
|
|
|
elif attr.value != value:
|
|
|
|
raise RuntimeError('existing attribute extractNativeLibs="%s" conflicts with --extract-native-libs="%s"' %
|
|
|
|
(attr.value, value))
|
|
|
|
|
|
|
|
|
2019-05-31 00:51:14 +02:00
|
|
|
def set_has_code_to_false(doc):
|
|
|
|
manifest = parse_manifest(doc)
|
|
|
|
elems = get_children_with_tag(manifest, 'application')
|
|
|
|
application = elems[0] if len(elems) == 1 else None
|
|
|
|
if len(elems) > 1:
|
|
|
|
raise RuntimeError('found multiple <application> tags')
|
|
|
|
elif not elems:
|
|
|
|
application = doc.createElement('application')
|
|
|
|
indent = get_indent(manifest.firstChild, 1)
|
|
|
|
first = manifest.firstChild
|
|
|
|
manifest.insertBefore(doc.createTextNode(indent), first)
|
|
|
|
manifest.insertBefore(application, first)
|
|
|
|
|
|
|
|
attr = application.getAttributeNodeNS(android_ns, 'hasCode')
|
|
|
|
if attr is not None:
|
|
|
|
# Do nothing if the application already has a hasCode attribute.
|
|
|
|
return
|
|
|
|
attr = doc.createAttributeNS(android_ns, 'android:hasCode')
|
|
|
|
attr.value = 'false'
|
|
|
|
application.setAttributeNode(attr)
|
|
|
|
|
|
|
|
|
2018-06-08 01:46:02 +02:00
|
|
|
def main():
|
|
|
|
"""Program entry point."""
|
|
|
|
try:
|
|
|
|
args = parse_args()
|
|
|
|
|
|
|
|
doc = minidom.parse(args.input)
|
|
|
|
|
|
|
|
ensure_manifest_android_ns(doc)
|
|
|
|
|
2018-09-10 22:35:13 +02:00
|
|
|
if args.raise_min_sdk_version:
|
|
|
|
raise_min_sdk_version(doc, args.min_sdk_version, args.target_sdk_version, args.library)
|
2018-06-08 01:46:02 +02:00
|
|
|
|
2018-06-18 04:01:00 +02:00
|
|
|
if args.uses_libraries:
|
2018-10-16 04:00:04 +02:00
|
|
|
add_uses_libraries(doc, args.uses_libraries, True)
|
|
|
|
|
|
|
|
if args.optional_uses_libraries:
|
|
|
|
add_uses_libraries(doc, args.optional_uses_libraries, False)
|
2018-06-18 04:01:00 +02:00
|
|
|
|
2018-08-28 13:41:01 +02:00
|
|
|
if args.uses_non_sdk_api:
|
|
|
|
add_uses_non_sdk_api(doc)
|
|
|
|
|
2020-02-12 02:27:19 +01:00
|
|
|
if args.logging_parent:
|
|
|
|
add_logging_parent(doc, args.logging_parent)
|
|
|
|
|
2019-01-29 22:00:33 +01:00
|
|
|
if args.use_embedded_dex:
|
|
|
|
add_use_embedded_dex(doc)
|
2018-10-22 20:16:25 +02:00
|
|
|
|
2019-05-31 00:51:14 +02:00
|
|
|
if args.has_no_code:
|
|
|
|
set_has_code_to_false(doc)
|
|
|
|
|
2019-02-06 06:55:21 +01:00
|
|
|
if args.extract_native_libs is not None:
|
|
|
|
add_extract_native_libs(doc, args.extract_native_libs)
|
|
|
|
|
2018-06-08 01:46:02 +02:00
|
|
|
with open(args.output, 'wb') as f:
|
|
|
|
write_xml(f, doc)
|
|
|
|
|
|
|
|
# pylint: disable=broad-except
|
|
|
|
except Exception as err:
|
|
|
|
print('error: ' + str(err), file=sys.stderr)
|
|
|
|
sys.exit(-1)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|