I have an empty form that I created for multi device app. No matter what I do the WEBLib units keeps comming back, any idea on how to stop this behavior? Thanks
unit MainForm;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, XData.Client, WEBLib.DataGrid.Common,
WEBLib.DataGrid.DataAdapter.Base, WEBLib.DataGrid.DataAdapter.XData;
type
TForm1 = class(TForm)
private
FClientConn: TXDataClient;
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.fmx}
end.