Ian McKinnon
Ian McKinnon

Reputation: 61

Why is Delphi 10.3 App crashing in Android 11?

My fairly simple app has been running successfully in all versions of Android up to version 10. When installed in Android 11 it only shows the splash screen and then ends. Under the debugger this is still all that happens. The app is installed and the splash screen appears and closes. A breakpoint at the start of initializing and creating the main screen is never reached. As far as I can tell from documentation on Android upgrade (to 11) there does not seem to be anything I need to do with sdk versions etc. are concerned. Note eliminating the splash screen does not change the result except that a blank screen appears before the crash.

How do I find out what is causing this problem?

Upvotes: 2

Views: 2515

Answers (1)

BDuarte
BDuarte

Reputation: 129

The highest version that Delphi 10.3.3 supports is Android 10 (API 29).

http://docwiki.embarcadero.com/PlatformStatus/en/Main_Page

So if you want to use Android 11, you will have to install Delphi 10.4

Upvotes: 2

Related Questions