Currently utilizing Ionic 3
uintToString(uintArray) {
var encodedString = String.fromCharCode.apply(null, uintArray),
decodedString = decodeURIComponent(escape(encodedString));
return decodedString;
It performs efficiently on the ionic serve command! However, encountering an issue when executing 'ionic cordova run android --device'
An error occurs stating that it cannot find the name 'escape'.
What is the best approach to convert a uint array into a UTF-8 string in Ionic 3?