{% extends "chrome/android/java/AndroidManifest.xml" %}
{% import 'android_webview/nonembedded/java/AndroidManifest.xml' as webview %}
## Copyright 2016 The Chromium Authors
## Use of this source code is governed by a BSD-style license that can be
## found in the LICENSE file.
## Note: This is a jinja2 template, processed at build time into the final manifest.
##
{% block application_name %}org.chromium.chrome.browser.base.SplitMonochromeApplication{% endblock %}
##
## The below is same as internal version, it seems that jinja doesn't have
## a good way to share it, this code has to be duplicated.
##
{% block extra_application_attributes %}
{{ super() }}
android:multiArch="true"
android:extractNativeLibs="false"
{% if force_32_bit is defined and force_32_bit == 'true' %}
android:use32bitAbi="true"
{% endif %}
{% endblock %}
{% block extra_keyset_definitions %}
<!-- No keyset definitions should exist for any monochrome apks -->
{% endblock %}
{% block base_application_definitions %}
{{ super() }}
{{ webview.common(manifest_package, webview_library) }}
{% endblock %}