blob: 7acbbd25d5e1673a3173baae5e3533bd6b147d9b [file] [log] [blame]
{% extends "chrome/android/java/AndroidManifest.xml" %}
## Copyright 2018 The Chromium Authors. All rights reserved.
## 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 extra_application_attributes %}
{{ super() }}
android:multiArch="true"
android:extractNativeLibs="false"
{{use32bitAbi|default('')}}
{% endblock %}
{% block extra_keyset_definitions %}
<!-- No keyset definitions should exist for any trichrome apks -->
{% endblock %}
{% block extra_application_definitions %}
{{ super() }}
<uses-static-library
android:name="{{ trichrome_library }}"
android:version="{{ trichrome_version }}"
android:certDigest="{{ trichrome_certdigest }}" />
{% endblock %}