Skip to content

Commit 9908ebf

Browse files
authored
Update README.md
1 parent 50f14ae commit 9908ebf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ target 'YourAwesomeProject' do
5454
end
5555
```
5656

57-
_⚠️ If you encounter the error `Invalid RNPermission X. Should be one of: ()`, try to cleanup Xcode junk data with `npx react-native-clean-project --remove-iOS-build --remove-iOS-pods`_
57+
_⚠️ If you encounter the error `Invalid RNPermission X. Should be one of: ()`, first check that you link at least one permission handler. If you did, try to cleanup Xcode junk data with `npx react-native-clean-project --remove-iOS-build --remove-iOS-pods`_
5858

5959
Then update your `Info.plist` with wanted permissions usage descriptions:
6060

@@ -578,5 +578,5 @@ async function requestAll() {
578578
return {cameraStatus, contactsStatus};
579579
}
580580

581-
console.log(requestAll());
581+
requestAll().then(statuses => console.log(statuses));
582582
```

0 commit comments

Comments
 (0)