Skip to content

Commit 326bd3f

Browse files
committed
Updates to the rhodeside, now uses TImage32
1 parent 4a51dbe commit 326bd3f

File tree

227 files changed

+94514
-750
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

227 files changed

+94514
-750
lines changed
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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+
<%uses-libraries%>
25+
<%services%>
26+
<!-- Our activity is a subclass of the built-in NativeActivity framework class.
27+
This will take care of integrating with our NDK code. -->
28+
<activity android:name="com.embarcadero.firemonkey.FMXNativeActivity"
29+
android:label="%activityLabel%"
30+
android:configChanges="orientation|keyboard|keyboardHidden|screenSize"
31+
android:launchMode="singleTask">
32+
<!-- Tell NativeActivity the name of our .so -->
33+
<meta-data android:name="android.app.lib_name"
34+
android:value="%libNameValue%" />
35+
<intent-filter>
36+
<action android:name="android.intent.action.MAIN" />
37+
<category android:name="android.intent.category.LAUNCHER" />
38+
</intent-filter>
39+
</activity>
40+
<%activity%>
41+
<%receivers%>
42+
</application>
43+
</manifest>
44+
<!-- END_INCLUDE(manifest) -->
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
program FMX1;
2+
3+
uses
4+
System.StartUpCopy,
5+
FMX.Forms,
6+
main in 'main.pas' {MainForm};
7+
8+
{$I Img32.inc}
9+
{$R ..\Resources.res}
10+
11+
begin
12+
{$IFDEF REPORTMEMORYLEAKS}
13+
ReportMemoryLeaksOnShutdown := true;
14+
{$ENDIF}
15+
Application.Initialize;
16+
Application.CreateForm(TMainForm, MainForm);
17+
Application.Run;
18+
end.

RhodusIDE/Image32/Examples/FMX1/FMX1.dproj

Lines changed: 1648 additions & 0 deletions
Large diffs are not rendered by default.
58.1 KB
Binary file not shown.
110 KB
Loading
32 KB
Loading
3.31 KB
Loading
5.27 KB
Loading
10.6 KB
Loading
17.4 KB
Loading

0 commit comments

Comments
 (0)