<?
xml version="1.0" encoding="utf-8"?>
<!-- BEGIN_INCLUDE(manifest) -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="%
package%"
android:installLocation="%installLocation%"
android:versionCode="%versionCode%"
android:versionName="%versionName%" >
<uses-
sdk
android:minSdkVersion="%minSdkVersion%"
android:targetSdkVersion="%targetSdkVersion%" />
<%uses-permission%>
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
<queries>
<%queries-child-elements%>
</queries>
<application
android:debuggable="%debuggable%"
android:hardwareAccelerated="%hardwareAccelerated%"
android:icon="%icon%"
android:label="%label%"
android:largeHeap="%largeHeap%"
android:persistent="%persistent%"
android:requestLegacyExternalStorage="true"
android:resizeableActivity="true"
android:restoreAnyVersion="%restoreAnyVersion%"
android:theme="%theme%" >
<%provider%>
<%application-meta-data%>
<%uses-libraries%>
<!-- Trigger Google Play services to install the backported photo picker module. -->
<service
android:name="
com.google.android.gms.metadata.ModuleDependencies"
android:enabled="false"
android:exported="false"
tools:ignore="MissingClass" >
<intent-filter>
<action android:name="
com.google.android.gms.metadata.MODULE_DEPENDENCIES" />
</intent-filter>
<meta-data
android:name="photopicker_activity:0:required"
android:value="" />
</service>
<%services%>
<!--
Our activity is a subclass of the built-in NativeActivity framework class.
This will take care of integrating with our NDK code.
-->
<activity
android:name="
com.embarcadero.firemonkey.FMXNativeActivity"
android:configChanges="orientation|keyboard|keyboardHidden|screenSize"
android:exported="true"
android:label="%activityLabel%"
android:launchMode="singleTask"
android:lockTaskMode="always">
<!-- Tell NativeActivity the name of our .so -->
<meta-data
android:name="android.app.lib_name"
android:value="%libNameValue%" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<%activity%>
<%receivers%>
<receiver
android:exported="true"
android:name="
com.kiosk.app.BootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<receiver
android:name="
com.kiosk.admin.AdminReceiver"
android:exported="false"
android:permission="android.permission.BIND_DEVICE_ADMIN">
<meta-data
android:name="android.app.device_admin"
android:resource="@
xml\device_admin.xml"/>
<intent-filter>
<action android:name="android.app.action.DEVICE_ADMIN_ENABLED" />
<action android:name="android.app.action.PROFILE_PROVISIONING_COMPLETE"/>
</intent-filter>
</receiver>
</application>
</manifest>
<!-- END_INCLUDE(manifest) -->