You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have been trying this plugin on all versions from 7 to 14 and we have found that specifically in android version 13, Samsung models, the permission pop up for writing on the external storage isn't showing up. It doesn't even show an option to allow the storage in the phone settings > app > permissions
The text was updated successfully, but these errors were encountered:
consttryGetPermission=async()=>{returnnewPromise((resolve,reject)=>{constpermissions=cordova.plugins.permissions;if(!permissions){returnresolve(false)}permissions.checkPermission(permissions.WRITE_EXTERNAL_STORAGE,asyncfunction(status){if(status.hasPermission){resolve(true);}else{permissions.requestPermission(// the permission pop up does not work.permissions.WRITE_EXTERNAL_STORAGE,asyncfunction(status){resolve(status.hasPermission)//status.hasPermission = false},function(){reject(false);});}},function(){reject(false);});});}
consttryGetPermission=async()=>{returnnewPromise((resolve,reject)=>{constpermissions=cordova.plugins.permissions;if(!permissions){returnresolve(false)}permissions.checkPermission(permissions.WRITE_EXTERNAL_STORAGE,asyncfunction(status){if(status.hasPermission){resolve(true);}else{permissions.requestPermission(// the permission pop up does not work.permissions.WRITE_EXTERNAL_STORAGE,asyncfunction(status){resolve(status.hasPermission)//status.hasPermission = false},function(){reject(false);});}},function(){reject(false);});});}
We have been trying this plugin on all versions from 7 to 14 and we have found that specifically in android version 13, Samsung models, the permission pop up for writing on the external storage isn't showing up. It doesn't even show an option to allow the storage in the phone settings > app > permissions
The text was updated successfully, but these errors were encountered: