我们知道,在打包Android App之前,我们需要先通过HX生成打包资源。如果是通过cli创建的项目,则通过以下命令生成打包资源:

  1. yarn build:app-plus

生成打包资源后的目录长这样:

📃 uniapp热更新和整包更新 - 图1

然后将整个目录中的所有文件拷贝到Android项目的 assets/apps/<appid>/www 中:

📃 uniapp热更新和整包更新 - 图2

可以看出,所有生成的文件,其实只是一个资源目录。

热更新的原理就是:替换资源目录中的所有打包资源

热更新包分析

我们通过HX生成的热更新包:

📃 uniapp热更新和整包更新 - 图3

生成的热更新包长这样:

📃 uniapp热更新和整包更新 - 图4

可以看出,wgt其实就是一个压缩文件,将生成的资源文件全部打包。

知道原理后,我们就不一定需要通过HX创建wgt了,我们可以使用yarn build:app-plus命令先生成打包资源目录,再将其压缩为zip包,修改扩展名为wgt即可:

📃 uniapp热更新和整包更新 - 图5

注意到我两次都将manifest.json圈红,目的是强调:wgt包中,必须将manifest,json所在路径当做根节点进行打包

打完包后,我们可以将其上传到OSS。

热更新方案

热更新方案:通过增加当前APP资源的版本号(versionCode),跟上一次打包时的APP资源版本号进行对比,如果比之前的资源版本号高,即进行热更新。

热更新原理:uniapp的热更新,其实是将build后的APP资源,打包为一个zip压缩包(扩展名改为wgt)。

涉及到的版本信息文件:

  • src/manifest.json
  • app.json (自己创建,用于版本对比)
  • platforms/android/app/build.gradle

注意事项:

保证以上文件的versionNameversionCode均保持一致。

热更新核心代码

以下为热更新的核心代码:

  1. // #ifdef APP-PLUS
  2. let downloadPath = "https://xxx.cn/apk/app.wgt"
  3. uni.downloadFile({
  4. url: downloadPath,
  5. success: (downloadResult) => {
  6. if (downloadResult.statusCode === 200) {
  7. plus.runtime.install(downloadResult.tempFilePath, {
  8. force: true // 强制更新
  9. }, function() {
  10. console.log('install success...');
  11. plus.runtime.restart();
  12. }, function(e) {
  13. console.error(e);
  14. console.error('install fail...');
  15. });
  16. }
  17. }
  18. })
  19. // #endif

这里是下载wgt包,并进行安装的代码。以上代码无论如何都会下载wgt进行安装。

更新接口

实际上,在这之前,我们还需要判断是否需要更新,这就涉及到接口的部分。在此,只讲讲思路:

  1. 获取安装的版本名、版本号等信息,将其当做参数调用对应的更新接口;
  2. 接口取到这些信息,与最新版本进行对比,如果版本已经更新,返回需要更新的信息;
  3. 接口可以自行约定,怎么方便这么来。

我自己做的话,根本没写什么接口,只是创建了一个app.json文件,用于存放最新版本信息:

  1. {
  2. "versionCode": "100",
  3. "versionName": "1.0.0"
  4. }

将其上传到OSS,然后在下载wgt包之前进行版本检查即可:

  1. // #ifdef APP-PLUS
  2. plus.runtime.getProperty(plus.runtime.appid, function(widgetInfo) {
  3. console.log(widgetInfo);
  4. uni.request({
  5. url: 'https://xxx.cn/apk/app.json',
  6. success: (result) => {
  7. let { versionCode, versionName } = result.data
  8. console.log({ versionCode, versionName });
  9. // 判断版本名是否一致
  10. if (versionName === widgetInfo.version) {
  11. // 如果安装的版本号小于最新发布的版本号,则进行更新
  12. if (parseInt(widgetInfo.versionCode) < parseInt(versionCode)) {
  13. // 下载wgt更新包
  14. let downloadPath = "https://xxx.cn/apk/app.wgt"
  15. uni.downloadFile({
  16. url: downloadPath,
  17. success: (downloadResult) => {
  18. if (downloadResult.statusCode === 200) {
  19. plus.runtime.install(downloadResult.tempFilePath, {
  20. force: true // 强制更新
  21. }, function() {
  22. console.log('热更新成功');
  23. plus.runtime.restart();
  24. }, function(e) {
  25. console.error('热更新失败,错误原因:' + e);
  26. });
  27. }
  28. }
  29. })
  30. } else {
  31. console.log('你的版本为最新,不需要热更新');
  32. }
  33. } else {
  34. console.log('版本名不一致,请使用整包更新');
  35. }
  36. }
  37. });
  38. });
  39. // #endif

