第二十一章:deploy and live updates

时间:2023-02-03 13:26:25

通常我们开发一个app之后,需要把他们放到对应的应用商店上去以供下载。在此期间,需要经过应用商店的审核,包括初次上传和更新上传。短则需要数天,多则需要几个星期,这对于我们的快速产品迭代和hotfix来说就是一个噩梦。Ionic提供了一个方式,能够在应用需要更新的时候,不需要应用商店的审核,而实现实时更新。当然,从技术的角度来看,基于web的产品(HTML+CSS+JS)是可以做到的。但是从商业的角度来看,需要遵守各个应用商店的使用规则,也就是说,或多或少存在一些限制:

  • 初次提交必须通过应用商店的审核,无法避免。
  • 添加或者删除plugin的时候,需要进行审核。
  • 当更新之后,app出现编译型错误的时候,不能实现live updates,需要通过应用商店进行修复之后方可继续使用。
  • 基本上www文件夹下面的更改是可以实现live updates的。

live updates是ionic团队提供的一个service,类似于ionic push等,目前Ionic deploy service是免费的,后续会尝试收费的模式。

步骤如下:

1. Sign up in Ionic io site.

2. Create one app in Ionic io site.

第二十一章:deploy and live updates

3. Create one app in local.

$ ionic start APPNAME
$ cd APPNAME

4. Add the platform web client

ionic add ionic-platform-web-client

出现了如下错误:

第二十一章:deploy and live updates

可以运行下面的命令来解决问题:

bower install --save-dev ionic-platform-web-client
ionic install ionic-platform-web-client

如果出现“Ionic is not defined”错误,则需要把下面的代码放在“<script src="lib/ionic/js/ionic.bundle.js"></script>”之后:

<script src="lib/ionic-platform-web-client/dist/ionic.io.bundle.js"></script>

5. Initialize your app into Ionic io

注意:此步骤不要运行多次,否则或产生一系列意想不到的错误。

ionic io init

6. Add ionic deploy service

ionic plugin add ionic-plugin-deploy

7. Implement it in your app

