Post not yet marked as solved
Hello:My app's entire production public database was cleared. All user data is gone. I do not see how that could have happened. But it looks to have happened this morning at around 5 AM GMT.Has anyone experienced this before?
Post not yet marked as solved
Hello -
My project uses CocoaPods so I was happy to see the support in the docs - However, I cannot install CocoaPods with the ci_post_clone.sh script, following the example in the docs ...
#!/bin/sh
# Install CocoaPods using Homebrew.
brew install cocoapods
# Install dependencies you manage with CocoaPods.
pod install
Resulting error is ...
2021-07-02T05:55:06.436073Z ERROR: Error installing cocoapods-1.10.1.gem:
2021-07-02T05:55:06.436460Z ERROR: Failed to build gem native extension.
2021-07-02T05:55:06.436635Z
2021-07-02T05:55:06.437286Z current directory: /Users/local/Homebrew/Cellar/cocoapods/1.10.1_1/libexec/gems/ffi-1.15.3/ext/ffi_c
2021-07-02T05:55:06.437609Z /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/bin/ruby -I /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0 -r ./siteconf20210701-87609-15s4rbx.rb extconf.rb
2021-07-02T05:55:06.437754Z *** extconf.rb failed ***
2021-07-02T05:55:06.438075Z Could not create Makefile due to some reason, probably lack of necessary
2021-07-02T05:55:06.438198Z libraries and/or headers. Check the mkmf.log file for more details. You may
2021-07-02T05:55:06.438509Z need configuration options.
Also - there seems to be no way to get the build logs from the environment - and they are not includ with environment. You cannot cat them in the script, since it seems as soon as the brew build fails, the file is erased. For example, the following log is accessible with a cat of the file name.
2021-07-02T05:55:06.448577Z To see why this extension failed to compile, please check the mkmf.log which can be found here:
2021-07-02T05:55:06.448981Z
2021-07-02T05:55:06.449412Z /Users/local/Homebrew/Cellar/cocoapods/1.10.1_1/libexec/extensions/universal-darwin-20/2.6.0/ffi-1.15.3/mkmf.log
Thanks.
Hello:I am seeing the following error under Xcode 10.0. The error is noted with line 2 of the enclosed code segment. It has me stumped.It was previously working under XCode 9.4, meaning I was able to create the archive.I can build it without issue, but when I try to "Archive", it does not build, and results in the "Swift Compile Error": "Argument passed to call that takes no arguments"I can "Build" and run in the iOS 12 Simulator and on an actual iOS 12 device.It fails when I attempt "Archive" in Xcode. I cannot create the archive via Fastlane either. Fastlane results in the same error.This code is Swift 4, not Swift 4.2.let textFieldRect = CGRect(x: 10.0, y: 10.0, width: 100.0, height: 100.0)
let textField1 = UITextField(frame: textFieldRect)Thanks.