source: trunk/AndroidManifest.template.xml

Last change on this file was 2, checked in by chronos, 5 years ago
  • Added: Application which can connect to API and read credit status and show calls history.
File size: 1.9 KB
Line 
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
9 <uses-sdk android:minSdkVersion="%minSdkVersion%" android:targetSdkVersion="%targetSdkVersion%" />
10 <%uses-permission%>
11 <uses-feature android:glEsVersion="0x00020000" android:required="True"/>
12 <application android:persistent="%persistent%"
13 android:restoreAnyVersion="%restoreAnyVersion%"
14 android:label="%label%"
15 android:debuggable="%debuggable%"
16 android:largeHeap="%largeHeap%"
17 android:icon="%icon%"
18 android:theme="%theme%"
19 android:hardwareAccelerated="%hardwareAccelerated%"
20 android:resizeableActivity="false">
21
22 <%provider%>
23 <%application-meta-data%>
24 <%services%>
25 <!-- Our activity is a subclass of the built-in NativeActivity framework class.
26 This will take care of integrating with our NDK code. -->
27 <activity android:name="com.embarcadero.firemonkey.FMXNativeActivity"
28 android:label="%activityLabel%"
29 android:configChanges="orientation|keyboard|keyboardHidden|screenSize"
30 android:launchMode="singleTask">
31 <!-- Tell NativeActivity the name of our .so -->
32 <meta-data android:name="android.app.lib_name"
33 android:value="%libNameValue%" />
34 <intent-filter>
35 <action android:name="android.intent.action.MAIN" />
36 <category android:name="android.intent.category.LAUNCHER" />
37 </intent-filter>
38 </activity>
39 <%activity%>
40 <%receivers%>
41 </application>
42</manifest>
43<!-- END_INCLUDE(manifest) -->
Note: See TracBrowser for help on using the repository browser.