Jump to content

Dave Nottage

Members
  • Content Count

    1491
  • Joined

  • Last visited

  • Days Won

    36

Everything posted by Dave Nottage

  1. Dave Nottage

    Just open folder ( Android )

    Please show your code
  2. Dave Nottage

    Delphi 10.4.2 add support for Android 13

    Because it's the version of the SDK. When referring to API level being 33, it means just that: API level, not SDK version. Unfortunately Google decided to use names in the manifest like minSdkVersion and targetSdkVersion, when they actually refer to API level. 9009 means the executable was not found. One of your paths in the SDK settings may still be wrong.
  3. Dave Nottage

    Delphi 10.4.2 add support for Android 13

    You should not need to modify the base path. You should only need to ensure API 33 level and Build Tools 33.x are installed, and change the paths for the Build Tools related locations, and the SDK API Level location. APKSigner is part of the Android SDK, not Java SDK. See this post, and the replies that follow:
  4. Dave Nottage

    Any Demo On How To Use TBiometricAuth In Delphi

    Incorrect. USE_BIOMETRIC needs to be included in the permissions, but only dangerous permissions need to be explicitly requested at runtime. You're also missing the Use Biometric permission in the Permissions section of Project Options. Sorry, I should have checked for that earlier.
  5. Dave Nottage

    Any Demo On How To Use TBiometricAuth In Delphi

    No error messages? Can you provide a reproducible example that does not have dependencies on TFrameStand or other 3rd party code?
  6. Dave Nottage

    Any Demo On How To Use TBiometricAuth In Delphi

    You'll need to me more specific about what "won't work" means. Please also note that only Android 10 or higher is supported
  7. Dave Nottage

    Any Demo On How To Use TBiometricAuth In Delphi

    You do not have the Biometric Authorization Service option checked in the Entitlement List in Project Options
  8. Dave Nottage

    Any Demo On How To Use TBiometricAuth In Delphi

    It's in Portuguese, but there's this: Also this: https://github.com/DeveloppeurPascal/Delphi-samples/tree/main/FireMonkey-Samples/017-TBiometricAuth
  9. Dave Nottage

    Take a pic works on Iphone but not on android.

    It's a common issue. Also, I implemented something similar before it was added to Delphi. Using Google can help, although with this particular issue it's not entirely obvious what is the easiest way to resolve it. Here, Delphi is doing the work for you, by creating a provider_paths.xml file and including it in the deployment.
  10. Dave Nottage

    Take a pic works on Iphone but not on android.

    Make sure that the Secure File Sharing option is checked in the Entitlement List section of the Project Options:
  11. Dave Nottage

    Cannot set Version info nor Icons

    Your screenshot is cut off - it does not actually show the ProductVersion value (further down)
  12. Dave Nottage

    D11, Play billing Library 5.2.0

    Just noticed your code does not call SetupInAppPurchase, so it's no wonder it does not even fire OnError.
  13. Dave Nottage

    D11, Play billing Library 5.2.0

    It's supposed to be backward compatible. You should use the OnError event of InAppPurchase1 to find out what the failure is.
  14. Dave Nottage

    Android with Delphi 10.4.2 Sydney SDK API 32 /versions/12

    That's not your complete manifest, however given the error message, you need to add android:exported="true" To the activity, e.g.: <activity android:name="com.embarcadero.firemonkey.FMXNativeActivity" android:exported="true" etc
  15. Dave Nottage

    Android with Delphi 10.4.2 Sydney SDK API 32 /versions/12

    It'd be way easier to diagnose what the problem is if you quoted the exact error message
  16. Dave Nottage

    iOS FMX controls not show on Iphone 14 device with ios 16

    I started taking a look into the problem, however it seems to be an issue deep in the Delphi runtime and it's a bit beyond me at the moment.
  17. Dave Nottage

    Shared library used on Android crashes

    Please see:
  18. Still wrong - there's no XE in the version name. If it's 10.2, it is Delphi Tokyo
  19. I missed that part, thanks. I was focusing more on how it might be implemented. It seems that way. Given that, you'd need to code your server to be able to handle sending a message every second or so. Since sending the message seems to sometimes take more than a second, you'd need to spawn a thread or two (or three) to do the work.
  20. Dave Nottage

    MacOS 11.3 SDK problem

    That message should probably also recommend executing this command from a terminal window on the Mac: xcode-select -p If you're using the default install of Xcode, it should output: /Applications/Xcode.app/Contents/Developer If it doesn't, use this command: xcode-select --switch /Applications/Xcode.app/Contents/Developer
  21. Dave Nottage

    Something like SimpleNote with an API?

    How about OneNote, or Dropbox Paper? Or in a pinch: Google Keep - this isn't really meant for what you want.
  22. Dave Nottage

    D11,unsupported version of Play billing

    I've since seen your reply on Facebook, which indicates you're interested in the new features. I'll take a look into what changes might be possible, however it would be at least later in the week.
  23. Dave Nottage

    D11,unsupported version of Play billing

    Can you test it, and report what problems you have with it, if any?
  24. Dave Nottage

    D11,unsupported version of Play billing

    Genuine question: Which code do you think you need to update, and why? To support subscriptions (which apparently are new in v5), or something else?
  25. Dave Nottage

    Trouble installing Ios SDK

    You need an M1 or M2 Mac in order to run apps on the simulator from Delphi
×