79 lines
2.7 KiB
XML
79 lines
2.7 KiB
XML
<?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|screenLayout|uiMode"
|
|
android:exported="true"
|
|
android:label="%activityLabel%"
|
|
android:launchMode="singleTask" >
|
|
|
|
<!-- 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%>
|
|
</application>
|
|
</manifest>
|
|
<!-- END_INCLUDE(manifest) -->
|