1<?xml version="1.0" encoding="utf-8"?>
2<!--
3Copyright 2019 The Amber Authors.
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9    https://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16-->
17<!-- BEGIN_INCLUDE(manifest) -->
18<manifest xmlns:android="http://schemas.android.com/apk/res/android"
19 package="com.google.amber">
20
21  <!-- This is the platform API where NativeActivity was introduced. -->
22  <uses-sdk />
23
24  <!-- This .apk has no Java code itself, so set hasCode to false. -->
25  <application android:label="@string/app_name"
26   android:hasCode="false"
27   android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
28
29    <!-- Our activity is the built-in NativeActivity framework class.
30         This will take care of integrating with our NDK code. -->
31    <activity android:name="android.app.NativeActivity"
32     android:label="@string/app_name"
33     android:configChanges="orientation|keyboardHidden">
34      <!-- Tell NativeActivity the name of or .so -->
35      <meta-data android:name="android.app.lib_name"
36       android:value="amber_android" />
37      <intent-filter>
38        <action android:name="android.intent.action.MAIN" />
39        <category android:name="android.intent.category.LAUNCHER" />
40      </intent-filter>
41    </activity>
42  </application>
43
44</manifest>
45<!-- END_INCLUDE(manifest) -->
46