I have a FireMonkey app developed using Delphi 11.3 (version 28.0.48361.3236) where I have a RESTRequest component for sending GET requests. Running on Windows everything works fine, but when I run the same app on an Android device the app is executing a POST request instead of the GET request. Before I execute the request I set
RESTRequest1.Method := rmGET;
but the RESTRequest is sending a POST anyway on Android. The Android SDK is version 25.2.5, level 31.
Any idea how I can solve this?