When compiling an application for iOS, I'm getting the error below:
[DCC Error] Base.X.pas(51): E2029 Expression expected but ';' found
[DCC Fatal Error] Base.Types.pas(25): F2063 Could not compile used unit 'Base.X.pas'
For Windows and MacOS the application compiles without errors.
My application is very simple:
:
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, Exversion.Converters.Analytix;
:
:
procedure TForm1.Button1Click(Sender: TObject);
var
f, texf: string;
converter: TAnalyticsConverter;
begin
f:= Edit1.Text;
converter:= TAnalyticsTeXConverter.Create;
texf:= converter.Convert(f);
memo1.Lines.Text:=textf;
end;
:
:
How to solve this problem?
I'm using:
TMS Analytics & Physics Pack version 2.8.0.0
Delphi 10.3 Rio (Update 1).