Using Delphi 10 Seattle PE, FMX
While building my app for android, I get an internal error.
[DCC Fatal Error] GeneralHelpers.pas(106): F2084 Internal Error: AV712A0B7B-R71525000-0
[DCC Fatal Error] Exception EAccessViolation: Access violation at address 712AE170 in module 'compllvm.dll'. Read of address 00000018
[DCC Error] Onherstelbare fout (Exception from HRESULT: 0x8000FFFF (E_UNEXPECTED))
Same for iOS, but building and running the same source code for Windows (Win32 and Win64) works fine!
The compile process terminates at the end of my unit GeneralHelpers.pas, so not on a specific line. This unit contains a helper for type TStringArray = array of string, which compiled well under Android in the past.
The only specific thing I can think off, is that I use a self made package which I changed recently.
I think the compiler is confused and i have to reset something, but what?
I already did a "clean project" for both my package and my app and deleted the android directory for my app, in order to start a fresh build, but this did not help. Also going back several steps in history did not work.
I also uninstalled my package, rebuilt it and installed it again, but also no luck.
Searching google for "F2084 Internal Error" gave me several entries for earlier versions of Delphi (that should be solved in Delphi 10), but no specific solution for Delphi 10.
Any help please?