我想开发一个反应原生应用程序。但是 js 文件不在我的本地机器上。我将从远程服务器下载捆绑包。
下面的代码暂时有效。但是如何从文件路径重新加载 js 包?
public class MainApplication extends Application implements ReactApplication {
public static String mBundleFilePath = "sdcard/Download/index.android.bundle";
public final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
@Override
public boolean getUseDeveloperSupport() {
return BuildConfig.DEBUG;
}
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage()
);
}
@Override
protected String getJSMainModuleName() {
return "index";
}
@Override
protected String getJSBundleFile() {
return mBundleFilePath;
}
};
@Override
public ReactNativeHost getReactNativeHost() {
return mReactNativeHost;
}
@Override
public void onCreate() {
super.onCreate();
SoLoader.init(this, /* native exopackage */ false);
}
}
有一些重新加载的方法。但它不支持外部路径。 reloadJSFromServer 仅适用于 http/https。
getReactNativeHost().getReactInstanceManager().getDevSupportManager().reloadJSFromServer(httpUrl);
handleReloadJS 从 localhost/8081 加载
getReactNativeHost().getReactInstanceManager().getDevSupportManager().handleReloadJS();
编辑
重启活动对我不起作用:)
Intent myIntent = new Intent(getApplicationContext(), MainActivity.class);
finish();
startActivity(myIntent);