Archive for the ‘未分類’ Category

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

pip error: This environment is externally managed

2025年3月9日

https://stackoverflow.com/questions/75608323/how-do-i-solve-error-externally-managed-environment-every-time-i-use-pip-3

python3 -m pip config set global.break-system-packages true

error C1090: PDB API call failed, error code ‘3’

2025年3月6日

project properties: C++ > Output files: Program Database Filename
Set empty this field, then rebuild

ReactNative Android : build error > A problem occurred starting process ‘command ‘node”

2025年2月26日

<solution 1> Stop the running Gradle daemon

https://github.com/facebook/react-native/issues/6875

cd android
./gradlew –stop

<solution 2> Open Android Studio from the Terminal to ensures it inherits the environment variables set in your shell.

open -a /Applications/Android\ Studio.app

[expo android gradle buid error] A problem occurred evaluating settings ‘android’. A problem occurred starting process ‘command ‘nod

2025年1月27日

https://stackoverflow.com/questions/47134723/how-to-fix-command-node-issue-while-building-android-app-with-react-native

open Android Studio from terminal using this command for Mac users open -a “Android Studio”