Post

Replies

Boosts

Views

Activity

Add myself to development team on Xcode 12
On my job's App Store Connect, I'm listed with the 'Admin' role. However, when I want to try to archive an app on Xcode, I'm not able to, since I'm not listed on the team of my job, it only shows me my personal team on the Xcode Preferences window. How can I make the team of my job appear on my list of teams in Xcode, so I can archive the app? P.D. I'm not the owner of the Apple Developer Acount, that's another person.
0
0
268
Oct ’21
xcode 12 error when building for simulator
When I try to launch a simulator of the app I'm testing on Xcode 12, it always get the following error message: error: accessing build database "/Users/MyUser/Library/Developer/Xcode/DerivedData/Project-<abunchofrandomletters>/Build/Intermediates.noindex/XCBuildData/build.db": no more rows available" I've looked around to search, however, I've not not found anything related to this exact same error message, so can you help me figure out what it is and how to fix it?
1
0
6.5k
Oct ’21
XCode 12: 'Application windows are expected to have a root view controller at the end of application launch'
I'm having an issue when running an app on Xcode using the release build. The debug one works just fine tho. When I try to run the app, this code (on main.m): #import <UIKit/UIKit.h> #import "AppDelegate.h" int main(int argc, char * argv[]) { @autoreleasepool { return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); } } throws me the following error message: 2021-08-26 12:40:55.833657-0500 profile[2870:97150] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Application windows are expected to have a root view controller at the end of application launch' *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Application windows are expected to have a root view controller at the end of application launch' terminating with uncaught exception of type NSException I've searched to many solutions, to no avail. Can anyone help me? By the way, it probably deserves no mention, but I've disabled the Storyboard 'Launch Screen' at the beggining of my app, since I've already one defined before testing the app in the re
1
0
2.7k
Aug ’21