OK,至此,热更新就完成了。

Android整包更新

看到上面更新逻辑,如果版本名不一致,则需要下载最新的apk进行安装,在下载之前,建议给用户一个更新提示:

  1. console.log('版本名不一致,请使用整包更新');
  2. let url = "https://xxx.cn/apk/app.apk"
  3. uni.showModal({ //提醒用户更新
  4. title: "更新提示",
  5. content: "有新的更新可用,请升级",
  6. success: (res) => {
  7. if (res.confirm) {
  8. plus.runtime.openURL(url);
  9. }
  10. }
  11. })

以上代码是官方提供的,其实也可以下载apk成功后,直接调用install进行安装:

  1. console.log('版本名不一致,请使用整包更新');
  2. let downloadPath = "https://zys201811.boringkiller.cn/shianonline/apk/app.apk"
  3. uni.showModal({ //提醒用户更新
  4. title: "更新提示",
  5. content: "有新的更新可用,请升级",
  6. success: (res) => {
  7. if (res.confirm) {
  8. // plus.runtime.openURL(downloadPath);
  9. uni.downloadFile({
  10. url: downloadPath,
  11. success: (downloadResult) => {
  12. if (downloadResult.statusCode === 200) {
  13. console.log('正在更新...');
  14. plus.runtime.install(downloadResult.tempFilePath, {
  15. force: true // 强制更新
  16. }, function() {
  17. console.log('整包更新成功');
  18. plus.runtime.restart();
  19. }, function(e) {
  20. console.error('整包更新失败,错误原因:' + e);
  21. });
  22. }
  23. }
  24. })
  25. }
  26. }
  27. })

热更新的自动化处理

知道原理后,就好办了,我们可以将其繁杂的工作自动化,以减少重复劳动。

修改package.json的相关打包脚本:

  1. {
  2. "name": "shianaonline",
  3. "version": "0.1.224",
  4. "private": true,
  5. "scripts": {
  6. "apk": "node deploy/scripts/build-apk.js",
  7. "wgt": "node deploy/scripts/build-wgt.js",
  8. "build:app-plus-android": "cross-env NODE_ENV=production UNI_PLATFORM=app-plus UNI_OUTPUT_DIR=./platforms/android/app/src/main/assets/apps/your appid/www vue-cli-service uni-build",
  9. "build:app-plus-ios": "cross-env NODE_ENV=production UNI_PLATFORM=app-plus UNI_OUTPUT_DIR=./platforms/iOS/apps/your appid/www vue-cli-service uni-build",
  10. }
  11. }

其中,需要替换的地方是your appid,换为自己的uniapp appid

创建app.json,用于存储当前app的版本信息:

  1. {
  2. "versionName": "1.0.27",
  3. "versionCode": 336,
  4. "appPath": "https://xxx.oss.com/apk/app-release.apk",
  5. "wgtPath": "https://xxx.oss.com/apk/www.wgt"
  6. }

