mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 00:05:53 +01:00
16 lines
300 B
ObjectPascal
16 lines
300 B
ObjectPascal
program PushNotificationsMobileClient;
|
|
|
|
uses
|
|
System.StartUpCopy,
|
|
FMX.Forms,
|
|
MainFormU in 'MainFormU.pas' {Form7};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.FormFactor.Orientations := [TFormOrientation.Portrait];
|
|
Application.CreateForm(TForm7, Form7);
|
|
Application.Run;
|
|
end.
|