S: String[50];
I compile everything under Win32 / 64. When compiling for Android - error:
E2029 ';' expected but '[' found.
Are there other options to restrict the string to use in a typed file?
S: String[50];
I compile everything under Win32 / 64. When compiling for Android - error:
E2029 ';' expected but '[' found.
Are there other options to restrict the string to use in a typed file?
String[50]
not supported on mobile platforms.
You can certainly try using an array
... S: array [0..49] of Byte; ...
Details can be found here . Also on docwiki.embarcadero.com it is well described how to migrate code to mobile platforms.
Source: https://ru.stackoverflow.com/questions/561895/
All Articles