创建自动化打包脚本build-wgt.js

  1. const fs = require('fs')
  2. const { execSync } = require('child_process')
  3. const join = require('path').join
  4. // 修改版本号
  5. let app = require('../../app.json')
  6. let manifest = require('../../src/manifest.json')
  7. if (app.versionName !== manifest.versionName) {
  8. console.info('manifest.json和app.json的versionName不一致,请检查')
  9. return
  10. }
  11. if (app.versionCode !== manifest.versionCode) {
  12. console.info('manifest.json和app.json的versionCode不一致,请检查')
  13. return
  14. }
  15. // 获取build.gradle的版本名
  16. let gradleFilePath = '../../platforms/android/app/build.gradle'
  17. let data = fs.readFileSync(__dirname + '/' + gradleFilePath, {
  18. encoding: 'utf-8'
  19. })
  20. let reg = new RegExp(`versionCode ${app.versionCode}`, "gm")
  21. if (!reg.test(data)) {
  22. console.log('platforms/android/app/build.gradle的versionCode不一致,请检查')
  23. return
  24. }
  25. app.versionCode += 1
  26. manifest.versionCode += 1
  27. console.log('====================');
  28. console.log('newVersion:' + app.versionName + "." + app.versionCode);
  29. console.log('====================');
  30. let appJSON = JSON.stringify(app, null, 2)
  31. let manifestJSON = JSON.stringify(manifest, null, 2)
  32. let replaceFiles = [{
  33. path: '../../app.json',
  34. name: 'app.json',
  35. content: appJSON
  36. }, {
  37. path: '../../src/manifest.json',
  38. name: 'manifest.json',
  39. content: manifestJSON
  40. }]
  41. replaceFiles.forEach(file => {
  42. fs.writeFileSync(__dirname + '/' + file.path, file.content, {
  43. encoding: 'utf-8'
  44. })
  45. console.log(file.name + ': 替换成功');
  46. })
  47. // 替换build.gradle的版本名
  48. let result = data.replace(reg, `versionCode ${app.versionCode}`)
  49. fs.writeFileSync(__dirname + '/' + gradleFilePath, result, {
  50. encoding: 'utf-8'
  51. })
  52. console.log('platforms/android/build.gradle: 替换成功')
  53. console.log('====================');
  54. // 编译
  55. console.log(execSync('yarn build:app-plus-android', { encoding: 'utf-8'}))
  56. // 打包
  57. const compressing = require('compressing');
  58. const tarStream = new compressing.zip.Stream();
  59. const targetPath = './platforms/android/app/src/main/assets/apps/your appid/www'
  60. const targetFile = './www.wgt'
  61. let paths = fs.readdirSync(targetPath);
  62. paths.forEach(function (item) {
  63. let fPath = join(targetPath, item);
  64. tarStream.addEntry(fPath);
  65. });
  66. tarStream
  67. .pipe(fs.createWriteStream(targetFile))
  68. .on('finish', upToOss)
  69. // 上传至OSS
  70. let OSS = require('ali-oss');
  71. function upToOss() {
  72. let client = new OSS({
  73. region: 'oss-cn-shenzhen',
  74. accessKeyId: 'your accessKeyId',
  75. accessKeySecret: 'your accessKeySecret'
  76. });
  77. client.useBucket('your bucketName');
  78. let ossBasePath = `apk`
  79. put(`${ossBasePath}/www.wgt`, 'www.wgt')
  80. put(`${ossBasePath}/wgts/${app.versionCode}/www.wgt`, 'www.wgt')
  81. put(`webview/vod.html`, 'src/hybrid/html/vod.html')
  82. put(`${ossBasePath}/app.json`, 'app.json')
  83. async function put (ossPath, localFile) {
  84. try {
  85. await client.put(ossPath, localFile);
  86. console.log(`${localFile}上传成功:${ossPath}`);
  87. } catch (err) {
  88. console.log(err);
  89. }
  90. }
  91. }
  92. console.log('====================');
  93. console.log('更新完毕,newVersion:' + app.versionName + "." + app.versionCode);
  94. console.log('====================');

以上打包脚本,做了以下工作:

  1. 验证版本号和版本名是否正确,如果不正确,终止脚本
  2. 修改当前APP版本号
  3. 生成APP打包资源
  4. 将打包资源做成zip包(扩展名改为wgt)
  5. 上传wgt资源包到OSS

一键式操作,打包为wgt只需要执行:

  1. yarn wgt

Android整包更新的自动化处理

Android整包更新需要在AndroidManifest.xml中配置:

  1. <uses-permission android:name="android.permission.INSTALL_PACKAGES"/>
  2. <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>

Android整包更新的业务代码跟热更新一样,都可以调用plus.runtime.install来实现。

