Shahzad Majeed
Shahzad Majeed
Hi, i'm facing same issue. Is there a temp code change that I can make until this fix is released?
@maxchuquimia in my case the problem was SPM checkouts that Xcode put under deriveddata directory for example /Users/my_user/Library/Developer/Xcode/DerivedData/ProjectABC-dplbttsrwvxakmcyjcbmjrnmcxnv/SourcePackages/checkouts I fixed this issue by manually pointing xcgrapher to this path. I...
Unfortunately xcgrapher is still throwing error for a file that does exits in one of swift package [main] The file “AccessibilityAdapter.swift” couldn’t be opened because there is no such file.
FWIW: It works with single Tuist setup for multiple projects i.e root level `Tuist` folder that is used for all projects in workspace..
I like this proposal but I suggest an alternative course.. we should introduce the ability to define `workflows` Use Yaml files or Swift (whatever makes sense) but something like: ```swift...
For sure, we can create a remote tuist plugin to introduce a tuist command `tuist workflow -p {yaml_or_swift_manifest_file}` that anybody can use
> ```swift > "HEADER_SEARCH_PATHS": "$(SRCROOT)/Vendor/** $(SRCROOT)/AppCenter/AppCenter/Internals $(SRCROOT)/AppCenter/AppCenter/Internals/Model $(SRCROOT)/AppCenter/AppCenter/Internals/Model/Util $(SRCROOT)/AppCenter/AppCenter/Internals/Util $(SRCROOT)/AppCenter/AppCenter/Internals/Channel $(SRCROOT)/AppCenter/AppCenter/Internals/Model/CommonSchema $(SRCROOT)/AppCenter/AppCenter/Internals/Context/Device $(SRCROOT)/AppCenter/AppCenter/Internals/Context/Session $(SRCROOT)/AppCenter/AppCenter/Internals/Context/UserId $(SRCROOT)/AppCenterCrashes/AppCenterCrashes/Internals $(SRCROOT)/AppCenterCrashes/AppCenterCrashes/Model $(SRCROOT)/AppCenterCrashes/AppCenterCrashes/include $(SRCROOT)/AppCenterCrashes/AppCenterCrashes/Internals/Util $(SRCROOT)/AppCenterCrashes/AppCenterCrashes/Internals/Model", > ``` @mikeger did it compile for you with following code...
I had to add `OTHER_LDFLAGS: $(inherited) -lc++` to my target that depends on AppCenter as a dependency and now it is working fine.
So, I have been able to reduce above settings to the following: `In Dependencies.swift` ```swift public static var targetSettings: [String: SettingsDictionary] { [ "CrashReporter": [ "USE_HEADERMAP": "YES", ], "AppCenterAnalytics": [...
Hopefully, this will be helpful for narrowing down the problem further.