delphimvcframework/samples/pushnotifications_mobileclient/PushNotificationsMobileClient.dpr

16 lines
300 B
ObjectPascal
Raw Normal View History

2016-11-07 14:32:57 +01:00
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.