xcode project settings and project file issues, including code-signing, build configurations, etc
Questions tagged [xcode-project]
105 questions
1
vote
0 answers
My .xcodeproj was transformed into folder
I have a problem to build my project on Xcode 6.3. I change name of my application in Xcode, and after that, my .xcodeproj was transformed into folder.
I don't know why my file was transformed into folder. Does someone could tell me how to find my…

Kevin Py
- 2,459
- 2
- 22
- 33
1
vote
2 answers
xcodeproj adds framework but linker can't find it
I'm adding a custom framework to my Xcode project using the xcodeproj Ruby Gem:
top_group = project.groups[0]
framework_ref = top_group.new_file(framework_path)
target =…

pr1001
- 21,727
- 17
- 79
- 125
0
votes
0 answers
How to detect `Active Scheme` of an Xcode project/workspace from command line
There're always more than one (xc)schemes in a single Xcode project/workspace.
When you open a project/workspace with Xcode, Xcode will decide an active scheme as the default scheme to be build/run.
And if you select another scheme, Xcode will…

Saafo
- 459
- 6
- 6
0
votes
0 answers
BlueIris and Codeproject.AI error while installing module
21:29:55:ObjectDetectionNet: Installing module ObjectDetectionNet
21:29:55:ObjectDetectionNet: Start-BitsTransfer : The resource loader cache doesn't have loaded MUI entry. (Exception from HRESULT:…

Egon
- 1
- 1
0
votes
0 answers
Unable to launch * because it has an invalid code signature, inadequate entitlements or its profile has not been explicitly trusted by the user
Ok.. This has me pulling my hair out. I have searched the previously posted questions and answers and none of them seem to work. I fear i'm at the frantic stage and hope i'm not missing anything so here goes... I am trying to simple run an app im…

JamesG
- 1,552
- 8
- 39
- 86
0
votes
0 answers
Xcode builds but doesn't run the app in the Simulator
Your help would be really appreciated.
Error: I’m not able to run my iOS app in Xcode simulator while the project builds. The option to run the app (from Menu bar -> Product -> Run) is grayed out.
What I tried to fix it:
Restarted Xcode and my…

user20297042
- 1
- 1
0
votes
0 answers
xcodebuild command is not building dependency of target
I am working on a C++ Xcode project. Let's say it PA.xcodeproj. I am building its target targetA using the command line:
xcodebuild -project PA.xcodeproj -target targetA
In targetA, I have specified its dependency targetB and targetB further…

Vivek Mangal
- 532
- 1
- 8
- 24
0
votes
0 answers
How create a private SDK Scheme used only for Main Project?
How to create a scheme that should have the ability to provide public methods that are only accessible to the main application.
For example, I have my main Test project on XCode, I added my custom local Dependency Package SDK, and I want to create…

user_Dennis_Mostajo
- 2,279
- 4
- 28
- 38
0
votes
1 answer
xcodebuild ignoring #available iOS version check
Trying to setup CI for my swift package. It's already running fine for the package but I haven't found a xcodebuild command that will build the SampleApp successfully.
The issue seems to be that I have a #available(iOS 16.0, *) check around a iOS 16…

robhasacamera
- 2,967
- 2
- 28
- 41
0
votes
1 answer
Combining two apps in Xcode
I have two Xcode workspaces, both the workspaces have multiple targets. Each target in both the workspaces have storyboard file called Main.storyboard. My problem is to combine one target in the first workspace with a second in another. What is the…

Deepak Sharma
- 5,577
- 7
- 55
- 131
0
votes
1 answer
Is migrate Objc Project which is in AppStore to Swift Project feasible?
I have a project creat by ObjC, and upload to AppStore.
Recently I got a requirement my boss want to Migrate ObjC project to Swift, and creat a new project language choose Swift.
I want to know if I use new Swift project archive upload to…

Beginnerrrrrr
- 537
- 1
- 8
- 27
0
votes
1 answer
Why is there a 'Pods' project separate from my regular project in Xcode?
Scenario:
When I open the iOS folder for my project InTow in Xcode, I see two separate projects in the Navigator Area: InTow and Pods.
As well, when I search recursively within the ios/ folder, there are only two .xcodeproj files: InTow.xcodeproj…

gkeenley
- 6,088
- 8
- 54
- 129
0
votes
1 answer
How to import an Xcode project from GitHub into my Xcode project?
I downloaded the DFURTSPPlayer Xcode project from GitHub but I could not import it into my Xcode project in any way.
I tried to simply drag the xcodeproj file into my project but I couldn't use it. It's like they are 2 separates projects that can't…

dUser
- 81
- 8
0
votes
2 answers
Get creation date of Xcode project
The question is pretty simple, is there a .plist attribute or something like this where the creation date of a Xcode project .xcodeproj is saved?
I can not use the file system creation date, because I copied and pasted the project very often and the…

PascalS
- 975
- 1
- 16
- 40
0
votes
1 answer
Xcode - I changed the Product Module Name, now auto-complete won't work anymore (when using the new module name)
so I have a project with a name that's annoying to type out all the time, when specifying the "namespace" of a class, like
MyAppName.MyClass()
So I changed the Product Module Name in XCode's Build Settings to "Global" so that I can use it like…

SwiftedMind
- 3,701
- 3
- 29
- 63