Android Question android.permission.WRITE_SECURE_SETTINGS

berndm2

Member
Licensed User
Longtime User
I would like to process an incoming telephone number for evaluation and have to reset the pin number: My mobile phone is rooted.
Command: admin.ResetPassword("")

Manifest: <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"></uses-permission>

The android.permission query is negative. What am I doing wrong?

rp.CheckAndRequest("android.permission.WRITE_SECURE_SETTINGS")
Wait For Activity_PermissionResult (Permission As String, Result As Boolean)
If Result=False Then
Msgbox("false.." ,"")
End If
 
Top