에러코드 fcm The "chunk" argument must be of type string or an instance of Buffer or Uint8Array
해결방법
// change
var strings = fs.readFileSync("platforms/android/res/values/strings.xml").toString();
// to
var strings = fs.readFileSync("platforms/android/app/src/main/res/values/strings.xml").toString();
// AND
//change
fs.writeFileSync("platforms/android/res/values/strings.xml", strings);
//to
fs.writeFileSync("platforms/android/app/src/main/res/values/strings.xml", strings);
'프로그래밍 > 하이브리드앱' 카테고리의 다른 글
안드로이드 앱 아이콘 크기 및 업로드용 필요 이미지 (0) | 2022.06.27 |
---|---|
cordova & web pull to refresh (0) | 2022.06.23 |
코도바3. cordova push (0) | 2022.06.16 |
코도바2. cordova 실행 테스트 (0) | 2022.06.13 |
코도바1. 윈도우에 cordova 설치 실행 build까지 (0) | 2022.06.13 |