Under delphi and android my app raise this error: E/LogError(22894): Access violation at address 830330D2, accessing address 00000000
Is their any way to know to with line of code is connected the address 830330D2 ?
Under delphi and android my app raise this error: E/LogError(22894): Access violation at address 830330D2, accessing address 00000000
Is their any way to know to with line of code is connected the address 830330D2 ?
Have you generated a .MAP file? That's the typical (if slightly manual) way to connect an address to the line of code it pertains to, if indeed it is an address from within your code. Locate the closest address, taking account any implied starting offset.
You may need to look at this Stack Overflow answer in order to test it out, as I think Delphi 10.2 Tokyo still "makes it difficult" to access the required option. Basically plug in the command line compiler switch to generate a .MAP file into the IDE compiler options field.
Unfortunately I don't have an Android-capable product to hand to verify exact steps with the map file, but hopefully that will help you along the path.