React-native-document-picker: exception: 'Application initializing document picker is missing the iCloud entitlement',

Created on 3 Jan 2018  路  5Comments  路  Source: rnmods/react-native-document-picker

I am getting an exception: 'Application initializing document picker is missing the iCloud entitlement', whenever I clicked on the button. how can I resolve this issue? please suggest me any solution. thanks in advance.
screen shot 2018-01-03 at 3 22 06 pm
/* this is piece of code i am working with */
import { DocumentPicker, DocumentPickerUtil } from 'react-native-document-picker';
export class EditInformation extends Component {

docPicker() {
DocumentPicker.show({
filetype: [DocumentPickerUtil.images()]
},(error, res) => {
});
}
render() {
return (



)}
}

Most helpful comment

Please read the reminder at the bottom of the readme:

https://github.com/Elyx0/react-native-document-picker#reminder

All 5 comments

Please read the reminder at the bottom of the readme:

https://github.com/Elyx0/react-native-document-picker#reminder

is it compulsary to use xcode IDE, as i am using Atom IDE.

No, but you do need Xcode to edit your project settings.

It is possible to use the library without icloud options?

No, that is just how iOS' document picker works.

Was this page helpful?
0 / 5 - 0 ratings