Jump to content

Dave Nottage

Members
  • Content Count

    1560
  • Joined

  • Last visited

  • Days Won

    36

Everything posted by Dave Nottage

  1. Dave Nottage

    In-App purchase

    Please refer to this comment, and the other comments in the same post:
  2. 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.
  3. 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
  4. 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
  5. 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?
  6. 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 🙂
  7. 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.
  8. Dave Nottage

    iOS 15.1

    Works fine here.
  9. 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
  10. 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 😞
  11. 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
  12. Dave Nottage

    The state of GExperts Support for Delphi 11

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

    Error deploying IOS Release App

    That is probably the issue I mentioned earlier in this thread.
  14. 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?
  15. Dave Nottage

    Error deploying IOS Release App

    Also, the above command should have been: sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
  16. 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?
  17. Dave Nottage

    debug IOS using instruments Leak detector

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

    debug IOS using instruments Leak detector

    I guess I was wrong about that part 🙂
  19. 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.
  20. 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
  21. Dave Nottage

    Error deploying IOS Release App

    Which version of Xcode are you using? Can you do a Clean first, then Build/Deploy?
  22. Dave Nottage

    Simple app for Android 5.0.2

    I expect that part of the reason is because the minSdkVersion is 23, which corresponds to Android 6. You should change %minSdkVersion% in AndroidManifest.template.xml to 21, and refer to the section "Important information about the NDK settings" here regarding changing the NDK settings.
  23. Dave Nottage

    Simple app for Android 5.0.2

    The xml in the file is invalid, because of a missinq quote on line 40: Perhaps AndroidManifest.template.xml was modified and the closing quote was removed by mistake?
  24. Dave Nottage

    Deploy Delphi 11 iOS 15 XCode 13

    Not at present, deploying iOS apps for App Store configuration with Xcode 13 is currently broken: https://quality.embarcadero.com/browse/RSP-35701 One solution is to revert to Xcode 12.5.1. Another is to use a workaround I have created, however it requires installing at least Mosco 1.2.1 (a macOS app): Workaround steps: Install at least Mosco, and Codex if using the workaround from Delphi Build/Deploy your app using App Store config (which will "fail" with Xcode 13) If using the workaround in Delphi itself, in Project Manager, right click the root node of the project and click "Build IPA". If using the workaround in Mosco, click the Mosco icon in the system bar to bring up the menu, click Fixes > Build App Store IPA. Select the app from the ~/PAServer/scratch-dir/[username]-[profile]/ folder and click Build Links to installers: https://github.com/DelphiWorlds/Codex/blob/master/Bin/CodexSetup_1.5.1.exe https://github.com/DelphiWorlds/Mosco/blob/master/Bin/Mosco.1.2.1.pkg
  25. Dave Nottage

    Simple app for Android 5.0.2

    Are you sure the error doesn't actually say: "..problem parsing the package"? It is important to ensure that error messages you quote are exact, otherwise it may be difficult for others to help. In your case, it may be an issue with the manifest (AndroidManifest.xml in the project's output folder). Can you attach it here?
×