主要还是说一下打包apk的自动化脚本build-apk.js

  1. const fs = require('fs')
  2. const { execSync } = require('child_process')
  3. let app = require('../../app.json')
  4. let manifest = require('../../src/manifest.json')
  5. if (app.versionName !== manifest.versionName) {
  6. console.log('manifest.json和app.json的versionName不一致,请检查')
  7. return
  8. }
  9. if (app.versionCode !== manifest.versionCode) {
  10. console.log('manifest.json和app.json的versionCode不一致,请检查')
  11. return
  12. }
  13. // 获取build.gradle的版本名
  14. let gradleFilePath = '../../platforms/android/app/build.gradle'
  15. let data = fs.readFileSync(__dirname + '/' + gradleFilePath, {
  16. encoding: 'utf-8'
  17. })
  18. let reg = new RegExp(`versionName "${app.versionName}"`, "gm")
  19. if (!reg.test(data)) {
  20. console.info('platforms/android/app/build.gradle的versionName不一致,请检查')
  21. return
  22. }
  23. let regCode = new RegExp(`versionCode ${app.versionCode}`, "gm")
  24. if (!regCode.test(data)) {
  25. console.info('platforms/android/app/build.gradle的versionCode不一致,请检查')
  26. return
  27. }
  28. // 修改版本名
  29. let appVersionName = app.versionName.split('.')
  30. let manifestVersionName = manifest.versionName.split('.')
  31. let appVersionLast = Number(appVersionName[2])
  32. let manifestVersionLast = Number(manifestVersionName[2])
  33. appVersionLast += 1
  34. manifestVersionLast += 1
  35. app.versionName = appVersionName[0] + '.' + appVersionName[1] + '.' + appVersionLast
  36. manifest.versionName = manifestVersionName[0] + '.' + manifestVersionName[1] + '.' + manifestVersionLast
  37. console.log('====================');
  38. console.log('newVersion:' + app.versionName + "." + app.versionCode);
  39. console.log('====================');
  40. let appJSON = JSON.stringify(app, null, 2)
  41. let manifestJSON = JSON.stringify(manifest, null, 2)
  42. // 替换项目版本名
  43. let replaceFiles = [{
  44. path: '../../app.json',
  45. name: 'app.json',
  46. content: appJSON
  47. }, {
  48. path: '../../src/manifest.json',
  49. name: 'manifest.json',
  50. content: manifestJSON
  51. }]
  52. replaceFiles.forEach(file => {
  53. fs.writeFileSync(__dirname + '/' + file.path, file.content, {
  54. encoding: 'utf-8'
  55. })
  56. console.log(file.name + ': 替换成功');
  57. })
  58. // 替换build.gradle的版本名
  59. let result = data.replace(reg, `versionName "${app.versionName}"`)
  60. fs.writeFileSync(__dirname + '/' + gradleFilePath, result, {
  61. encoding: 'utf-8'
  62. })
  63. console.log('platforms/android/build.gradle: 替换成功')
  64. console.log('====================');
  65. // 打包资源
  66. console.log(execSync(`yarn build:app-plus-android`, { encoding: 'utf-8'}))
  67. // 打包apk
  68. console.log(execSync(`cd platforms/android && gradle assembleRelease`, { encoding: 'utf-8'}))
  69. // 上传至OSS
  70. let OSS = require('ali-oss');
  71. function upToOss() {
  72. let client = new OSS({
  73. region: 'oss-cn-shenzhen',
  74. accessKeyId: 'your accessKeyId',
  75. accessKeySecret: 'your accessKeySecret'
  76. });
  77. client.useBucket('your bucketName');
  78. let ossBasePath = `apk`
  79. put(`${ossBasePath}/app-release.apk`, 'platforms/android/app/build/outputs/apk/release/app-release.apk')
  80. put(`${ossBasePath}/apks/${app.versionName}/app-release.apk`, 'platforms/android/app/build/outputs/apk/release/app-release.apk')
  81. put(`${ossBasePath}/apks/${app.versionName}/output.json`, 'platforms/android/app/build/outputs/apk/release/output.json')
  82. put(`webview/vod.html`, 'src/hybrid/html/vod.html')
  83. put(`${ossBasePath}/app.json`, 'app.json')
  84. async function put (ossPath, localFile) {
  85. try {
  86. await client.put(ossPath, localFile);
  87. console.log(`${localFile}上传成功:${ossPath}`);
  88. } catch (err) {
  89. console.log(err);
  90. }
  91. }
  92. }
  93. upToOss()
  94. console.log('====================');
  95. console.log('更新完毕,newVersion:' + app.versionName + "." + app.versionCode);
  96. console.log('====================');

以上打包脚本,做了以下工作:

  1. 验证版本号和版本名是否正确,如果不正确,终止脚本
  2. 修改当前APP版本名
  3. 生成APP打包资源
  4. 打包Android APP(扩展名apk)
  5. 上传apk到OSS

一键式操作,打包为apk只需要执行:

  1. yarn apk

安装更新

我们看看plus.runtime.install的官方文档:

  1. void plus.runtime.install(filePath, options, installSuccessCB, installErrorCB);

支持以下类型安装包:

  1. 应用资源安装包(wgt),扩展名为’.wgt’;
  2. 应用资源差量升级包(wgtu),扩展名为’.wgtu’;
  3. 系统程序安装包(apk),要求使用当前平台支持的安装包格式。 注意:仅支持本地地址,调用此方法前需把安装包从网络地址或其他位置放置到运行时环境可以访问的本地目录。

