Questions tagged [expo-permissions]
21 questions
0
votes
1 answer
How to ask for permissions for a lib that doesn't provide any RequestPermission helper function?
I've read the new Expo docs regarding asking permissions ... And It's not clear if you're facing a lib that doesn't provide an helper for permissions !
The only thing I've noticed is in this sentence :
Most permissions are added automatically by…

Seba99
- 1,197
- 14
- 38
0
votes
1 answer
Expo Android App does not require any permissions by default
The documentation here states that an android app will require all permissions by default. However, mine does not require any. I have not provided android.permissions in my app.json
Why is that?

Ali
- 484
- 3
- 5
- 16
0
votes
1 answer
Does ComponentDidMount need to be used when you want the user to be prompted to allow locations, notifications, etc only after a button click?
I'm trying to create my first React Native App so I started with expo, but I have issues with componentDidMount.
From what I've seen, to allow the user to be prompted to allow notifications, locations, etc; Using componentDidMount will prompt the…
0
votes
1 answer
Can I use expo packages or libraries in bare work flow, I used some permissions and
Can I use expo packages or libraries in bare work flow, I used some permissions and apploading these type of blah blah packages in my expo project and ejected to bare work flow, after running react-native run-android getting error expo require expo…

Muhammad Faisal
- 315
- 3
- 14
0
votes
1 answer
React Native Camera shows blank screen with loading spinner
I am working in react native with expo and I am trying to implement react native camera. However, when I implement it into my own code and even use this usage code, it shows a blank screen with a loading icon and gives the warning
Unhandled…

Luke20w
- 76
- 4
0
votes
1 answer
expo-permissions - Error: Unrecognized persmission: location
It's a bare reacts native project.
Code I'm using:
import * as unimodules from 'react-native-unimodules';
// ...
unimodules.Permissions.getAsync(unimodules.Permissions.LOCATION)
.then(console.info)
.catch(console.error)
;
version in…

Vasiliy vvscode Vanchuk
- 7,007
- 2
- 21
- 44