Jump to content

Dave Nottage

Members
  • Content Count

    1489
  • Joined

  • Last visited

  • Days Won

    36

Everything posted by Dave Nottage

  1. It will not work if you do not have the permissions checked in the project options.
  2. Dave Nottage

    .aab file to google playstore

    Can you give a link to the app on Play Store?
  3. The following worked fine for me: procedure TForm1.Button1Click(Sender: TObject); begin PermissionsService.RequestPermissions(['android.permission.READ_EXTERNAL_STORAGE', 'android.permission.WRITE_EXTERNAL_STORAGE'], procedure(const APermissions: TArray<string>; const AGrantResults: TArray<TPermissionStatus>) begin // NOTE: I am assuming the user granted permission, here! CreateFolder; end ); end; procedure TForm1.CreateFolder; var fn: string; begin fn := TPath.Combine(TPath.GetSharedDocumentsPath, 'OLA'); ForceDirectories(fn); if TDirectory.Exists(fn) then Button1.Text := 'OK' else Button1.Text := 'Failed'; end; Delphi 10.4.1, Android 11 device (Pixel3a)
  4. Dave Nottage

    Eliminate Touch Indicator

    From Android 6 you cannot change private secure settings, and "show_touches" is one of them.
  5. Dave Nottage

    10.4.1 Released today

    If you mean in relation to a bunch of API imports, that would have happened in 10.4.0
  6. Dave Nottage

    10.4.1 Released today

    2 days ago according to App Store app on my Mac. Haven't installed it yet - perhaps that's the issue for Sherlock?
  7. Dave Nottage

    10.4.1 Released today

    Worked OK here. What actually happens when you try?
  8. Dave Nottage

    Problem with Delphi RIO 10.3.3 and Google API Level 29

    You may need to add: android:requestLegacyExternalStorage="true" To the <application> tag in AndroidManifest.template.xml
  9. Dave Nottage

    Problem with Delphi RIO 10.3.3 and Google API Level 29

    What's the exact message?
  10. Dave Nottage

    Loading shared objects on Android

    Did you resolve the apparent permissions issue?
  11. Dave Nottage

    Local Fonts

    For 10.3.3 or earlier, please refer to: For 10.4, simply add the fonts to the deployment, with a remote path of assets\internal
  12. Dave Nottage

    Problem with Delphi RIO 10.3.3 and Google API Level 29

    For anyone following this thread, the relevant QP report is here: https://quality.embarcadero.com/browse/RSP-27218 As per my comment on the report (dated Aug 24), it would be possible to recompile System.pas (it needs a change to ICU.inc), however unfortunately, the files ex.android.arm.inc and ex.android.arm64.inc are not supplied, thus making it impossible without help from Embarcadero.
  13. Dave Nottage

    Authorization using Apple ID

    That's the plan. I have some other controls coming that will be included.
  14. Dave Nottage

    Authorization using Apple ID

    Did you follow the instructions in the ReadMe.txt file?
  15. Dave Nottage

    Authorization using Apple ID

    Yes, I have an implementation for it, and a while ago was seeking people to try it out. I haven't done anything to it for a while, however I have attached the work-in-progress to this reply. The plan is to include the final result into Kastri: https://github.com/DelphiWorlds/Kastri AppleSignin.zip
  16. Dave Nottage

    Bulding an app to test push alerts in iOS

    The best way forward is to download the repository: https://github.com/DelphiWorlds/KastriFree Either via the download link (from the green "Code" button), or preferably use a Git client, like Fork: https://git-fork.com/ Once you have the repository: Unzip Firebase.6.16.0.zip in the ThirdParty/Firebase/iOS folder. Put your GoogleServices.info.plist from your Firebase Console project in the Resources folder of the demo Load the demo and compile
  17. Dave Nottage

    Bulding an app to test push alerts in iOS

    It has been, yes. I'll help where I can
  18. Dave Nottage

    Bulding an app to test push alerts in iOS

    Push notifications using Firebase for iOS is yet to be implemented in Delphi. I have an implementation using Embarcadero's infrastructure, described here: https://delphiworlds.com/2020/01/expanding-embarcaderos-fcm-implementation-revisited/
  19. Dave Nottage

    Using a prior iOS or macOS SDK with Delphi

    Yes, in both cases, and thanks! I need to write more carefully 😉 Thanks for your input. I hope to have an answer in the next couple of days or so.
  20. Dave Nottage

    Using a prior iOS or macOS SDK with Delphi

    The picture does not show the folder that I am asking about. Please read my answers carefully.
  21. Dave Nottage

    Using a prior iOS or macOS SDK with Delphi

    Are you saying that the /usr/lib/system folder exists in your iOS 13.6 SDK? i.e. the full path: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneIS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib/system No, I did a normal upgrade. Why would I need to completely uninstall?
  22. Dave Nottage

    Using a prior iOS or macOS SDK with Delphi

    My Xcode was updated to 11.6 via the App Store app on my Mac. It includes the iOS 13.6 SDK. fastlane verified Xcode as OK. Not as yet
  23. Dave Nottage

    I am getting TPushServiceConection undeclared

    In the IDE menu: Project|Deployment
  24. Dave Nottage

    Using a prior iOS or macOS SDK with Delphi

    As per the article: "The /usr/lib/system folder underneath simply does not exist"
  25. Have you opened the Devices and Simulators window in Xcode, and selected the device?
×