Sha256: 6693a5dd984a5e918feb51d4fee53f2c8383d400ff1706fca81e77aa93f5b5a7
Contents?: true
Size: 1.64 KB
Versions: 24
Compression:
Stored size: 1.64 KB
Contents
<?xml version="1.0" encoding="utf-8"?> <!-- BEGIN_INCLUDE(manifest) --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.embarcadero.HelloWorld" android:versionCode="<%=version.release_num%>" android:versionName="<%=version%>"> <!-- This is the platform API where NativeActivity was introduced. --> <uses-sdk android:minSdkVersion="9" /> <application android:persistent="False" android:restoreAnyVersion="False" android:label="HelloWorld" android:installLocation="preferExternal" android:debuggable="True" android:largeHeap="False" android:icon="@drawable/ic_launcher" android:theme="@android:style/Theme.NoTitleBar"> <!-- 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:label="HelloWorld" android:configChanges="orientation|keyboardHidden"> <!-- Tell NativeActivity the name of our .so --> <meta-data android:name="android.app.lib_name" android:value="<%=libname%>" /> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <receiver android:name="com.embarcadero.firemonkey.notifications.FMXNotificationAlarm" /> </application> </manifest> <!-- END_INCLUDE(manifest) -->
Version data entries
24 entries across 24 versions & 1 rubygems