run(function($ionicPopup) {
var deploy = new Ionic.Deploy();
deploy.setChannel("dev");
deploy.watch().then(function() {}, function() {}, function(updateAvailable) {
if (updateAvailable) {
deploy.download().then(function() {
deploy.extract().then(function() {
deploy.unwatch();
$ionicPopup.show({
title: 'Update available',
subTitle: 'An update was just downloaded. Would you like to restart your app to use the latest features?',
buttons: [
{ text: 'Not now' },
{
text: 'Restart',
onTap: function(e) {
deploy.load();
}
}
]
});
});
});
}
});
};

Update info.plist for IOS 9to add exclusion rules to have a workaround for ATS.

<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>amazonaws.com</key>
<dict>
<key>NSThirdPartyExceptionMinimumTLSVersion</key>
<string>TLSv1.0</string>
<key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
<false/>
<key>NSIncludesSubdomains</key>
<true/>
</dict>
<key>amazonaws.com.cn</key>
<dict>
<key>NSThirdPartyExceptionMinimumTLSVersion</key>
<string>TLSv1.0</string>
<key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
<false/>
<key>NSIncludesSubdomains</key>
<true/>
</dict>
</dict>
</dict>

8. Upload the new version of your app into Ionic io: you may try multiple times because some kind of errors could be occurred due to unstable service of Ionic deploy. Make sure the deploy env is same as what you coded in step 7.

ionic upload --note "new version" --deploy=dev

9. Change something of your app, and run above command to upload the changes to Ionic io again.

10. Succeed, now you can see the changes are pushed into mobile device without putting them into app store!

第二十一章:deploy and live updates

11. Cannot download the updates in mobile device, the error is "no such key from aws.amazonaws.com". No solution till now.

建议:不推荐使用

  • 目前Ionic deploy service处在beta阶段,所以不建议在production上面使用这种方法,也不建议频繁地使用这种方式来进行更新。
  • 想要实现live updates必须现在Ionic io上面注册账号,并且在第一个版本中需要进行一些code层面的配置(针对IOS 9用户来讲,需要绕过ATS机制)。
  • 由于我们上传的app是存储在AWS云上面的,安全、保密性是需要考量的一个点。
  • 在手机上测试好久也没有成功,觉得目前的service非常的不稳定,所以在dev环境下面也不推荐。

What's next then?

参考资料:

第二十一章:deploy and live updates的更多相关文章

  1. JavaScript高级程序设计:第二十一章

    第二十一章 Ajax与Comet 一.XMLHttpRequest对象 1.XHT的用法 在使用XHR对象时,要调用的第一个方法时open( ),它接受3个参数:要发送的请求的类型.请求的URL和表示 ...

  2. 第二十一章 Django的分页与cookie

    第二十一章 Django的分页与cookie 第一课 模板 1.模板的继承 在Template目录下新建模板master.html <!DOCTYPE html> <html lan ...

  3. Gradle 1&period;12用户指南翻译——第二十一章&period; Gradle 插件

    昨天晚上只顾着和女朋友看<匆匆那年>电视剧的最后几集,所以说好的Android文档<Gradle 插件用户指南>第五章自然也没翻译多少.所以今天也发不了第五章的翻译了,就发几个 ...

  4. &OpenCurlyDoubleQuote;全栈2019”Java多线程第二十一章:同步代码块产生死锁的例子

    难度 初级 学习时间 10分钟 适合人群 零基础 开发语言 Java 开发环境 JDK v11 IntelliJ IDEA v2018.3 文章原文链接 "全栈2019"Java多 ...

  5. &OpenCurlyDoubleQuote;全栈2019”Java异常第二十一章:finally不被执行的情况

    难度 初级 学习时间 10分钟 适合人群 零基础 开发语言 Java 开发环境 JDK v11 IntelliJ IDEA v2018.3 文章原文链接 "全栈2019"Java异 ...

  6. &OpenCurlyDoubleQuote;全栈2019”Java第二十一章:流程控制语句中的决策语句if

    难度 初级 学习时间 10分钟 适合人群 零基础 开发语言 Java 开发环境 JDK v11 IntelliJ IDEA v2018.3 文章原文链接 "全栈2019"Java第 ...

  7. 2017&period;2&period;15 开涛shiro教程-第二十一章-授予身份与切换身份(二) controller

    原博客地址:http://jinnianshilongnian.iteye.com/blog/2018398 根据下载的pdf学习. 开涛shiro教程-第二十一章-授予身份与切换身份(二) 1.回顾 ...

  8. 2017&period;2&period;15 开涛shiro教程-第二十一章-授予身份与切换身份(一) table、entity、service、dao

    原博客地址:http://jinnianshilongnian.iteye.com/blog/2018398 根据下载的pdf学习. 第二十一章 授予身份与切换身份(一) 1.使用场景 某个领导因为某 ...

  9. python 教程 第二十一章、 扩展Python

    第二十一章. 扩展Python /* D:\Python27\Lib\Extest-1.0\Extest2.c */ #include <stdio.h> #include <std ...

  10. 20190922 On Java8 第二十一章 数组

    第二十一章 数组 一等对象 对象数组和基元数组在使用上是完全相同的.唯一的不同之处就是对象数组存储的是对象的引用,而基元数组则直接存储基本数据类型的值. 多维数组 Array.deepToString ...

随机推荐

  1. WebAPI学习点滴&lpar;一&rpar;

    对于GET请求,如果方法名不是以Get开头,就必须加上[HttpGet]标签,不然无法找到该方法,如果是以Get开头则没有这个问题. 因此,推荐所有方法都确定访问方式,加上标签. [HttpGet] ...

  2. CastleActiveRecord在多线程 事务提交时数据库资源竞争导致更新失败的测试结果记录

    CastleActiveRecord 经过测试,隔离级别: // 摘要: ,         ,         ,         ,         ,         ,         ,   ...

  3. GNU libc &lpar;Glibc&rpar; 2&period;18 发布

    标准C库Glibc发布2.18正式版.2013-08-12 上一个版本是2012-12-25的2.17. 详细改进:Version 2.18 * The following bugs are reso ...

  4. &period;NET下金额大小写转换

    说明:金额转换可以转换50位的数值,单位从分到级.对于中间部分是否显示零,可以根据修改TranslateJInen()函数修改.中间数值为零的去掉不显示 public string GetChCapi ...

  5. scala学习资料

    强烈推荐一个s在线学习scala的网站: http://zh.scala-tour.com/#/overview

  6. Leveraging the Power of Asynchrony in ASP&period;NET &lbrack;转&rsqb;

    Asynchronous programming has had a lot of attention in the last couple of years and there are two ke ...

  7. servlet就实现在线用户表

    在学习servlet的过程中,学习了如何用servlet实现在线用户表. 只有服务器处于开机状态才会有在线用户表的存在,在服务器关机的情况下自然就不存在在线用户表的说法:所以,楼主认为在线用户表的信息 ...

  8. WKWebView与Js交互

    首先打开webstorm,将最下面h5拷贝到html中.然后导入工程 #define kMessageHandlerName @"mymobile" 1.创建配置类 - (WKWe ...

  9. 201521123026《Java程序设计》第2周学习总结

    1. 本章学习收获 1.熟悉了码云的部分功能的使用 2.java编程基础的巩固以及延伸 3.解决了部分PTA编程时所遇到困难并明白了解决困难的方法的原理 4.了解了用package和import管理类 ...

  10. &lbrack;Swift&rsqb;LeetCode255&period;验证二叉搜索树的先序序列 &dollar; Verify Preorder Sequence in Binary Search Tree

    Given an array of numbers, verify whether it is the correct preorder traversal sequence of a binary ...