Git Product home page Git Product logo

Comments (5)

oteinone avatar oteinone commented on May 30, 2024 5

If anyone else stumbles here, here's a short explanation:

Currently Android requires you to request these permissions separately on the go. Having uses-permission in manifest is not enough. The camera roll picker component has not updated to include this feature.

I managed to get the component working without any problems by asking the permission myself in the component using camera roll component. I added "rollPermissionExists" to the parent component's state and only show the camera roll component if rollPermissionExists is true

Here's a few code snippets to help anyone struggling with this (also remember to add rollPermissionExists and default value to your state).

Add PermissionsAndroid to your component

import { PermissionsAndroid } from 'react-native';

Call this method when you are about to show the camera roll component

// The 
async requestExternalStorageAccess() {
	try {
		const granted = await PermissionsAndroid.request(
			PermissionsAndroid.PERMISSIONS.READ_EXTERNAL_STORAGE,
		);
		if (granted === PermissionsAndroid.RESULTS.GRANTED) {
			this.setState({ rollPermissionExists: true })
		} else {
			this.setState({ rollPermissionExists: false })
		}
		} catch (err) {
		console.warn(err);
		}
}

Only show the picker if rollPermissionExists is true in render()

{ this.state.rollPermissionExists && <CameraRollPicker ... /> }

from react-native-camera-roll-picker.

daose avatar daose commented on May 30, 2024

You'll want to edit your AndroidManifest.xml to include that permission (usually located ./android/app/src/main/AndroidManifest.xml)

Add the line:

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

from react-native-camera-roll-picker.

shushuy avatar shushuy commented on May 30, 2024

Any update on this? I have the same problem even with

added to the AndroidManifest.xml

from react-native-camera-roll-picker.

rajnishcoder avatar rajnishcoder commented on May 30, 2024

Same problem and I'm working on latest React native version 0.55.2 and I don't have any android or iOS folder

from react-native-camera-roll-picker.

rajnishcoder avatar rajnishcoder commented on May 30, 2024

agreed with @daose and if you are newly setup your project and cannot able to find android folder so run react-native eject read more to eject iOS and android app from react app.

and make sure you added CAMERA permission too like this:-

<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

in your /android/app/src/main/AndroidManifest.xml file.

from react-native-camera-roll-picker.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.