Sha256: 9c792fedec2c16c29124cec1eca209bdf8bd768f45c090259ce24ab6cca3408b
Contents?: true
Size: 1.61 KB
Versions: 14
Compression:
Stored size: 1.61 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="2" android:versionName="1.3.2.4"> <!-- 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="TestProject" /> <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
14 entries across 14 versions & 1 rubygems