Skip to content
This repository was archived by the owner on Mar 16, 2019. It is now read-only.

Add podspec #107

Merged
merged 3 commits into from Aug 30, 2016
Merged
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
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,13 @@ Link package using [rnpm](https://github.com/rnpm/rnpm)
rnpm link
```

Or if using CocoaPods, add the pod to your `Podfile`, for example:

```
pod 'react-native-fetch-blob,
:path => '../node_modules/react-native-fetch-blob
```

### Manually link the package (Android)

If rnpm link command failed to link the package automatically, you might try manually link the package.
Expand Down
13 changes: 13 additions & 0 deletions src/react-native-fetch-blob.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Pod::Spec.new do |s|
s.name = "react-native-fetch-blob"
s.version = "0.9.3"
s.summary = "A project committed to make file acess and data transfer easier, effiecient for React Native developers."
s.requires_arc = true
s.license = 'MIT'
s.homepage = 'n/a'
s.authors = { "wkh237" => "xeiyan@gmail.com" }
s.source = { :git => "https://github.com/wkh237/react-native-fetch-blob" }
s.source_files = 'ios/**/*.{h,m}'
s.platform = :ios, "7.0"
s.dependency 'React/Core'
end