Просмотр исходного кода

Merge branch 'master' into 0.9.4

Ben Hsieh 8 лет назад
Родитель
Сommit
cd4c13665a
4 измененных файлов: 41 добавлений и 1 удалений
  1. 1
    1
      .github/PULL_REQUEST_TEMPLATE
  2. 18
    0
      CONTRIBUTORS.md
  3. 9
    0
      README.md
  4. 13
    0
      src/react-native-fetch-blob.podspec

+ 1
- 1
.github/PULL_REQUEST_TEMPLATE Просмотреть файл

1
 Thank you for making a pull request ! Just a gentle reminder :)
1
 Thank you for making a pull request ! Just a gentle reminder :)
2
 
2
 
3
 1. If the PR is offering a feature please make the request to our "Feature Branch" 0.10.0
3
 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
5
 3. Correct README.md can directly to master
5
 3. Correct README.md can directly to master

+ 18
- 0
CONTRIBUTORS.md Просмотреть файл

1
+
2
+Dmitry Petukhov <dmitryvpetukhov@gmail.com>
3
+
4
+Erik Smartt <code@eriksmartt.com>
5
+
6
+Evgeniy Baraniuk <ev.baraniuk@gmail.com>
7
+
8
+Juan B. Rodriguez <jbrodriguez@gmail.com>
9
+
10
+Kaishley <kklingachetti@msn.com>
11
+
12
+Nguyen Cao Nhat Linh <nhatlinh95@gmail.com>
13
+
14
+follower <github@rancidbacon.com>
15
+
16
+francisco-sanchez-molina <psm1984@gmail.com>
17
+
18
+smartt <github@eriksmartt.com>

+ 9
- 0
README.md Просмотреть файл

68
 
68
 
69
 If rnpm link command failed to link the package automatically, you might try manually link the package.
69
 If rnpm link command failed to link the package automatically, you might try manually link the package.
70
 
70
 
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
+
71
 Open `android/settings.gradle`, and add these lines which will app RNFetchBlob Android project dependency to your app.
80
 Open `android/settings.gradle`, and add these lines which will app RNFetchBlob Android project dependency to your app.
72
 
81
 
73
 ```diff
82
 ```diff

+ 13
- 0
src/react-native-fetch-blob.podspec Просмотреть файл

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