Android Tip on Delphi Update

Recently I updated from Delphi 11 to Delphi 11.1 and was surprised to find my Android Application couldn’t deploy to the phone anymore. I was getting the following error: [PAClient Error] Error: E7688 Caused by: java.nio.file.NoSuchFileException: c:\program files (x86)\embarcadero\studio\22.0\lib\android\Release\google-play-billing.dex.jar In fact, there were lots of missing files: The solution was to right click on the […]

FMX Android Deployment Tip

To deploy an FMX application you need to configure the deployment settings for your project. This can get a little tedious when working with multiple platforms. For example, if you want to deploy to an Android phone in debug and release mode for 64 bit, you have to configure settings for both debug and release. […]

FMX AppBar Touch Sensitivity Tip

FMX Android often misses tap events, even if a control gives a visual indication that a tap occurred. This can become frustrating for the user, requiring them to tap two, sometimes three times. I had a suspicion that FMX was receiving the touch event correctly, but had problems identifying less precise user gestures. I had […]