Post

Replies

Boosts

Views

Activity

Reply to Mapbox iOS SDK in Xcode Cloud CI
I think your shellscript is not quite right. I was able to make this work using the script below, which I modified from yours: #!/bin/bash touch ~/.netrc echo "machine api.mapbox.com" > ~/.netrc echo "login mapbox" >> ~/.netrc echo "password ${MAPBOX_TOKEN}" >> ~/.netrc You need to set the MAPBOX_TOKEN in your workflow environment (unless you want it in your source code).
Topic: App & System Services SubTopic: General Tags:
Dec ’21
Reply to Using availablity checks with new .defaultWindowPlacement API
It turns out you can use if #available checks in scenes, you just can't specify an else block with it.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jun ’24
Reply to Xcode 15.3 crippled with "internal inconsistency error"
We've solved this by disabling our Swift Package plugins. Re-enabling them causes the issue to return. This works for us across different Xcode project files too. Seems pretty clear there has been some regression to the plugin system since Xcode 15.3.
Replies
Boosts
Views
Activity
May ’24
Reply to Xcode Cloud builds failing with random 502 errors when resolving packages
Same
Replies
Boosts
Views
Activity
May ’24
Reply to Duplicated Signature when archiving a multi platform project
We can finally build to devices for debugging with Xcode 15 beta 5, but i wanted to hop on this thread and say we are seeing the same issue. We are duping this feedback.
Replies
Boosts
Views
Activity
Jul ’23
Reply to Mapbox iOS SDK in Xcode Cloud CI
I think your shellscript is not quite right. I was able to make this work using the script below, which I modified from yours: #!/bin/bash touch ~/.netrc echo "machine api.mapbox.com" > ~/.netrc echo "login mapbox" >> ~/.netrc echo "password ${MAPBOX_TOKEN}" >> ~/.netrc You need to set the MAPBOX_TOKEN in your workflow environment (unless you want it in your source code).
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’21