flutter Dynamic updates 热更新 版本更新

比较新的解释git

https://juejin.im/entry/5c85c959f265da2d881b5eb8github

 http://www.javashuo.com/article/p-zempqlxt-gu.htmlapp

 

flutter  Dynamic updatesurl

 flutter OtaUpdate  CodePush.net

https://blog.csdn.net/weixin_30512027/article/details/85772097blog

https://msd.misuland.com/pd/3127746505234976194ci

 

https://my.oschina.net/wupeilin/blog/3035732get

惟一找到的 APP热更新资料it

https://github.com/dengyin2000/dynamic_widgetio

 

Code Push/Hot update

咱们如今使用flutter更新版本

下载apk:
引入
dependencies:
flutter_downloader: 1.1.3

taskId = await FlutterDownloader.enqueue(
url: url,//服务端提供apk文件下载路径
savedDir: (await getExternalStorageDirectory()).path.toString(),//本地存放路径
fileName: “xiangta_” + netCode + “.apk”,//存放文件名
showNotification: false,//是否显示在通知栏
openFileFromNotification: false,//是否在通知栏能够点击打开此文件
);

//taskId为任务id (与完成下载的文件成一一对应)open是执行打开 打开须要任务id 相信你已经找到方向了
FlutterDownloader.registerCallback((taskId, status, progress) {
if (status == DownloadTaskStatus.complete) {
//下载完成
FlutterDownloader.open(taskId:taskId));
} else if (status == DownloadTaskStatus.failed) {
//下载出错
}
});

---------


1、使用FlutterDownloader下载

2、open_file打开文件自带安装(FlutterDownloader自带打开文件,但不能打开app不知道为啥)

代码:

一、下载监听 

FlutterDownloader.registerCallback((id, status, progress) {
      print(
          'Download task ($id) is in status ($status) and process ($progress)');
      if (status == DownloadTaskStatus.complete) {
        OpenFile.open(_localPath);
        FlutterDownloader.open(taskId: id);
      }
    });
二、下载

final taskId = await FlutterDownloader.enqueue(
  url: url,
  savedDir: _localPath,
  showNotification:
      true, // show download progress in status bar (for Android)
  openFileFromNotification:
      true, // click on notification to open downloaded file (for Android)
);
final tasks = await FlutterDownloader.loadTasks();
相关文章
相关标签/搜索