Developer Tools– category –
-
How to resolve the error “http.postBuffer” when push to Git repository
When pushing to a remote Git repository, the following error may occur and cause it to fail. error: unable to rewind rpc post data - try increasing http.postBuffer error: RPC failed; curl 56 LibreSSL SSL_read: Connection reset by peer, e... -
Check build environment from Info.plist
After an application or library is released, when bugs need to be corrected, the build environment of that time may be required. Usually, using the latest version of the environment at the time of the correction is not a problem. However... -
About iOS Developer Mode
Developer mode was introduced with iOS 15. When developer mode is turned off, you cannot develop apps using the actual device, such as installing and debugging an app under development. This article explains how to turn on developer mode... -
Setting up a GitLab account on Xcode
Once you have set up a GitLab account in Xcode, you can access GitLab repositories directly from Xcode. This article explains how to set up a GitLab account in Xcode. 【Generate a personal access token】 To access GitLab from Xcode, you ... -
Setting up a GitHub account on Xcode
Once you set up a GitHub account in Xcode, you can access GitHub repositories directly from Xcode. This article explains how to set up a GitHub account in Xcode. 【Generate the access token】 To access GitHub with Xcode, you need an acce... -
What to do when you can’t run iOS simulator on Apple Silicon Mac (arm64 binary error)
Depending on the framework incorporated into the application, the following error may occur and prevent the iOS simulator from running on an Apple Silicon Mac. ld: in /Volumes/Data/src/RK/TechGakuWebSite/SampleCodes/OpenCVTest_iOS/common... -
Setup Xcode
We use the Xcode to develop applications for the Apple Platform. This article introduce things to start developing. 【Register to the Apple Developer Program】 If you just want to develop an app, get documentation and sample code, and ru... -
How to export digital certificates on Mac
The Mac uses Keychain Access to manage the installed digital certificates. Keychain Access manages not only digital certificates, but also the following information. Accounts (ID and Password)Secret MemosDegital certificatesPublic keysPr... -
Configure the code signing setting of the Xcode project with the configuration settings file
When you are working on an iOS app project file and plan to distribute it as open source or sample code, you may not want to set code signing settings in the project file. However, while working locally, you need to set the code signing ... -
Archive only changed files from Git repository
Git is a version control system and manages the changed history of files. Thanks to this feature, anyone cloned same repository can merge changes made by other users. How to do when you want to send the only changes files to other? If th...
12