-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a7f73c1
commit b4a2f28
Showing
21 changed files
with
2,277 additions
and
3,146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- BEGIN_INCLUDE(manifest) --> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="%package%" | ||
android:versionCode="%versionCode%" | ||
android:versionName="%versionName%" | ||
android:installLocation="%installLocation%"> | ||
|
||
<!-- This is the platform API where NativeActivity was introduced. --> | ||
<uses-sdk android:minSdkVersion="%minSdkVersion%" android:targetSdkVersion="%targetSdkVersion%" /> | ||
<%uses-permission%> | ||
<uses-feature android:glEsVersion="0x00020000" android:required="True"/> | ||
<application android:persistent="%persistent%" | ||
android:restoreAnyVersion="%restoreAnyVersion%" | ||
android:label="%label%" | ||
android:debuggable="%debuggable%" | ||
android:largeHeap="%largeHeap%" | ||
android:icon="%icon%" | ||
android:theme="%theme%" | ||
android:hardwareAccelerated="%hardwareAccelerated%"> | ||
|
||
<%application-meta-data%> | ||
<%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:label="%activityLabel%" | ||
android:configChanges="orientation|keyboard|keyboardHidden|screenSize" | ||
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) --> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<%appSandboxKeys%> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<%getTaskAllowKey%> | ||
<%applicationIdentifier%> | ||
<%pushNotificationKey%> | ||
<%keychainAccessGroups%> | ||
</dict> | ||
</plist> |
Oops, something went wrong.