メニュー> Product > Scheme > Edit Scheme… > Run > Info > Build Configuration で “Release” を選択
XCode アプリをReleaseビルドで開始する
2024年10月6日trunk URL couldn’t be downloaded: https://cdn.cocoapods.org/Specs/0/3/5/Firebase/11.1.0/Firebase.podspec.json Response: Error in the HTTP2 framing layer
2024年10月2日https://github.com/CocoaPods/CocoaPods/issues/11939#issuecomment-1668999607
1- At the top of the Podfile add this linesource 'https://github.com/CocoaPods/Specs.git'
2- Remove the Podfile.lock file
3- pod repo remove trunk
4- pod install
Kotlin compilation fails: Could not connect to Kotlin compile daemon
2024年10月2日https://youtrack.jetbrains.com/issue/KT-31602/Could-not-connect-to-Kotlin-compile-daemon
Edit
/gradle.properties
to increase ‘-Xmx’ of ‘org.gradle.jvmargs’
#org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m
org.gradle.jvmargs=-Xmx4g -XX:MaxMetaspaceSize=512m
yarn.lock is created in user’s home directory, and prevent ‘yarn install’ any folder under user’s home
2024年10月2日https://github.com/yarnpkg/berry/issues/4362
It seems like a bug of yarn. After update yarn by ‘npm install –global yarn’, and remove yarn related files in home directory, my issue was fixed
Firestoreのデータをエミュレータにインポートするには
2024年9月15日CMake Error: Problem with archive_write_finish_entry(): Can’t restore time
2024年9月13日vcpkg でパッケージをインストール中に起きたエラー。私のケースでは、最後の FAT ー> NTFS で解決。PCを更新した際に vcpkg フォルダごとFATのディスクにバックアップしたのが原因。
macOSでポートが使われているか調べる
2024年9月1日
sudo lsof -i :<port>
IISをHTTPSで開くとERR_SSL_KEY_USAGE_INCOMPATIBLEのエラー
2024年8月27日https://learn.microsoft.com/en-us/answers/questions/1517411/how-to-fix-the-err-ssl-key-usage-incompatible-micr
PowerShellを開いて以下のコマンドで証明書を再作成し、入れ替えてIISを再起動。
New-SelfSignedCertificate -FriendlyName ANY_CERT_NAME -DnsName YOUR_SERVER_PC_NAME -KeyUsage DigitalSignature