blob: 7c016160de56aa860af2f7117c93196f2775ceb2 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!-- 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.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="{{ manifest_package }}"
tools:ignore="MissingVersion">
<uses-sdk android:minSdkVersion="{{min_sdk_version}}" android:targetSdkVersion="{{target_sdk_version}}" />
<uses-feature android:glEsVersion="0x00020000" />
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
<!-- TODO(torne): we should specify an icon, roundIcon, and label from resources. -->
<application
android:label="Trichrome Library"
android:multiArch="true"
android:extractNativeLibs="false">
<static-library android:name="{{ trichrome_library }}" android:version="{{ trichrome_version }}" />
</application>
</manifest>