Created
July 23, 2023 14:49
-
-
Save an01f01/4a2faae8bcd7c1102535eb8b50cd3d8b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<!-- BEGIN_INCLUDE(manifest) --> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="%package%" | |
android:versionCode="%versionCode%" | |
android:versionName="%versionName%" | |
android:installLocation="%installLocation%"> | |
<uses-sdk android:minSdkVersion="%minSdkVersion%" android:targetSdkVersion="33" /> | |
<%uses-permission%> | |
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/> | |
<uses-feature android:glEsVersion="0x00020000" android:required="true"/> | |
<queries> | |
<%queries-child-elements%> | |
</queries> | |
<application | |
android:persistent="%persistent%" | |
android:restoreAnyVersion="%restoreAnyVersion%" | |
android:label="%label%" | |
android:debuggable="%debuggable%" | |
android:largeHeap="%largeHeap%" | |
android:icon="%icon%" | |
android:theme="%theme%" | |
android:hardwareAccelerated="%hardwareAccelerated%" | |
android:resizeableActivity="false" | |
android:requestLegacyExternalStorage="true"> | |
<%provider%> | |
<%application-meta-data%> | |
<%uses-libraries%> | |
<%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:exported="true" | |
android:label="%activityLabel%" | |
android:configChanges="orientation|keyboard|keyboardHidden|screenSize" | |
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) --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment