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

Commit 2bf1ddd

Browse files
authored
Merge pull request #107 from hoastoolshop/master
Add podspec
2 parents 2f15f17 + 2238ea7 commit 2bf1ddd

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,13 @@ Link package using [rnpm](https://github.com/rnpm/rnpm)
5757
rnpm link
5858
```
5959

60+
Or if using CocoaPods, add the pod to your `Podfile`, for example:
61+
62+
```
63+
pod 'react-native-fetch-blob,
64+
:path => '../node_modules/react-native-fetch-blob
65+
```
66+
6067
### Manually link the package (Android)
6168

6269
If rnpm link command failed to link the package automatically, you might try manually link the package.

src/react-native-fetch-blob.podspec

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Pod::Spec.new do |s|
2+
s.name = "react-native-fetch-blob"
3+
s.version = "0.9.3"
4+
s.summary = "A project committed to make file acess and data transfer easier, effiecient for React Native developers."
5+
s.requires_arc = true
6+
s.license = 'MIT'
7+
s.homepage = 'n/a'
8+
s.authors = { "wkh237" => "xeiyan@gmail.com" }
9+
s.source = { :git => "https://github.com/wkh237/react-native-fetch-blob" }
10+
s.source_files = 'ios/**/*.{h,m}'
11+
s.platform = :ios, "7.0"
12+
s.dependency 'React/Core'
13+
end

0 commit comments

Comments
 (0)