1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee
react-native-pushy/index.js

32 lines
698 B
JavaScript
Raw Normal View History

2016-02-14 00:04:42 +08:00
/**
* Created by tdzl2003 on 2/6/16.
*/
2016-02-23 17:31:47 +08:00
//if (__DEV__){
// if (global.__fbBatchedBridge) {
// require('fbjs/lib/warning')('Should require pushy before react-native to do hook stuff!');
// }
//}
//
//require('./lib/hooks');
const HotUpdate = require('react-native').NativeModules.HotUpdate;
const NativeAppEventEmitter = require('react-native').NativeAppEventEmitter;
const downloadRootDir = HotUpdate.downloadRootDir;
export function downloadFile(options) {
HotUpdate.downloadUpdate(options, r=>{
//console.log(r);
})
}
export function reloadUpdate(options) {
HotUpdate.reloadUpdate(options);
2016-02-14 00:04:42 +08:00
}
2016-02-23 17:31:47 +08:00
export function setNeedUpdate(options) {
HotUpdate.setNeedUpdate(options);
}