I’m having trouble in submitting app to playstore…
I’m using plguin as below…
result is to calling contacts and when I select a contact or multiple contacts, then it goes to sms write form
weird thing is that app didn’t ask me any permissoin but it’s working.
var options = {
replaceLineBreaks: false,
android: {
intent: 'INTENT'
}
}
if(this.Text=="") return;
else {
setTimeout(()=>{
this.sms.send('', this.Text, options).then(()=>{
}).catch((e)=>{
window.alert("error"+e);
console.log(e);
this.sms.send('', this.Text, options).then(()=>{
}).catch((e)=>{
console.log(e);
})
})
},500)
console.log(this.platform2.is());
}
is it right to check Default SMS handler when I submit app?
google rejected app for below reson
Based on our review, we found your app’s expressed user experience did not match your declared core functionality {Default SMS handler (and any other core functionality usage while default handler)}. Please remove these permissions from your app.
Default handler capability was listed on your declaration form, but your app does not appear to have default handler capability. Please submit a revised declaration form.