Android permission: perform unknown action

I am working on an Android app that uses the Android SEEK to access the SIM. I need the following permission:

<uses-permission android:name="org.simalliance.openmobileapi.SMARTCARD"/>

      

The security level of this permission is "dangerous", so I have to ask the user to grant this permission at runtime (otherwise it throws a SecurityException). But the message in the dialog says the application wants to perform an unknown action (see image below).

enter image description here

How can I customize this dialog so the user knows the application needs Smartcard permission?

+3


source to share





All Articles