Cordova導入エラー:Error:SSL peer shut down incorectly
555 ワード
もともと今日は楽しかったです。Cordovaプロジェクトを導入すると次のようなエラーが発生します。
Error:SSL peer shut down incorrectly
Consult IDE log for more details (Help | Show Log)
解決方法は、Projectのbuild.gradleのmaven括弧の中のhttpsをhttpに変えます。
buildscript {
repositories {
maven {
//https http
url "http://maven.google.com"
}
jcenter()
}
allprojects {
repositories {
maven {
//https http
url "http://maven.google.com"
}
jcenter()
}
}