-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAndroidManifest.template.xml
More file actions
78 lines (70 loc) · 2.69 KB
/
AndroidManifest.template.xml
File metadata and controls
78 lines (70 loc) · 2.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?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) -->