Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ API 30 or higher.
npm install react-native-file-access
cd ios && pod install
```

``` Note:
issue with iOS Linking:
if iOS is unable to link automatically got to you ios podFile and add this:
pod 'react-native-file-access', :path => '<Location_to_your_node_modules>/node_modules/react-native-file-access'
```
Apple restricts usage of certain privacy sensitive API calls. If you do not
use disk space measurements or file timestamps, define the following variable
in your Podfile to exclude restricted API calls.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package = JSON.parse(File.read(File.join(__dir__, "package.json")))
folly_compiler_flags = '-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32'

Pod::Spec.new do |s|
s.name = "ReactNativeFileAccess"
s.name = "react-native-file-access"
s.version = package["version"]
s.summary = package["description"]
s.homepage = package["homepage"]
Expand Down