Permission READ_SMS help me

I need to activate the permissions and I can not, can anyone help me?

It’s because you can not activate. You’re giving this error.

I tried with these blocks and it only worked to activate the camera

1 Like

There is 1 error (red cross mark) in your blocks
(this may or may not be related with your query but you should first remove your error before compiling your project)

3 Likes

Refer here to learn permission names.

https://developer.android.com/guide/topics/permissions/overview#normal_permissions

Also,

What do you mean? Doesn’t Android allow to change permissions with the Settings app?

2 Likes

The problem is that it does not work
android.permission.READ_SMS

1 Like

Maybe try with these blocks:
image

I’ve tried it so, but not active see the image

READ

TESTE.mp4 (1.5 MB)

and I need this two activated

Did you think allowing SMS will enable Phone and Contact permission?

2 Likes
  • SEND_SMS
  • RECEIVE_SMS
  • READ_SMS
  • RECEIVE_WAP_PUSH
  • RECEIVE_MMS

I’ve tried all of them none

2 Likes

Your app doesn’t want SMS permission, but why you need to use that? Also which extension or component wants SMS permission?

1 Like

I need to get the phone number, IMEI and email automatically in the user registry


TaifunAM1


TaifunTM1

You still didn’t say why do you need SMS permission.

  1. Taifun’s Account Manager and Telephony Manager extension doesn’t want SMS permission.
  2. You are trying to request permission which is not added to your app.
  3. Your app doesn’t want SMS permission, so don’t request for SMS permission.
1 Like

is there a way remove permissions?

If you remove a component, then all required permissions for that component will be removed if they are not required for another component.

sagol hallettim. one of my extension ask that permissions.so i remove it.

1 Like

Technically, you can. Decompile your project, find the AndroidManifest.xml and remove the permissions you don’t want. However, you should know that your app may not work corretly if it does not have the nessecary permissions.

My favourite tool for doing this is apktool. You can find instructions here: