I have a map activity in my app. I\'m trying to request location permissions on it, but the request permissions are not showing up. I have no idea why...
This is my ful
After spending days about this issue, I found out that the reason that the request permissions are not showing up is because of the TabHost.
I've tried to request permissions from a Map Activity which was a part of TabHost in a MainActivity. Now I understood that it is impossible requesting permissions from an activity in TabHost.
After I've moved the request permissions code from the MapActivity to the MainActivity, It worked.