-
Content Count
1560 -
Joined
-
Last visited
-
Days Won
36
Everything posted by Dave Nottage
-
Please refer to this comment, and the other comments in the same post:
-
ShowModal hang/crashes on iOS 15 with iPhone 12 / 13
Dave Nottage replied to Eric Bonilha's topic in FMX
I wasn't able to ascertain what the cause is - I can only suggest filing a report on QP for it. -
Android project deployment messed up
Dave Nottage replied to corneliusdavid's topic in Cross-platform
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 -
ShowModal hang/crashes on iOS 15 with iPhone 12 / 13
Dave Nottage replied to Eric Bonilha's topic in FMX
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 -
Android project deployment messed up
Dave Nottage replied to corneliusdavid's topic in Cross-platform
Does a blank project deploy OK? What path do you have for the output folder of the project that is having problems? -
Shame the IDE cannot tell you this specifically. Seems like a candidate for issuing a warning from Codex/Mosco 🙂
-
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.
-
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
-
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 😞
-
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
-
On my Parallels VM, the Grep Search window is too small, and not resizeable:
-
That is probably the issue I mentioned earlier in this thread.
-
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?
-
Also, the above command should have been: sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
-
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?
-
I hadn't noticed that, thanks!
- 12 replies
-
- ios
- instrument usage
-
(and 2 more)
Tagged with:
-
I guess I was wrong about that part 🙂
- 12 replies
-
- ios
- instrument usage
-
(and 2 more)
Tagged with:
-
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.
-
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
- 12 replies
-
- ios
- instrument usage
-
(and 2 more)
Tagged with:
-
Which version of Xcode are you using? Can you do a Clean first, then Build/Deploy?
-
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.
-
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?
-
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
-
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?