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