Hi.
What permissions do I need to include in the initialization of the app to publish it on the Play Store, for an app that also does:
1 - Sends SMS to three pre-configured phones by the user.
2 - Stores personal information that may or may not be entered by the user.
3 - Makes calls (through the phone's native app) to numbers pre-configured by the user or accessing their contacts.
Thanks
Anything here that helps ?
In my case, the PlayStore team is rejecting app updates, claiming that it does not request user permission. Since 2023, I have been trying to submit an update. It comes back as "rejected." I have even tried trial and error with the list of permissions available there, and always get the same response. As I mentioned, the app has a local database with the user's personal data. The user registers 3 numbers to send pre-written SMS messages and takes action to send them (2 clicks), and it makes calls to numbers pre-registered by the user. And I don't know what else to do to update the app for the users.
See the answers in this thread
What about providing a screenshot of the rejection, so we can take a look together?
Taifun
What did you declare in that declaration?

Taifun
health app
SMS and call log permissions
As I wrote, I've already done it using some logic, one at a time (with some logic) and all of them, one by one (trial and error)
Now with sdk 35 you will not be able to publish an app in Google Play which programmatically sends a sms
My guess is you are using method SendMessageDirect. Use SendMessage instead
From the documentation Social
Texting
A component that will, when theSendMessagemethod is called, launch the device’s preferred texting app to send the text message specified in theSendMessageproperty to the phone number specified in thePhoneNumberproperty. You may also send text messages without user interaction by callingSendMessageDirectinstead, but this adds dangerous permissions to your final app.
Also read Permissions and APIs that Access Sensitive Information - Play Console Help about sms permissions
SMS permission group (for example, READ_SMS, SEND_SMS, WRITE_SMS, RECEIVE_SMS, RECEIVE_WAP_PUSH, RECEIVE_MMS)
Apps lacking default SMS, Phone, or Assistant handler capability may not declare use of the above permissions in the manifest. This includes placeholder text in the manifest. Additionally, apps must be actively registered as the default SMS, Phone, or Assistant handler before prompting users to accept any of the above permissions
And read the other thread again Error 908 in android 15 − (im)possible to send an automated SMS
Taifun
Hello, Taifun and TIMAI2. To avoid missing the deadline to update the API, I took the last version I had, which I thought was the one that was published, recompiled it, and resubmitted it to the PlayStore. After two weeks, a sensible team must have reviewed the code, and finally, after almost three years without updating this App, it was updated!!!! On attempt number 28, which is currently the version number. Users will find the big jump in the update number from 4 to 28 surprising!!! But I appreciate your support and effort!I will share here how the App permissions code looks. I just don’t know how, in this new version of the PlayStore, to get to the part where I have to declare information about the App, to share it here as well.
This post was flagged by the community and is temporarily hidden.


