I have in my app multiple permission requests, such as:
rp.CheckAndRequest(rp.PERMISSION_READ_CONTACTS)
rp.CheckAndRequest(rp.PERMISSION_READ_CALL_LOG)
rp.CheckAndRequest(rp.PERMISSION_CALL_PHONE)
I wish that app will start only if the above will approve (since no point opening the app without it)
what is the best way to handle such
rp.CheckAndRequest(rp.PERMISSION_READ_CONTACTS)
rp.CheckAndRequest(rp.PERMISSION_READ_CALL_LOG)
rp.CheckAndRequest(rp.PERMISSION_CALL_PHONE)
I wish that app will start only if the above will approve (since no point opening the app without it)
what is the best way to handle such