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

Commit cd4c136

Browse files
committed
Merge branch 'master' into 0.9.4
2 parents 274d526 + 663e073 commit cd4c136

File tree

4 files changed

+41
-1
lines changed

4 files changed

+41
-1
lines changed

.github/PULL_REQUEST_TEMPLATE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Thank you for making a pull request ! Just a gentle reminder :)
22

33
1. If the PR is offering a feature please make the request to our "Feature Branch" 0.10.0
4-
2. Bug fix request to "Bug Fix Branch" 0.9.2
4+
2. Bug fix request to "Bug Fix Branch" 0.9.4
55
3. Correct README.md can directly to master

CONTRIBUTORS.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
Dmitry Petukhov <[email protected]>
3+
4+
Erik Smartt <[email protected]>
5+
6+
Evgeniy Baraniuk <[email protected]>
7+
8+
Juan B. Rodriguez <[email protected]>
9+
10+
11+
12+
Nguyen Cao Nhat Linh <[email protected]>
13+
14+
15+
16+
francisco-sanchez-molina <[email protected]>
17+
18+

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,15 @@ pod 'react-native-fetch-blob,
6868

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

71+
Open `android/app/build.gradle`, add this line
72+
73+
```diff
74+
dependencies {
75+
...
76+
+ compile project(':react-native-fetch-blob')
77+
}
78+
```
79+
7180
Open `android/settings.gradle`, and add these lines which will app RNFetchBlob Android project dependency to your app.
7281

7382
```diff

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" => "[email protected]" }
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)