Search results for

“xcode github”

97,553 results found

Post

Replies

Boosts

Views

Activity

Reply to Mac App store Code Signing EXC_CRASH (Code Signature Invalid)
Just to let everyone know, we generated updated distribution profiles and built under 10.12.6 and submitted and it worked I guess. I have no clue why, but seems like there must have been some kind of bug either with XCODE and codesigning under 10.11.x or something changed in Apple's back end which we have no idea about that must have affected code signing recently.
Topic: Code Signing SubTopic: General Tags:
Aug ’17
Reply to Xcode cloud and unlinking SCM
I'm currently dealing with the exact same thing. Using Github as my SCM, I was getting errors telling me I had to reconnect, but clicking reconnect only gave me another error saying it was incomplete. Thought maybe I'd just start over from scratch and deleted all Xcode Cloud data. Now it gets stuck at Grant Access to Your Repository and I get a popup error telling me my app couldn't be added to Xcode Cloud. Added my own feedback. FB number is FB9785098.
Nov ’21
Reply to Xcode 15 commit button not shown
The proposed solution does not work for me as well. I added my GitHub account under Xcode -> Settings -> Accounts. I also added my Author Name and Author Email under Xcode -> Settings -> Source Control. I made changes & went to Integrate -> Stage All Changes (this worked). Next, I went to Integrate -> Commit... and the screen below opens with the commit button greyed out. I know I can use terminal to commit my changes. I am trying to get the source control integration working on my project.
Apr ’24
Reply to how XCode to calculate Memory
memoryFootprint is quite confusing code but useful. Putting it in the debugger and studying info (at line return info.phys_footprint) I see it has a field limit_bytes_remaining Is this a useful guideline as to how much memory is available for allocation? I notice that when UIGraphicsBeginImageContextWithOptions(size,....) fails with a message Cannot allocate X bytes X is 16 x size.width x size.height I would like to know if UIGraphicsBeginImageContextWithOptions will fail before I call it and crash
Topic: App & System Services SubTopic: Core OS Tags:
Dec ’21
Reply to In app purchase “Cannot connect to iTunes Store” error for Sandbox user
I am also experiencing this issue. Using Xcode 12.0, I am seeing the same double prompt for password, which is then followed by this error: Error Domain=SKErrorDomain Code=0 Cannot connect to iTunes Store UserInfo={NSLocalizedDescription=Cannot connect to iTunes Store} This is happening on devices running iOS 11.x < iOS 13.x. As others have stated, this does not occur on iOS 14 devices. I tried purchasing both consumable IAPs, and Renewable Subscriptions. Both have the same result. Test Flight builds that perform purchases using non-sandbox Apple IDs seem to work without any issue on any OS.
Topic: App & System Services SubTopic: StoreKit Tags:
Oct ’20
Reply to iOS 12 scrollview zoom broken?
I have a github repo that demonstrates the problem. Unfortunately I cannot post the link here because of the draconian moderation filter :/My GH username is mluisbrown and the repo is called ZoomTest if you can reach it that way...From Xcode 10, if you run it in iOS 11.4 simulator it works as expected. In iOS 12 simulator it's completely broken. And viewForZooming is returning the imageView directly (there is no wrapper view)
Topic: UI Frameworks SubTopic: UIKit Tags:
Jun ’18
WWDC App Doesn't allow login with 2 Step Code on iPhone X
I was just testing out the WWDC app ability to add a passcode for the WWDC ticket to the iPhone on my iPhone X.But I noticed the page to request a 2 step token has the wrong top margins, so once you get to that screen you cannot continue or cancel.Raised bug radar https://bugreport.apple.com/web/?problemID=38898852.Given WWDC tickets are now announced, and this version of the App is meant to be compatible with iPhone X, then I thought I'd raise it here so it doesn't slip through the gaps.Looking forward to it this year, see you there.
0
0
788
Apr ’18
New playback error on iOS/tvOS 18.x "CoreMediaErrorDomain Code=-15486"
Hello, Our users have started to see a new fatal AVPlayer error during playback starting with iOS/tvOS 18.0. The error is defined as CoreMediaErrorDomain Code=-15486. We have not been able to reproduce this issue locally within our development team. Is there any documentation on the cause of this error or steps to recover from this error? Thank you, Howard
0
0
809
Feb ’25
Getting crash when using notarytool on Github hosted osx build agents
When I run notarytool submit in my github workflow, I get what appears to be some kind of segmentation fault. Here's a direct link to the exception output: https://github.com/recyclarr/recyclarr/actions/runs/6594346352/job/17918152266#step:6:43 My project is open source, so you can also view the shell script I use in the workflow itself: https://github.com/recyclarr/recyclarr/blob/update-notary-tool/ci/notarize.sh The script above contains this: #!/usr/bin/env bash set -xe user=$1 pass=$2 teamId=$3 archivePath=$4 function submit() { xcrun notarytool submit --wait --apple-id $user --password $pass --team-id $teamId recyclarr.zip | awk '/id: / { print $2;exit; }' } function log() { xcrun notarytool log --apple-id $user --password $pass --team-id $teamId $1 } tar -cvf recyclarr.tar $archivePath zip recyclarr.zip recyclarr.tar submissionId=$(submit) rm recyclarr.zip recyclarr.tar if [[ -z $submissionId ]]; then exit 1 fi echo Submission ID: $submissionId until log $submissionId do sleep 2 done T
1
0
800
Oct ’23
Reply to Xcode cloud does not detect branches other than develop
I encountered this issue as well. The fix, in my case: I set up the Workflow, but I was not the owner of the GitHub repo. An email was sent to the owner, requesting them to grant access to the applicable repos set during the Workflow setup. After the owner granted access, I had to right-click the Workflow in Xcode, click Manage Repositories, then in App Store Connect click Grant
Aug ’22
Reply to Share arbitrary struct from HostApp to Extension and get arbitrary result back
Here is the github project: https://github.com/Fesh-com/Sharing-Extension
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’24
Reply to iOS App never gets Bluetooth connection
I have posted a skeleton project on Github https://github.com/andrewknockin/BleTest
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Feb ’26
Reply to Mac App store Code Signing EXC_CRASH (Code Signature Invalid)
Just to let everyone know, we generated updated distribution profiles and built under 10.12.6 and submitted and it worked I guess. I have no clue why, but seems like there must have been some kind of bug either with XCODE and codesigning under 10.11.x or something changed in Apple's back end which we have no idea about that must have affected code signing recently.
Topic: Code Signing SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’17
Reply to Xcode cloud and unlinking SCM
I'm currently dealing with the exact same thing. Using Github as my SCM, I was getting errors telling me I had to reconnect, but clicking reconnect only gave me another error saying it was incomplete. Thought maybe I'd just start over from scratch and deleted all Xcode Cloud data. Now it gets stuck at Grant Access to Your Repository and I get a popup error telling me my app couldn't be added to Xcode Cloud. Added my own feedback. FB number is FB9785098.
Replies
Boosts
Views
Activity
Nov ’21
Reply to Xcode 15 commit button not shown
The proposed solution does not work for me as well. I added my GitHub account under Xcode -> Settings -> Accounts. I also added my Author Name and Author Email under Xcode -> Settings -> Source Control. I made changes & went to Integrate -> Stage All Changes (this worked). Next, I went to Integrate -> Commit... and the screen below opens with the commit button greyed out. I know I can use terminal to commit my changes. I am trying to get the source control integration working on my project.
Replies
Boosts
Views
Activity
Apr ’24
Reply to Xcode Previews broken after setting different bundle identifier for debug/release modes
Try Clean Build. Restart x-code This resolved for me the issue :)
Replies
Boosts
Views
Activity
Aug ’24
Reply to how XCode to calculate Memory
memoryFootprint is quite confusing code but useful. Putting it in the debugger and studying info (at line return info.phys_footprint) I see it has a field limit_bytes_remaining Is this a useful guideline as to how much memory is available for allocation? I notice that when UIGraphicsBeginImageContextWithOptions(size,....) fails with a message Cannot allocate X bytes X is 16 x size.width x size.height I would like to know if UIGraphicsBeginImageContextWithOptions will fail before I call it and crash
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to In app purchase “Cannot connect to iTunes Store” error for Sandbox user
I am also experiencing this issue. Using Xcode 12.0, I am seeing the same double prompt for password, which is then followed by this error: Error Domain=SKErrorDomain Code=0 Cannot connect to iTunes Store UserInfo={NSLocalizedDescription=Cannot connect to iTunes Store} This is happening on devices running iOS 11.x < iOS 13.x. As others have stated, this does not occur on iOS 14 devices. I tried purchasing both consumable IAPs, and Renewable Subscriptions. Both have the same result. Test Flight builds that perform purchases using non-sandbox Apple IDs seem to work without any issue on any OS.
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Oct ’20
Reply to iOS 12 scrollview zoom broken?
I have a github repo that demonstrates the problem. Unfortunately I cannot post the link here because of the draconian moderation filter :/My GH username is mluisbrown and the repo is called ZoomTest if you can reach it that way...From Xcode 10, if you run it in iOS 11.4 simulator it works as expected. In iOS 12 simulator it's completely broken. And viewForZooming is returning the imageView directly (there is no wrapper view)
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jun ’18
WWDC App Doesn't allow login with 2 Step Code on iPhone X
I was just testing out the WWDC app ability to add a passcode for the WWDC ticket to the iPhone on my iPhone X.But I noticed the page to request a 2 step token has the wrong top margins, so once you get to that screen you cannot continue or cancel.Raised bug radar https://bugreport.apple.com/web/?problemID=38898852.Given WWDC tickets are now announced, and this version of the App is meant to be compatible with iPhone X, then I thought I'd raise it here so it doesn't slip through the gaps.Looking forward to it this year, see you there.
Replies
0
Boosts
0
Views
788
Activity
Apr ’18
New playback error on iOS/tvOS 18.x "CoreMediaErrorDomain Code=-15486"
Hello, Our users have started to see a new fatal AVPlayer error during playback starting with iOS/tvOS 18.0. The error is defined as CoreMediaErrorDomain Code=-15486. We have not been able to reproduce this issue locally within our development team. Is there any documentation on the cause of this error or steps to recover from this error? Thank you, Howard
Replies
0
Boosts
0
Views
809
Activity
Feb ’25
Getting crash when using notarytool on Github hosted osx build agents
When I run notarytool submit in my github workflow, I get what appears to be some kind of segmentation fault. Here's a direct link to the exception output: https://github.com/recyclarr/recyclarr/actions/runs/6594346352/job/17918152266#step:6:43 My project is open source, so you can also view the shell script I use in the workflow itself: https://github.com/recyclarr/recyclarr/blob/update-notary-tool/ci/notarize.sh The script above contains this: #!/usr/bin/env bash set -xe user=$1 pass=$2 teamId=$3 archivePath=$4 function submit() { xcrun notarytool submit --wait --apple-id $user --password $pass --team-id $teamId recyclarr.zip | awk '/id: / { print $2;exit; }' } function log() { xcrun notarytool log --apple-id $user --password $pass --team-id $teamId $1 } tar -cvf recyclarr.tar $archivePath zip recyclarr.zip recyclarr.tar submissionId=$(submit) rm recyclarr.zip recyclarr.tar if [[ -z $submissionId ]]; then exit 1 fi echo Submission ID: $submissionId until log $submissionId do sleep 2 done T
Replies
1
Boosts
0
Views
800
Activity
Oct ’23
Reply to Xcode cloud does not detect branches other than develop
I encountered this issue as well. The fix, in my case: I set up the Workflow, but I was not the owner of the GitHub repo. An email was sent to the owner, requesting them to grant access to the applicable repos set during the Workflow setup. After the owner granted access, I had to right-click the Workflow in Xcode, click Manage Repositories, then in App Store Connect click Grant
Replies
Boosts
Views
Activity
Aug ’22
Reply to Could use help with Running GUI Linux in a virtual machine on a Mac
You can try the code in this github project; https://github.com/mrchoke/RunLinuxVM
Replies
Boosts
Views
Activity
Aug ’23
Reply to Is it not allowed to post links to sample code for other developers
Yeah, any link to a non-Apple domain contained in a post automatically goes into moderation, where it will stay for anything from 3 -16 days if past experience is anything to go by. If you'd like to point someone toward a specific GitHub, you could suggest a Google search instead for GitHub + whatever instead.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jul ’15