본문 바로가기

전체 글

[install] npx 설치하기 [npx 와 npm 차이] npm 이란? = 노드 패키지 관리자(Node Package Manager) - node.js의 의존성과 패키지 관리를 위한 패키지 관리자이다. - 버전관리를 지원한다. npx 란? = 노드 패키지 실행(Node Package Execute) - npm을 더 편하게 사용하기 위한 도구이다. 노드 패키지를 실행시키는 도구라고 생각하면 될것 같다. - npx가 하는 일 1) 실행할 패키지가 경로에 설치되어 있는지 확인한다. 2-1) 설치되어 있다면, 해당 패키지를 실행시킨다. 2-2) 설치되어 있지 않다면, 최신 버전을 설치하고 실행시킨다. [npx 설치하기] npx로 http-server를 실행시키려고 하니, npx를 설치하라고 한다. npx가 설치 되어있는지 확인해본다. [wh.. 더보기
[Error] Some problems were found with the configuration of task ':app:processDebugGoogleServices' [Error] Some problems were found with the configuration of task ':app:processDebugGoogleServices' (type 'GoogleServicesTask'). - Type 'com.google.gms.googleservices.GoogleServicesTask' field 'intermediateDir' without corresponding getter has been annotated with @OutputDirectory. * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. .. 더보기
[install] node.js 업그레이드 node.js를 최근 stable 버전으로 업그레이드하는데 해당 버전이 적용되지 않는 문제를 해결하는 과정을 기록했다. node.js가 여러 버전 설치되어 있을 때 원하는 버전을 선택하는 방법이기도 하다. 1. 현재 node.js의 버전을 확인한다. node -v 2. npm 캐시를 삭제한다. npm cache clean -f 3. n 모듈을 설치한다. n은 node.js 버전을 관리하는 모듈이다. npm install -g n 4. n 모듈로 node.js 버전을 설치한다. n stable // 안정 버전 n lts // lts 버전 n latest // 최신 버전 n x.x.x // x.x.x 버전 5. npm도 버전 확인 후, 업데이트 해준다. npm -v npm i -g npm 업데이트 에러 발생.. 더보기
[Error] Execution failed for task ':app:stripDebugDebugSymbols' [Error] * What went wrong: Execution failed for task ':app:stripDebugDebugSymbols'. > No version of NDK matched the requested version 20.0.5594570. Versions available locally: 23.1.7779620 * Try: Run with --stacktrace option to get the stack trace. [해결방법] NDK 버전이 맞지 않아 발생한 오류이다. File - Settings - Appearance & Behavior - System Settings - Android SDK 이동 'SDK Tools' 탭에서 필요한 (에러로그에서 표시된) 버전을 instal.. 더보기
[Error] Execution failed for task 'appcompileDebugJavaWithJavac' [Error] 1 Task failed with an exception. ----------- What went wrong Execution failed for task 'appcompileDebugJavaWithJavac'. javaxxmlbindJAXBException Try Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights. ================================================================= [해결방법] 1. File - Project S.. 더보기
[Error] but repository 'maven' was added by build file 'build.gradle' [Error] A problem occurred evaluating root project '{projectName}'. > Build was configured to prefer settings repositories over project repositories but repository 'maven' was added by build file 'build.gradle' 아래 노란색 체크 표시가 에러 났다는 부분이다. [해결방법] repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) -> repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS) 로 수정 더보기