知道了调用方式就好办了,我们封装一个检测更新的方法:

  1. class Utils {
  2. ...
  3. // 获取APP版本信息
  4. getVersion() {
  5. let {versionName, versionCode} = manifest
  6. return {
  7. versionName,
  8. versionCode,
  9. version: `${versionName}.${versionCode}`
  10. }
  11. }
  12. // 检测更新
  13. detectionUpdate(needRestartHotTip = false, needRestartFullTip = false) {
  14. return new Promise(async (resolve, reject) => {
  15. let appInfo = this.getVersion()
  16. uni.request({
  17. url: 'https://xxx.oss.com/apk/app.json',
  18. success: async (result) => {
  19. let { versionCode, versionName, appPath, wgtPath } = result.data
  20. let versionInfo = {
  21. appPath,
  22. wgtPath,
  23. newestVersion: `${versionName}.${versionCode}`,
  24. newestVersionCode: versionCode,
  25. newestVersionName: versionName,
  26. currentVersion: appInfo.version,
  27. currentVersionCode: appInfo.versionCode,
  28. currentVersionName: appInfo.versionName
  29. }
  30. // 判断版本名是否一致
  31. try {
  32. if (versionName === appInfo.versionName) {
  33. // 如果安装的版本号小于最新发布的版本号,则进行更新
  34. if (appInfo.versionCode < versionCode) {
  35. // 下载wgt更新包
  36. if (needRestartHotTip) {
  37. uni.showModal({
  38. title: '提示',
  39. content: `检测到新版本 ${versionInfo.newestVersion} (当前版本:${versionInfo.currentVersion}),是否立即更新并重启应用,以使更新生效?`,
  40. success: async (res) => {
  41. if (res.confirm) {
  42. await this.downloadAndInstallPackage(wgtPath)
  43. plus.runtime.restart();
  44. resolve({code: 1, data: versionInfo})
  45. } else if (res.cancel) {
  46. await this.downloadAndInstallPackage(wgtPath)
  47. resolve({code: 1, data: versionInfo})
  48. }
  49. }
  50. })
  51. } else {
  52. await this.downloadAndInstallPackage(wgtPath)
  53. resolve({code: 1, data: versionInfo})
  54. }
  55. } else {
  56. resolve({code: 0, data: versionInfo})
  57. console.log('你的版本为最新,不需要热更新');
  58. }
  59. } else {
  60. // 整包更新
  61. console.log('版本名不一致,请使用整包更新');
  62. if (needRestartFullTip) {
  63. uni.showModal({
  64. title: '提示',
  65. content: `检测到新版本 ${versionInfo.newestVersion} (当前版本:${versionInfo.currentVersion}),是否立即更新应用?`,
  66. success: async (res) => {
  67. if (res.confirm) {
  68. // await this.downloadAndInstallPackage(appPath)
  69. plus.runtime.openURL(appPath)
  70. resolve({code: 2, data: versionInfo})
  71. } else if (res.cancel) {}
  72. }
  73. })
  74. } else {
  75. // await this.downloadAndInstallPackage(appPath)
  76. plus.runtime.openURL(appPath)
  77. resolve({code: 2, data: versionInfo})
  78. }
  79. }
  80. } catch (e) {
  81. reject(e)
  82. }
  83. }
  84. });
  85. })
  86. }
  87. // 下载并安装更新包
  88. downloadAndInstallPackage(url) {
  89. console.log('开始下载更新包:' + url)
  90. return new Promise((resolve, reject) => {
  91. uni.downloadFile({
  92. url: url,
  93. success: (downloadResult) => {
  94. if (downloadResult.statusCode === 200) {
  95. console.log('正在更新...');
  96. plus.runtime.install(downloadResult.tempFilePath, {
  97. force: true // 强制更新
  98. }, function() {
  99. console.log('更新成功');
  100. resolve()
  101. }, function(e) {
  102. console.error('更新失败,错误原因:' + JSON.stringify(e));
  103. reject(e)
  104. });
  105. }
  106. }
  107. })
  108. })
  109. }
  110. }
  111. ...

创建Utils的实例,并挂载到Vue的原型中,调用起来非常方便:

  1. ...
  2. let res = await this.$utils.detectionUpdate(false, true)
  3. if (res.code === 1) {
  4. uni.showModal({
  5. title: '提示',
  6. content: `发现新的热更新包,是否立即重启APP以使更新生效?`,
  7. success: async (res) => {
  8. if (res.confirm) {
  9. plus.runtime.restart()
  10. } else if (res.cancel) {}
  11. }
  12. })
  13. }
  1. ...
  2. let res = await this.$utils.detectionUpdate(true, true)
  3. if (res.code === 0) {
  4. let {currentVersion} = res.data
  5. uni.showModal({
  6. title: '提示',
  7. content: `你的APP为最新版本 ${currentVersion},不需要更新!`,
  8. showCancel: false,
  9. success: async (res) => {
  10. if (res.confirm) {
  11. } else if (res.cancel) {}
  12. }
  13. })
  14. }

参考资料