Advertisement
EdsonVasc

Android.Manifest.Template

Feb 3rd, 2024
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.02 KB | Source Code | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- BEGIN_INCLUDE(manifest) -->
  3. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  4.    package="%package%"
  5.    android:versionCode="%versionCode%"
  6.    android:versionName="%versionName%"
  7.    android:installLocation="%installLocation%">
  8.     <uses-sdk android:minSdkVersion="%minSdkVersion%" android:targetSdkVersion="33" />
  9. <%uses-permission%>
  10.     <uses-feature android:glEsVersion="0x00020000" android:required="true"/>
  11.     <queries>
  12. <%queries-child-elements%>
  13.     </queries>
  14.     <application
  15.        android:persistent="%persistent%"
  16.        android:restoreAnyVersion="%restoreAnyVersion%"
  17.        android:label="%label%"
  18.        android:debuggable="%debuggable%"
  19.        android:largeHeap="%largeHeap%"
  20.        android:icon="%icon%"
  21.        android:theme="%theme%"
  22.        android:hardwareAccelerated="%hardwareAccelerated%"
  23.        android:resizeableActivity="false"
  24.        android:usesCleartextTraffic="true"
  25.        android:requestLegacyExternalStorage="true">
  26. <%provider%>
  27. <%application-meta-data%>
  28. <%uses-libraries%>
  29. <%services%>
  30.         <!-- Our activity is a subclass of the built-in NativeActivity framework class.
  31.             This will take care of integrating with our NDK code. -->
  32.         <activity
  33.            android:name="com.embarcadero.firemonkey.FMXNativeActivity"
  34.            android:exported="true"
  35.            android:label="%activityLabel%"
  36.            android:configChanges="orientation|keyboard|keyboardHidden|screenSize"
  37.            android:launchMode="singleTask">
  38.             <!-- Tell NativeActivity the name of our .so -->
  39.             <meta-data android:name="android.app.lib_name" android:value="%libNameValue%" />
  40.  
  41.             <intent-filter>
  42.                 <action android:name="android.intent.action.MAIN" />
  43.  
  44.                 <category android:name="android.intent.category.LAUNCHER" />
  45.             </intent-filter>
  46.         </activity>
  47. <%activity%>
  48. <%receivers%>
  49.     </application>
  50. </manifest>
  51. <!-- END_INCLUDE(manifest) -->
  52.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement