Skip to main content
0 votes
0 answers
14 views

Testing my React-Native app Offline/Online with Network Link Conditioner

I put you in context, I'm developing an React-Native app to send forms to a database, users can submit forms offline, when then connection is reactivated the form is sent, there are several steps in ...
HugoTek's user avatar
  • 51
1 vote
0 answers
202 views

How can I install Xcode Tools and use PacketLogger on Big Sur 11.3?

It's hard to find information about PacketLogger, but it seems to be a defunct Xcode tool. I'm hoping to use it on Big Sur (MBP 2017) to analyze bluetooth traffic between my iPhone and a third party ...
dagrsk's user avatar
  • 11
2 votes
1 answer
2k views

FirebaseCoreInternal.modulemap not found, trying to build an ios scheme by xcodebuild

i'm trying to build my ios app via xcodebuild. I want to build an specific scheme instead of the whole project (too heavy), so i run this command: xcodebuild build -scheme "Glik" -sdk ...
Pablo Alvarez's user avatar
2 votes
0 answers
91 views

Custom binary for codesign in xcodebuild (handling timestamp service is unavailable)

On one of our projects, we have flaky errors from the codesign binary with timestamp service is unavailable errors. The thing is that these errors are happening way too random and cannot be reproduced ...
tt.Kilew's user avatar
  • 6,074
7 votes
1 answer
10k views

How can I upgrade the built-in Apple Clang on MacOS?

My clang on MacOS that is provided by Apple seems to be a bit outdated. > clang -v Apple clang version 12.0.5 (clang-1205.0.22.9) Target: arm64-apple-darwin22.1.0 Thread model: posix InstalledDir: ...
Jonas's user avatar
  • 128k
2 votes
2 answers
1k views

Updated my macOS to Monterey 12.4 and installed XCode command lines and now my React Native app is not loading on the virtual emulator

I'm building an app with React Native and Firebase, and I updated my Mac to macOS Monterey 12.4, and now my iOS Emulator is not loading with my app at all. I keep getting this error message: 2022-05-...
melee's user avatar
  • 113
1 vote
1 answer
2k views

How to enable capability with Tuist iOS

I use this tool "Tuist" (https://tuist.io) to generate Xcode project. With Tuist we can't edit any settings through Xcode directly. How to enable background mode/notification capability with ...
Human's user avatar
  • 356
2 votes
1 answer
73 views

Can't fix a leak that Leaks Tool points to

I have a method which I use to se tup and show annotation on the map: func setupPlacemark(place: Place, mapView: MKMapView) { guard let location = place.location else { return } let ...
Lex Debash's user avatar
1 vote
1 answer
767 views

How can I remove or ignore arguments from the swift compiler

Im trying to use an older xcode toolchain (3.1) with my latest xcode version (10). Starting with a blank project and trying to build I get the following error. <unknown>:0: error: unknown ...
dubbeat's user avatar
  • 7,847
5 votes
2 answers
2k views

Run Swift 3 from command line using Xcode 8 Beta

Can I run Swift 3 from the command line after installing the Xcode 8 beta? I see that /usr/bin/swift is still the May 5th Swift 2.2. I was hoping to see something like /usr/bin/swift3 but no such luck....
Rick Majpruz's user avatar
3 votes
3 answers
4k views

swift build doesn't work

I'm trying to run Kitura project on XCode. I tried to follow instructions on this page ([https://github.com/IBM-Swift/Kitura/wiki/Building-your-Kitura-application-on-XCode]), however I failed with ...
Alexander Doloz's user avatar
0 votes
1 answer
802 views

Getting error xcodebuild exited with status 6

Running a test bot that's returning this warning and not creating an installable product. Anyone know what that status means? This is the build error: `xcodebuild[98753:3595809] [MT] DVTAssertions: ...
CatLord's user avatar
  • 381
0 votes
1 answer
88 views

Does headerdoc2html not generate an overall index/ToC?

Does headerdoc2html not generate an overall index that lists all the classes in a ToC? When I run this... headerdoc2html -o ~/Desktop/DocTest MyProject I end up with a subfolder for each class in ...
user3842231's user avatar
0 votes
1 answer
918 views

CocoaPods and newer (iOS 8) APIs?

I've got a library that I'm trying to push to CocoaPods trunk, but it won't lint against the iOS 7 SDK, because it contains iOS 8 API calls. Changing the podspec's version to 8.0 does nothing, and ...
Moshe's user avatar
  • 58k