I couldn't find the answer to this anywhere, so please help.
Suppose I have 10 activities that needs various dangerous permissions in my Android application.
Activity-1 needs Dangerous Permission-1
Activity-2 needs Dangerous Permission-2
...
Activity-10 needs Dangerous Permission-10 ect.
Question: If I create an 11th activity [lets say PermissionManager.java] and gets all the 10 permissions from user dynamically one after another, will the application work?
Or
Is it like each activity should request the permissions it requires?