Jump to content

Dave Nottage

Members
  • Content Count

    1272
  • Joined

  • Last visited

  • Days Won

    28

Everything posted by Dave Nottage

  1. Dave Nottage

    Build Project

    Without having the source of the project (or a reproducible example), it might be difficult to discover what the problem is
  2. Dave Nottage

    Build Project

    Might be wrong/incompatible NDK settings. This is what I have for 10.3.3:
  3. Dave Nottage

    Grep search empty window with 10.4.1

    Note to self: double triple check where the DLL is being loaded from 😞
  4. Dave Nottage

    Grep search empty window with 10.4.1

    Yes
  5. Dave Nottage

    Grep search empty window with 10.4.1

    I'm getting the blank Grep window, too.
  6. Dave Nottage

    .aab file to google playstore

    You could send it if you like, however I think it may be resolved only by seeing the code being executed at startup. You can direct message me the source if you like. I will treat it in confidence.
  7. Dave Nottage

    .aab file to google playstore

    Seems to be stuck in an eternal loop. Does it work as an .apk? What exactly are you doing with Firebase in the app?
  8. It will not work if you do not have the permissions checked in the project options.
  9. Dave Nottage

    .aab file to google playstore

    Can you give a link to the app on Play Store?
  10. 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)
  11. Dave Nottage

    Eliminate Touch Indicator

    From Android 6 you cannot change private secure settings, and "show_touches" is one of them.
  12. 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
  13. 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?
  14. Dave Nottage

    10.4.1 Released today

    Worked OK here. What actually happens when you try?
  15. 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
  16. Dave Nottage

    Problem with Delphi RIO 10.3.3 and Google API Level 29

    What's the exact message?
  17. Dave Nottage

    Loading shared objects on Android

    Did you resolve the apparent permissions issue?
  18. 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
  19. 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.
  20. Dave Nottage

    Authorization using Apple ID

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

    Authorization using Apple ID

    Did you follow the instructions in the ReadMe.txt file?
  22. 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
  23. 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
  24. Dave Nottage

    Bulding an app to test push alerts in iOS

    It has been, yes. I'll help where I can
×