Android
The "chunk" argument must be of type string or an instance of Buffer.
고.니
2020. 7. 10. 23:48
반응형
plugins/cordova-plugin-fcm/scripts/fcm_config_files_process.js 파일변경
// 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);
https://prettycode.tistory.com
반응형