Private Sub Button1_Click
Dim in As Intent
in.Initialize("android.intent.action.UNINSTALL_PACKAGE", "package:" & Application.PackageName)
StartActivity(in)
End Sub
Private Sub Button1_Click
Dim in As Intent
in.Initialize("android.intent.action.UNINSTALL_PACKAGE", "package:" & Application.PackageName)
StartActivity(in)
End Sub
Private Sub Button1_Click
Dim in As Intent
in.Initialize("android.intent.action.UNINSTALL_PACKAGE", "package:" & Application.PackageName)
StartActivity(in)
End Sub
as it is not a dangerous permission and you do not use runtimepermissions at all (not needed) it seems to be an Android permission-system.
It is the user (not the app) which have to decide to accept permission or not.
You can not overcome this i guess.
as it is not a dangerous permission and you do not use runtimepermissions at all (not needed) it seems to be an Android permission-system.
It is the user (not the app) which have to decide to accept permission or not.
You can not overcome this i guess.