java.lang.SecurityException: Unknown calling package name ‘com.google.android.gms’

2026年2月1日

https://github.com/flutter/flutter/issues/178332

以下を追加して解決

<uses-permission android:name=”com.google.android.gms.permission.ACTIVITY_RECOGNITION” />

windows-11 update 23H2 error 0x80070003

2026年1月29日

https://answers.microsoft.com/en-us/windows/forum/all/trying-to-upgrade-to-windows-11-error-0x80070003/5ed2b4e0-72c0-46b2-9dbb-2e0b8d40dddd

https://www.winhelponline.com/blog/fix-efi-boot-partition-guid-set-id/

powershell error : & : AuthorizationManager check failed

2025年12月31日

ps1 ファイルが他所からダウンロードされたものであれば、ブロックされている可能性があるので、プロパティでアンブロックする

[Firebase functions] Upgrading from 1st Gen to 2nd Gen is not yet supported.

2025年12月28日

https://stackoverflow.com/questions/76829663/error-when-deploying-2nd-gen-firebase-cloud-function

アップグレードはできないので、一度削除してから再作成する

Windows 10 CHM Help Files showing up blank.

2025年6月7日
https://community.spiceworks.com/t/solved-windows-10-chm-help-files-showing-up-blank/556912

Android Studio – BuildConfig could not resolve

2025年5月26日

https://stackoverflow.com/questions/76215947/buildconfig-could-not-resolve-after-upgrading-android-studio-to-flamingo-2022/76451943

Add follwoing setting into app/build.gradle

android {
  buildFeatures {
    buildConfig true
  }
}

 

 

Namespace not specified. Specify a namespace in the module’s build file: …/app/build.gradle

2025年4月15日

remove package attribute form <manifest> in AndroidManifest.xml

add ‘namespace’ in ‘android’ in app/build.gradle

android {

namespace "com.xxx.yyy.zzzzzz"

}

UserWarning: FigureCanvasAgg is non-interactive, and thus cannot be shownplt.show()

2025年4月13日

https://discourse.matplotlib.org/t/figurecanvasagg-interactivity-problem/24042

https://stackoverflow.com/questions/77507580/userwarning-figurecanvasagg-is-non-interactive-and-thus-cannot-be-shown-plt-sh

Solved by installing PyQt6

pip install PyQt6

git error: RPC failed; curl 56 GnuTLS recv error (-9): Error decoding the received TLS packet.

2025年3月13日

https://stackoverflow.com/questions/38378914/how-to-fix-git-error-rpc-failed-curl-56-gnutls

git config --global http.postBuffer 1048576000
git config --global https.postBuffer 1048576000

https://github.com/orgs/community/discussions/134430

ReactNative Error: Can’t create handler inside thread Thread[create_react_context,5,main] that has not called Looper.prepare()

2025年3月12日
java.lang.RuntimeException: Can't create handler inside thread Thread[create_react_context,5,main] that has not called Looper.prepare()
Need to pass 'Looper.getMainLooper()' to constructor of Handler