Post marked as solved
10k
Views
I'm still learning how to code and would love to get recommendations on how to learn swift/swiftui for iOS/macOS app development. Any recommendations are welcome :)
Post marked as solved
6.1k
Views
The error trying to distrubute to the store
According to the provisioning profile, the bundle contains a key value that is not allowed: '[]' for the key 'com.apple.developer.healthkit.access' in 'Payload/<app>.app/<app>'
Looking at the docs, this is a valid value:
https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_developer_healthkit_access
Similarly, I had no issue until this appeared randomly....
Entitlement File
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.developer.healthkit.access</key>
<array/>
<key>aps-environment</key>
<string>development</string>
<key>com.apple.developer.associated-domains</key>
<array>
<string>webcredentials:invoy.com</string>
<string>webcredentials:invoy.dev</string>
<string>webcredentials:invoydev.com</string>
<string>webcredentials:invoystage.com</string>
<string>applinks:invoy.com</string>
<string>applinks:www.invoy.com</string>
<string>applinks:invoy.dev</string>
<string>applinks:www.invoy.dev</string>
<string>applinks:invoydev.com</string>
<string>applinks:www.invoydev.com</string>
<string>applinks:invoystage.com</string>
<string>applinks:www.invoystage.com</string>
</array>
<key>com.apple.developer.healthkit</key>
<true/>
</dict>
</plist>
HealthKit is enabled as a capability in Apple Profile as well as for the product.
Does anyone have an idea of what could be going wrong? Seems like I am correctly following the practices.
Post marked as solved
3.2k
Views
Running a project from Xcode 12 seems to be very slow during launch. Even the example projects from Apple.
Basically it feels as if the app is stuck on the launch screen?
However, if I unplug from my Mac and just launch via tapping on the App icon, it's super fast.
Anyone is having the same issue?
Post marked as solved
1.6k
Views
I have upgrade Xcode to last release on 15 december 2020. Now it freezes every minutes for 5 minutes it's unusable. Are there some solutions?
Post marked as solved
5.5k
Views
Unable to Submit for Review
The items below are required to start the review process:
An error has occurred. Try again later.
Post marked as solved
5.3k
Views
When I select the main disk to install to, I get the error message: "The operation couldn't be completed. (BIErrorDomain error 3.)"
Has anyone else experienced this? I wanted to try out the Big Sur beta, but didn't want to risk rendering my daily MBP unusable.
Thanks!
Post marked as solved
1.7k
Views
After I updated Xcode 12 to Xcode 12.0.1 I can't download simulators anymore. Under Preferences->Components, the list of Simulators is blank. How can I still add an iOS 13 simulator?
Post marked as solved
1.9k
Views
After the upgrade from Beta 6 to Beta 7 I am not able to connect to any smb-shares any more. I tried it with a Windows Server, Synology DriveStation and a Debian implementation. I'm directly getting the message Error with connection.
Post marked as solved
481
Views
Anyone else having problems to play youtube videos within Safari in the Big Sur Beta 10?
No matter what video I choose, it always states an error occured. Only happens since Beta 10.
Post marked as solved
1.5k
Views
Hi all
Anybody knows why I'm getting a weird yellow color in the navigation bar and the tool bar?.
Simulator with iOS 14.1 it looks good, but iOS 14.3 looks with the yellow color.
I disabled all the option in the Debug menu -> Color options...
Thanks!
Post marked as solved
3.8k
Views
I've updated to Big Sur from Catalina and I'm having trouble when connecting to WiFi networks. At first no network appeared and now even though it has connected silently to my usual network, it is showing as no connected, but internet actually works.
Anyone having this kind of problems so far? I haven't seen anything related on the forums nor the release notes.
Post marked as solved
1k
Views
Seems like there is a confirmed bug on Xcode12 + iOS14.
I have a UINavigationController on each item of a UITabBar, and I've set hidesBottomBarWhenPushed to YES on every secondary ViewControllers, so the TabBar will only be shown on the rootViewController of navigationController. But when I try popping multiple ViewControllers, like pop C from stacks like A-B-C, I found that the TabBar just missing on A.
Also another weird part, when I print navigationController.viewControllers in viewWillDisappear: method on C, I found it printing like "C-A". How C moved to the top of the array??
This is confirmed on a simple demo app, wonder when it will be fixed.