https://github.com/flutter/flutter/issues/178332
以下を追加して解決
<uses-permission android:name=”com.google.android.gms.permission.ACTIVITY_RECOGNITION” />
https://github.com/flutter/flutter/issues/178332
以下を追加して解決
<uses-permission android:name=”com.google.android.gms.permission.ACTIVITY_RECOGNITION” />
ps1 ファイルが他所からダウンロードされたものであれば、ブロックされている可能性があるので、プロパティでアンブロックする
https://stackoverflow.com/questions/76829663/error-when-deploying-2nd-gen-firebase-cloud-function
アップグレードはできないので、一度削除してから再作成する
Add follwoing setting into app/build.gradle
android {
buildFeatures {
buildConfig true
}
}
remove package attribute form <manifest> in AndroidManifest.xml
add ‘namespace’ in ‘android’ in app/build.gradle
android {
namespace "com.xxx.yyy.zzzzzz"
…
}
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
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