Browse Source

Add OkHttp dependency and change replink script

Ben Hsieh 8 years ago
parent
commit
cddd160437
2 changed files with 8 additions and 8 deletions
  1. 1
    1
      src/android/build.gradle
  2. 7
    7
      src/scripts/prelink.js

+ 1
- 1
src/android/build.gradle View File

34
 
34
 
35
 dependencies {
35
 dependencies {
36
     compile 'com.facebook.react:react-native:+'
36
     compile 'com.facebook.react:react-native:+'
37
-    //{RNFetchBlob_PRE_0.28_DEPDENDENCY}
37
+    compile 'com.squareup.okhttp3:okhttp:3.4.1'
38
 }
38
 }

+ 7
- 7
src/scripts/prelink.js View File

35
 
35
 
36
 }
36
 }
37
 
37
 
38
-if(VERSION < 0.28) {
38
+// if(VERSION <= 0.28) {
39
   // console.log('You project version is '+ VERSION + 'which does not meet requirement of react-native-fetch-blob 7.0+, please upgrade your application template to react-native 0.27+, otherwise Android application will not working.')
39
   // console.log('You project version is '+ VERSION + 'which does not meet requirement of react-native-fetch-blob 7.0+, please upgrade your application template to react-native 0.27+, otherwise Android application will not working.')
40
   // add OkHttp3 dependency fo 0.28- project
40
   // add OkHttp3 dependency fo 0.28- project
41
-  var main = fs.readFileSync(PACKAGE_GRADLE);
42
-  console.log('adding OkHttp3 dependency to pre 0.28 project .. ')
43
-  main = String(main).replace('//{RNFetchBlob_PRE_0.28_DEPDENDENCY}', "compile 'com.squareup.okhttp3:okhttp:3.4.1'");
44
-  fs.writeFileSync(PACKAGE_GRADLE, main);
45
-  console.log('adding OkHttp3 dependency to pre 0.28 project .. ok')
46
-}
41
+  // var main = fs.readFileSync(PACKAGE_GRADLE);
42
+  // console.log('adding OkHttp3 dependency to pre 0.28 project .. ')
43
+  // main = String(main).replace('//{RNFetchBlob_PRE_0.28_DEPDENDENCY}', "compile 'com.squareup.okhttp3:okhttp:3.4.1'");
44
+  // fs.writeFileSync(PACKAGE_GRADLE, main);
45
+  // console.log('adding OkHttp3 dependency to pre 0.28 project .. ok')
46
+// }
47
 
47
 
48
 // set file access permission for Android < 6.0
48
 // set file access permission for Android < 6.0
49
 fs.readFile(MANIFEST_PATH, function(err, data) {
49
 fs.readFile(MANIFEST_PATH, function(err, data) {