반응형
ionic serve를 이용해 웹서버 및 페이지를 확인하고, android 에뮬레이터에 올려보려고 했는데, 아래와 같은 에러가 발생하였다.
1 2 3 4 5 6 7 8 9 10 11 12 13 | Failed to restore plugin "cordova-plugin-statusbar" from config.xml. You might need to try adding it again. Error: Failed to fetch plugin https: //github .com /apache/cordova-plugin-statusbar .git via registry. Probably this is either a connection problem, or plugin spec is incorrect. Check your connection and plugin name /version/URL . Error: cmd: Command failed with exit code 1 Error output: npm ERR! code 128 npm ERR! Command failed: C:\Program Files\Git\cmd\git.EXE submodule update -q --init --recursive npm ERR! fatal: 'submodule' appears to be a git command , but we were not npm ERR! able to execute it. Maybe git-submodule is broken? npm ERR! npm ERR! A complete log of this run can be found in : npm ERR! ---_logs\2017-10-11T05_02_42_754Z-debug.log |
대충 해석을 해보면, cordova-plugin-statusbar라는 플러그인이 뭔가 문제가 있는 것 같다.
이런 경우 아래 명령어를 통해 해당 플러그인을 추가해주면 된다.
1 | $ cordova plugin add https: //github .com /apache/cordova-plugin-statusbar .git |
반응형
'개발 > Ionic' 카테고리의 다른 글
[Ionic] Failure INSTALL_PARSE_FAILED_NO_CERTIFICATES (0) | 2017.10.12 |
---|---|
[Ionic] Error: Cannot read property 'replace' of undefined (0) | 2017.10.12 |
[Ionic] app-scripts 모듈을 찾을 수 없을 때 (0) | 2017.10.11 |