|
@@ -35,8 +35,14 @@ if(VERSION >= 0.29) {
|
35
|
35
|
|
36
|
36
|
}
|
37
|
37
|
|
38
|
|
-if(VERSION < 0.27) {
|
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.')
|
|
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.')
|
|
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')
|
40
|
46
|
}
|
41
|
47
|
|
42
|
48
|
// set file access permission for Android < 6.0
|