Post

Replies

Boosts

Views

Activity

Reply to Xcode 12.0.1 won't download watchOS 7.0.1 symbols
Yes, same issues. Rebooted watch, Mac, Xcode but to no avail. I see my developer account details in the Xcode Preferences. I'll contact developer support. Got the following from macOS logs when looking at process Xcode log entries: (Redirect Count) 0 (Transaction Metrics) (Request) {"object":"<NSURLRequest 0x7fd39fce6f10>","url":"https:\/\/devimages-cdn.apple.com\/downloads\/xcode\/dsc\/Watch4_2_18R395.dmg"} (Response) <NSHTTPURLResponse: 0x7fd3892bcf50> { URL: https://devimages-cdn.apple.com/downloads/xcode/dsc/Watch4_2_18R395.dmg } { Status Code: 403, Headers { ... self=<ACSURLSession: 0x7fd389ada4d0> { canUseCachingServer: 1, phase: valid, session: <__NSURLSessionLocal: 0x7fd38951eb60>, delegate: 0x7fd3998df040, tasks: (0x7fd38951ea20) } oletus 16:19:56.611135+0300 Xcode DVTDownloadable: Download Failed. Downloadable: https://devimages-cdn.apple.com/downloads/xcode/dsc/Watch4_2_18R395.dmg. Error Domain=DataWritingACSURLSessionDelegate Code=1 "Failed with HTTP status 403: forbidden" UserInfo={NSLocalizedDescription=Failed with HTTP status 403: forbidden, NSHTTPURLResponse=<NSHTTPURLResponse: 0x7fd38943ce70> { URL: https://devimages-cdn.apple.com/downloads/xcode/dsc/Watch4_2_18R395.dmg } { Status Code: 403, Headers { &#9; ... &#9;&#9;&#9;&#9;"no-store, no-cache, must-revalidate" &#9;&#9;); &#9;&#9;"Content-Length<…> oletus 16:19:59.713998+0300 Xcode iPhoneSupport: Unable to cache symbols for <DVTProxiediOSDevice: 0x7fd389b0a930> device (Error Domain=DVTDownloadableErrors Code=-1 "Could not download and install Symbols for watchOS 7.0.1 (18R395). Failed to download package from ADC." UserInfo={NSUnderlyingError=0x7fd3998e22f0 {Error Domain=DataWritingACSURLSessionDelegate Code=1 "xxx.xxx@gmail.com does not have access to Symbols for watchOS 7.0.1 (18R395)." UserInfo={NSRecoveryAttempter=<_DVTErrorRecoveryHandler: 0x7fd399a08c50>, NSLocalizedRecoverySuggestion=Contact Apple Developer Program Support to resolve account access issues., NSLocalizedDescription=xxx.xxxx@gmail.com does not have access to Symbols for watchOS 7.0.1 (18R395)., DVTRecoveryBlockKey=<NSMallocBlock: 0x7fd3998f0070>, NSLocalizedRecoveryOptions=( &#9;&#9;OK, &#9;&#9;"Contact\U2026" ), NSHTTPURLResponse=<NSHTTPURLResponse: 0x7fd389a6d150> { URL: https://download.developer.apple.com/Developer_Tools/watchOS_18R395/Watch4_2_18R395.dmg } { Status Code: 403<…>
Sep ’20
Reply to Apple Watch App - Invalid Swift entry point data
Do you have WKExtensionDelegateClassName with value $(PRODUCT_MODULE_NAME).ExtensionDelegate in your extension's Info.plist file? And the delegate adaptor in the App: @main struct Mypp: App {    @WKExtensionDelegateAdaptor(ExtensionDelegate.self) var extensionDelegate Latter produces a SwiftLint warning though: Weak Delegate Violation: Delegates should be weak to avoid reference cycles. (weak_delegate) Adding weak produces an error. Don't know what to do with this, so currently I have to live with the warning.
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’20
Reply to Open source published apps?
I would remove your DEVELOPMENT_TEAM id from the xcodeproj file and put them to xcconfig file. Then in your project file, specify DEVELOPMENT_TEAM = "$(inherited)"; Other devs forking/cloning your project would then specify their dev team id in their xcconfig file. See https://help.apple.com/xcode/mac/11.4/#/dev745c5c974 for more information.
Feb ’21
Reply to WeatherKit Apple Weather trademark and legal link.
Another wonderer here. I am building an independent Apple Watch app without iOS counterpart app. When adding the link to the app view, and tapping it on simulator, this error is seen in the logs: Attempting to open url https://weather-data.apple.com/legal-attribution.html with scheme https failed: Error Domain=NSPOSIXErrorDomain Code=45 "Operation not supported" UserInfo={_LSLine So is it even possible to offer this link in watchOS app or is this working on a read device? Currently cannot test this on a real watch with beta software.
Topic: App & System Services SubTopic: General Tags:
Aug ’22
Reply to Open a simple directory in XCode
If you want to just view the code, open them from the terminal: open *.* or open *.h for header files, open *.c for C files, etc. Assuming Xcode is the default app for opening these files in your system. Alternatively, create an empty C/C++ project and then add the files to it. If the code files include a cmake (https://cmake.org) project file CMakeLists.txt, then you can easily create an Xcode project from it: mkdir xcode && cd xcode cmake -GXcode .. And then open the generated Xcode project file.
Jan ’23
Reply to Azure Database for xcode
I guess you meant that you want to develop an app, using Xcode and Swift (?) programming language that connects to and uses Microsoft Azure databases? If yes, here is a step for you: https://github.com/Azure/azure-sdk-for-ios There might be other steps elsewhere, if you do some (more) searching.
Feb ’23