Jump to content

Dave Nottage

Members
  • Content Count

    1490
  • Joined

  • Last visited

  • Days Won

    36

Everything posted by Dave Nottage

  1. Sorry, I thought you meant it was public. You'd need to invite me to the test group 🙂
  2. Can you provide a link to the app on Google Play, or at least the name of it?
  3. Dave Nottage

    Error when IOS location service is not authorised

    uses iOSapi.CoreLocation; if TCLLocationManager.Create.locationServicesEnabled then // Location services are enabled
  4. Dave Nottage

    Error when IOS location service is not authorised

    uses iOSapi.CoreLocation; if TCLLocationManager.Create.locationServicesEnabled then // Location services are enabled
  5. Dave Nottage

    iOS 15.1

    Apparently it's an issue with debugging iOS apps when using Monterey. Unfortunately it seems the current workaround is to use an earlier version of macOS 😞
  6. Dave Nottage

    In-App purchase

    Please refer to this comment, and the other comments in the same post:
  7. Dave Nottage

    ShowModal hang/crashes on iOS 15 with iPhone 12 / 13

    I wasn't able to ascertain what the cause is - I can only suggest filing a report on QP for it.
  8. Dave Nottage

    Android project deployment messed up

    What version of Android is on the device? If it's 8.0, you'll need to upgrade it to 8.1, if possible. Otherwise, it could be an issue with which NDK is being used: https://stackoverflow.com/questions/69238129/delphi-11-tcp64311-cannot-resolve-name-no-address-associated-with-hostname
  9. Dave Nottage

    ShowModal hang/crashes on iOS 15 with iPhone 12 / 13

    Fortunately, my wife recently acquired an iPhone 13 that has iOS 15.0.2 on it, and I am seeing the same issue as you: the app hangs. It does not hang on my iPhone X with iOS 15.1. As to why it is just an issue on iPhone 13 (and 12, I guess), I'm looking into it
  10. Dave Nottage

    Android project deployment messed up

    Does a blank project deploy OK? What path do you have for the output folder of the project that is having problems?
  11. Dave Nottage

    Deploy Delphi 11 iOS 15 XCode 13

    Shame the IDE cannot tell you this specifically. Seems like a candidate for issuing a warning from Codex/Mosco 🙂
  12. Dave Nottage

    iOS 15.1

    Please make sure you don't have any source files in the path that shouldn't be. Starting/compiling/deploying a blank app works fine for me, using Xcode 13.1, Delphi 11, iOS 15.1 on my device.
  13. Dave Nottage

    iOS 15.1

    Works fine here.
  14. Dave Nottage

    iOS 15.1

    I wasn't having any issues with iOS 15.0.2. Just updated my device to iOS 15.1, and everything is still working OK so far. Delphi 11, Xcode 13.0, iOS 15.0 SDK
  15. Dave Nottage

    TLocationSensor on Android 12

    Known issue: https://quality.embarcadero.com/browse/RSP-35804 It looks like it will require a change to the JNI Bridge to fix it (unless I'm mistaken). I shudder as to whether that might delay it until Delphi 12 😞
  16. Dave Nottage

    Android. FileUriExposedException: file:///

    This is usually because the Secure File Sharing checkbox in the Entitlements List in the Project Options is unchecked, and it needs to be checked
  17. Dave Nottage

    The state of GExperts Support for Delphi 11

    On my Parallels VM, the Grep Search window is too small, and not resizeable:
  18. Dave Nottage

    Error deploying IOS Release App

    That is probably the issue I mentioned earlier in this thread.
  19. Dave Nottage

    Deploy Delphi 11 iOS 15 XCode 13

    An App Store build? Not until it is in TestFlight or actually on the App Store and you install it from there. Are you unable to deploy a build in Developer config?
  20. Dave Nottage

    Error deploying IOS Release App

    Also, the above command should have been: sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
  21. Dave Nottage

    Error deploying IOS Release App

    PAServer does issue the xcodebuild commands that you referred to, when building an IPA for App Store. Using PackageApplication was removed after Xcode 8.3 was released, so either PAServer thinks you have Xcode 8.2 or earlier, or you actually do have that on your machine. On your Mac, in a command line (Terminal) window, can you run: /usr/bin/xcodebuild -version and report the results?
  22. Dave Nottage

    debug IOS using instruments Leak detector

    I hadn't noticed that, thanks!
  23. Dave Nottage

    debug IOS using instruments Leak detector

    I guess I was wrong about that part 🙂
  24. Dave Nottage

    Error deploying IOS Release App

    There's a known issue with Xcode 13: https://quality.embarcadero.com/browse/RSP-35701 However it's a different error message to the one you're seeing. Regarding the above issue, please see: The workaround may or may not resolve your issue. Your problem may be a new issue in that Xcode 13 beta.
  25. Dave Nottage

    debug IOS using instruments Leak detector

    This one possibly means there's a bug in TFMXTextRange.Destroy (FMX.Platform.iOS on line 1768 in 10.4.2). The references are being set to nil, but they're Delphi object references. Some of the others may be happening as a result. One way to check would be to make a copy of FMX.Platform.iOS and put it in the project folder, then modify TFMXTextRange.Destroy to call Free on the references
×