WO2019024229A1 - 移动应用的热更新方法、装置、电子设备及介质 - Google Patents
移动应用的热更新方法、装置、电子设备及介质 Download PDFInfo
- Publication number
- WO2019024229A1 WO2019024229A1 PCT/CN2017/104531 CN2017104531W WO2019024229A1 WO 2019024229 A1 WO2019024229 A1 WO 2019024229A1 CN 2017104531 W CN2017104531 W CN 2017104531W WO 2019024229 A1 WO2019024229 A1 WO 2019024229A1
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- update
- framework
- hot
- frame level
- level
- Prior art date
Links
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F8/00—Arrangements for software engineering
- G06F8/60—Software deployment
- G06F8/65—Updates
Definitions
- Hot update method device, electronic device and medium for mobile applications
- the present application relates to the field of mobile application technologies, and in particular, to a method, device, electronic device, and medium for updating a hot application of a mobile application.
- the embodiments of the present application provide a method, a device, an electronic device, and a medium for updating a mobile application, so as to solve the problem that the mobile application is difficult to operate normally due to mutual preemption of different levels of hot update in the prior art.
- the problem Problem solution
- a first aspect of the embodiments of the present application provides a hot update method for a mobile application, including:
- the scheduling priorities corresponding to each of the frame levels are respectively obtained according to the correspondence between the preset frame level and the scheduling priority;
- a second aspect of the embodiments of the present application provides a hot update apparatus for a mobile application, including:
- a first obtaining module configured to respectively acquire each frame level in which a version update prompt occurs in the mobile application
- a second obtaining module configured to: if the frame level of the version update prompt is multiple, Corresponding relationship between the preset framework level and the scheduling priority, respectively obtaining the scheduling priority corresponding to each of the framework levels;
- the hot update module is configured to sequentially control each of the framework levels to perform a hot update operation based on the order of the scheduling priorities.
- a third aspect of the embodiments of the present application provides an electronic device, including a memory, a processor, and computer readable instructions stored on the memory and executable on the processor, the processor Performing the computer sequence implementation implements the following steps:
- the scheduling priorities corresponding to each of the frame levels are respectively obtained according to the corresponding relationship between the preset framework level and the scheduling priority;
- a fourth aspect of the embodiments of the present application provides a computer readable storage medium storing computer readable instructions, the computer readable instructions being executed by at least one processor The following steps:
- the number of the framework levels in the version update prompt is multiple, and the scheduling priority corresponding to each frame level is obtained, and the scheduling priority can be sequentially controlled based on the scheduling priority.
- the hot update operation is performed at each framework level, and the ordered scheduling between multiple framework levels is realized, which avoids the phenomenon of hot update preemption or hot update conflict between multiple framework levels, thereby ensuring that the mobile application is in the hot update process. It is able to continue to operate normally, thereby increasing the stability of the mobile application.
- FIG. 1 is a flowchart of implementing a hot update method of a mobile application according to an embodiment of the present application
- FIG. 2 is a flowchart of a specific implementation of a hot update method S103 of a mobile application according to an embodiment of the present disclosure
- FIG. 3 is a schematic diagram of a prompt window including application update description information provided by an embodiment of the present application
- FIG. 4 is a flowchart of a specific implementation of a hot update method S301 for a mobile application according to another embodiment of the present disclosure
- FIG. 6 is a flowchart of an implementation of a hot update method for a mobile application according to another embodiment of the present application.
- FIG. 7 is a schematic diagram of a progress bar displayed on a mobile terminal interface according to another embodiment of the present application.
- FIG. 8 is a structural block diagram of a hot update apparatus for a mobile application according to an embodiment of the present application.
- FIG. 9 is a structural block diagram of a hot update apparatus for a mobile application according to another embodiment of the present application.
- FIG. 10 is a schematic diagram of an electronic device according to an embodiment of the present application. Embodiments of the invention
- FIG. 1 shows an implementation flow of a hot update method for a mobile application provided by an embodiment of the present application, where the method process includes steps S101 to S103.
- the specific implementation principles of each step are as follows:
- S101 respectively acquire respective framework levels in which a version update prompt appears in the mobile application.
- the framework level includes but is not limited to the Native layer, React
- Front-end framework levels such as the Native layer, H5 layer, Xscript layer, JS layer, and WEEX layer.
- the level of the framework that exists in mobile applications varies from mobile to mobile.
- the framework level may include the Native layer and the H5 layer.
- the framework level may include the Native layer, the React Native layer, and the H5 layer. Therefore, before obtaining the various framework levels in the mobile application where the version update prompt appears, the various framework levels present in the mobile application are detected first.
- the background server is connected to request the server to return a version update prompt related to each framework level.
- the manner in which the update detection event is triggered may be, for example,: when the mobile application is detected, triggering the update detection event; or, when it is detected that the control for detecting the update in the mobile application is selected, triggering the update detection event.
- a version update prompt will be detected at the framework level.
- Each framework level in the mobile application is identified to determine if a version update prompt appears at each framework level, thereby obtaining the various framework levels at which the version update prompt is currently engraved.
- S102 If there are multiple frame levels of the version update prompt, the scheduling priority corresponding to each of the frame levels is respectively obtained according to a preset correspondence between the frame level and the scheduling priority. [0042] The mobile application has previously set a correspondence between each framework level and each scheduling priority. If it is detected that the number of the frame levels of the version update prompt is greater than one, the scheduling priority corresponding to each frame level in which the version update prompt occurs is obtained according to the preset correspondence. The scheduling priority indicates the priority level of the framework level after performing the hot update operation.
- S103 Perform a hot update operation by sequentially controlling each of the frame levels in sequence according to the order of the scheduling priorities.
- the hot updates at the respective framework levels are sequentially performed.
- the process of hot update includes the downloading, decompression, and validation of the updated data package.
- the scheduling priority corresponding to the Native layer at the bottom of the mobile application is pre- Set to the highest level
- the scheduling priority corresponding to the React Native layer in the middle layer is preset to the next highest level
- the scheduling priority corresponding to the H5 layer on the top layer of the mobile application is preset to the lowest level.
- the order of the scheduling priority is determined as the Native layer > React Native layer > H5 layer.
- the Native layer performs the hot update
- the hot update of the Native layer is completed
- the H5 layer is controlled to perform the hot update.
- the principle of higher scheduling priority of hot update can guarantee the update failure at the high-level framework level, and will not affect the normal operation of each component in the underlying framework hierarchy, ensuring mobile applications. There is no crash in the hot update process.
- it ensures that the various framework levels of the upper layer of the mobile application can properly call the underlying components and the underlying programs that they need to rely on, thus improving the reliability of the mobile application.
- the number of the framework levels in which the version update prompt occurs is multiple, and the scheduling priority corresponding to each frame level is obtained, and the scheduling priority can be sequentially controlled based on the scheduling priority.
- FIG. 2 shows a specific implementation process of the hot update method S 103 of the mobile application provided by the embodiment of the present application, which is described in detail as follows:
- S301 Obtain version update description information of each of the framework levels.
- the version update description information is preset by the version issuer. After obtaining the version update prompt returned by the background server, the version update description information of each framework level is also obtained. The version update description information of each framework level is used to describe the content modification made to the framework level after the completion of this hot update.
- S302 Summarize each version update description information to obtain application update description information.
- S303 Display the application update description information on an interface of the mobile application, and issue an update confirmation request related to the application update description information.
- the prompt window is a forced update prompt window or a suggested update prompt window.
- the prompt window is a forced update prompt window
- the preset position of the prompt window only a certain selection control is displayed, which is used to request the user to issue an update confirmation after browsing the application update description information.
- the prompt window is a suggestion update prompt window
- a confirmation selection control and a deselection control are displayed in the prompt window, which are used to request the user to issue an update confirmation after browsing the application update description information, and can also be used to obtain the user issuing Update cancellation instruction.
- S304 If an update confirmation instruction sent by the user on the interface is received, the hot update operation is sequentially performed in each of the framework levels according to the order of the scheduling priority.
- the user by displaying the version update description information of multiple framework levels in the same prompt window of the mobile application, the user is required to separately check the prompt window that only contains one version update description information to confirm the update. , reducing the user's operational complexity and improving the efficiency of hot updates.
- the user can only issue an update confirmation instruction after consulting the application update description information, thereby avoiding the user issuing an update cancellation instruction, thereby implementing the framework level.
- the mandatory update ensures that mobile applications can run a more stable version and improve the stability of mobile applications.
- the foregoing S301 specifically includes:
- S3011 Obtain a hot update mode of each of the framework levels, where the hot update mode includes a forced update, a recommended update, and a silent update.
- a hot update mode of each frame level that needs to perform a hot update operation is obtained, and a hot update mode of each frame level in a default state is pre-released by a version issuer or a mobile application. Settings.
- the hot update mode for each framework level is one of forced update, recommended update, and silent update.
- Forced update means that the framework level can only issue an update confirmation command before the hot update is completed, otherwise the user is not allowed to continue using the mobile application; it is recommended to update the update packet indicating the framework level after downloading, suggesting the user to execute immediately in the prompt window
- the framework level is hot updated, but the user can also choose to cancel the update to perform the hot update of the framework level next time the mobile application is launched; the silent update indicates that the framework level silently downloads the update packet in the mobile application background, and starts the next time.
- the mobile app silently performs a hot update whose hot update process is invisible to the user.
- S3012 In each of the framework levels, determining that the hot update mode is a mandatory update or a suggested update framework level.
- the hot update mode is filtered to force update or suggestion New individual framework levels. After obtaining the filtered version update description information of each frame level, the subsequent steps S302 to S304 are performed.
- the hot update mode of different framework levels is determined, and only the version update description information of the framework level whose hot update mode is forced update or recommended update is obtained, so that the display is displayed in the mobile application interface of S304.
- the application update description information can include the version update description information of the framework level of the silent update, ensuring that the framework level of the silent update can not understand the heat of the silent update framework level even if the hot update is performed sequentially with other framework levels. Updated information to enhance data security at the mobile app framework level.
- the method further includes:
- S3014 if there is a first framework level in which the hot update mode is forced update, acquiring a second frame level with the scheduling priority higher than the first frame level, and acquiring the scheduling priority is low. At the first frame level and the hot update mode is a third frame level that is recommended for update.
- a framework level in which the hot update mode is forced update is referred to as a first frame level; a frame level in which a scheduling priority is higher than the frame level is referred to as a second frame level.
- the framework level with the scheduling priority lower than the first framework level and the hot update mode to the recommended update is called the third framework level.
- the framework level in which the hot update mode is the recommended update is referred to as a fourth framework level.
- S3015 After determining the fourth frame level of each engraving, S3016 is performed.
- S3015 Adjust the hot update mode of the second frame level and the third frame level to a forced update.
- S3016 If there is a fourth framework level in which the hot update mode is a recommended update, acquiring a fifth frame level with the scheduling priority higher than the fourth frame level, and the fifth frame level The hot update mode is adjusted to force update or suggest update.
- the hot update mode of the framework level whose scheduling priority is higher than the fourth framework level is adjusted to be forced update or recommended update.
- the hot update mode of each frame level in the default state is silent update, the hot update mode of each frame level is not adjusted.
- the frame level of the version update prompt appears in the mobile application is the Native layer, the React Native layer, and the H5 layer, and the order of the scheduling priority is in the order of the Native layer, the React Native layer, and the H5 layer
- the hot update mode of the obtained React Native layer is forced update, and the hot update mode of the Native layer is silent update, and the hot update mode of the Native layer whose scheduling priority is higher than that of the React Native layer is adjusted to be forced update;
- the H5 layer is If the hot update mode is a recommended update, the hot update mode of the H5 layer whose scheduling priority is lower than the Rea ct Native layer is adjusted to be forced update.
- the hot update mode of the obtained React Native layer is a recommended update
- the hot update mode of the Native layer is a silent update
- the hot update mode of the Native layer whose scheduling priority is higher than that of the React Native layer is adjusted to be forced update or Suggested updates.
- the process returns to S3014 again, and the hot update mode of the React Native layer and the H5 layer whose scheduling priority is lower than the Native layer is adjusted to the forced update. Therefore, in this example, corresponding to the hot update mode adjustment strategy of the above S3014 to S3016, Table 1 shows a combination scheme of the hot update modes of the respective frame levels that may eventually occur under such a hot update mode adjustment policy:
- the framework level is the lower layer of the mobile application.
- the framework therefore, requires a mandatory update in the first frame level with a higher scheduling priority, and adjusts the hot update mode of the second frame level whose scheduling priority is lower than the first frame level to a mandatory update, so that the higher layer in the mobile application
- the underlying framework hierarchy must also be forced to update, ensuring that the higher-level framework hierarchy can still depend on the underlying framework hierarchy to function properly after forced updates.
- the hot update mode of the third frame level whose scheduling priority is lower than the first frame level and the hot update mode to the recommended update to the forced update By adjusting the hot update mode of the third frame level whose scheduling priority is lower than the first frame level and the hot update mode to the recommended update to the forced update, the need to use the forced update prompt window and the suggestion update prompt window in S302 is avoided. To obtain the update confirmation command issued by the user, it is guaranteed that the version update description information can be summarized in the same window.
- the hot update mode is a fourth frame level that is recommended to be updated, and the hot update mode of the fifth frame level whose scheduling priority is higher than the fourth frame level is adjusted to a mandatory update.
- the process returns to execution S3014, thereby realizing the orientation adjustment of the hot update mode to achieve the above advantageous effects.
- the hot update mode of the fifth frame level with the scheduling priority higher than the fourth frame level to the recommended update the higher layer frame level and the lower layer frame level in the mobile application can be recommended to update simultaneously, and the guarantee is guaranteed.
- the version update description information of the two framework levels can be summarized in the same suggestion update prompt window.
- the actual update progress display manner of each frame level is further defined. As shown in FIG. 6, after the above S103, the method further includes:
- S104 Calculate a second actual update progress of the mobile application according to a first actual update progress corresponding to each of the frame levels.
- S105 In an interface of the mobile terminal, generate a progress bar based on the progress of the second real update.
- the actual update progress corresponding to each frame level is detected.
- the calculation method of the actual update schedule may be, for example, the decompression installation progress of the update packet of each framework level.
- the actual update progress of the mobile application in the overall sense is calculated by a preset algorithm based on the actual update progress of each frame level. . Moreover, the preset algorithm can make the actual update progress of the last framework level in the hot update process reach 100%, and the actual update progress of the mobile application is also 100%. [0086] As shown in FIG. 7, the progress bar includes a sub-area 1 for characterizing the progress of the hot update, and according to the actual ratio of the total area 2 of the progress bar occupying the progress area, a dynamically changing progress bar can be generated.
- the second actual update progress of the mobile application is calculated based on the first actual update progress of each framework level, and a progress bar that is convenient for the user to visually observe can be merged and generated in the mobile application interface.
- a progress bar that is convenient for the user to visually observe can be merged and generated in the mobile application interface.
- FIG. 8 is a structural block diagram of the hot update device of the mobile application provided by the embodiment of the present application. For the convenience of description, only the present embodiment is shown. Apply for the relevant parts of the embodiment.
- the device includes:
- the first obtaining module 81 is configured to separately acquire each frame level of the version update prompt in the mobile application.
- the second obtaining module 82 is configured to: if the frame level of the version update prompt is multiple, obtain corresponding to each of the frame levels according to a correspondence between a preset frame level and a scheduling priority. Scheduling priority.
- the hot update module 83 is configured to sequentially control each of the framework levels to perform a hot update operation based on the order of the scheduling priorities.
- the hot update module 83 includes:
- an obtaining submodule configured to obtain version update description information of each of the framework levels.
- a summary sub-module configured to summarize each of the version update description information to obtain an application update description.
- a display submodule configured to display the application update description information on an interface of the mobile application, concurrently An update confirmation request related to the application update description information.
- the control submodule is configured to, if receiving an update confirmation instruction issued by the user on the interface, sequentially control each of the framework levels to perform a hot update operation based on the order of the scheduling priorities.
- the obtaining submodule is specifically configured to:
- the hot update mode including forced update, recommended update, and silent update
- the frame level includes a first frame level, a second frame level, a third frame level, a fourth frame level, and a fifth frame level
- the obtaining submodule is further configured to:
- a first frame level in which the hot update mode is forced update if there is a first frame level in which the hot update mode is forced update, acquiring a second frame level with the scheduling priority higher than the first frame level, and acquiring the scheduling priority lower than the Describe a first framework level and the hot update mode is a third framework level that is recommended to be updated;
- the hot update mode is a recommended update
- acquiring a fifth frame level with the scheduling priority higher than the fourth frame level and the fifth frame level
- the hot update mode is adjusted to force update or suggest update.
- the hot update device of the mobile application further includes:
- the calculation module 84 is configured to calculate a second actual update progress of the mobile application according to a first actual update progress corresponding to each of the frame levels.
- the generating module 85 is configured to generate, in the interface of the mobile terminal, a progress bar based on the progress of the second real update.
- the number of the framework levels in which the version update prompt occurs is multiple, and the scheduling priority corresponding to each frame level is obtained, and the scheduling priority can be sequentially controlled based on the scheduling priority.
- the hot update operation is performed at each framework level, which realizes the orderly scheduling between multiple framework levels, avoiding the phenomenon of hot update preemption or hot update conflict between multiple framework levels, thus ensuring the shift
- the dynamic application can continue to operate normally during the hot update process, thereby improving the stability of the mobile application.
- FIG. 10 is a schematic diagram of an electronic device according to an embodiment of the present application.
- the electronic device 10 of this embodiment includes: a processor 1000, a memory 1001, and computer readable instructions 1002 stored in the memory 1001 and executable on the processor 1000, such as a mobile application. Hot update program.
- the processor 1000 executes the computer readable instructions 1002 to implement the steps in the thermal update method embodiments of the various mobile applications described above, such as steps 101 through 103 shown in FIG.
- the processor 1000 executes the computer readable instructions 1002 to implement the functions of the modules/units in the various apparatus embodiments described above, such as the functions of the modules 81 to 83 shown in FIG.
- the computer readable instructions 1002 may be partitioned into one or more modules/units, the one or more modules/units being stored in the memory 1001, and by the processor 1000 is executed to complete the application.
- the one or more modules/units may be a series of computer readable instruction instruction segments capable of performing a particular function, the instruction segments being used to describe the execution of the computer readable instructions 1002 in the electronic device 10.
- the electronic device 10 may be a computing device such as a desktop computer, a notebook, a palmtop computer, and a cloud server.
- the electronic device may include, but is not limited to, the processor 1000, the memory 1001. It will be understood by those skilled in the art that FIG. 10 is merely an example of the electronic device 10 and does not constitute a limitation on the electronic device 10, and may include more or less components than those illustrated, or combine some components, or different components.
- the electronic device may further include an input/output device, a network access device, a bus, and the like.
- the processor 1000 may be a central processing unit (CPU), or may be another general-purpose processor, a digital signal processor (DSP), or an application specific integrated circuit (Application Specific Integrated Circuit, ASIC), ready-to-use programmable gate array
- CPU central processing unit
- DSP digital signal processor
- ASIC Application Specific Integrated Circuit
- the general purpose processor may be a microprocessor or the processor or any conventional processor or the like.
- the memory 1001 may be an internal storage unit of the electronic device 10, such as a hard disk or a memory of the electronic device 10.
- the memory 1001 may also be an external storage device of the electronic device 10, such as a plug-in hard disk equipped on the electronic device 10, a smart memory card (SMC), and a secure digital (SD). Card, flash card, etc. Further, the deposit
- the reservoir 1001 may also include both an internal storage unit of the electronic device 10 and an external storage device.
- the memory 1001 is configured to store the computer readable instructions and other programs and data required by the electronic device.
- the memory 1001 can also be used to temporarily store data that has been output or is about to be output.
- each functional unit in each embodiment of the present application may be integrated into one processing unit, or each unit may exist physically separately, or two or more units may be integrated into one unit.
- the above integrated unit can be implemented in the form of hardware or in the form of a software functional unit.
- the integrated unit if implemented in the form of a software functional unit and sold or used as a standalone product, may be stored in a computer readable storage medium.
- a computer readable storage medium A number of instructions are included to cause a computer device (which may be a personal computer, server, or network device, etc.) to perform all or part of the steps of the methods described in various embodiments of the present application.
- the foregoing storage medium includes: a U disk, a removable hard disk, a read-only memory (ROM), a random access memory (RAM), a magnetic disk or an optical disk, and the like, which can store program codes. .
Landscapes
- Engineering & Computer Science (AREA)
- Software Systems (AREA)
- General Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Computer Security & Cryptography (AREA)
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Stored Programmes (AREA)
- Telephone Function (AREA)
- Mobile Radio Communication Systems (AREA)
Abstract
Description
Claims
Applications Claiming Priority (2)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN201710637113.6A CN107463400B (zh) | 2017-07-31 | 2017-07-31 | 移动应用的热更新方法及终端设备 |
CN201710637113.6 | 2017-07-31 |
Publications (1)
Publication Number | Publication Date |
---|---|
WO2019024229A1 true WO2019024229A1 (zh) | 2019-02-07 |
Family
ID=60547937
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
PCT/CN2017/104531 WO2019024229A1 (zh) | 2017-07-31 | 2017-09-29 | 移动应用的热更新方法、装置、电子设备及介质 |
Country Status (2)
Country | Link |
---|---|
CN (1) | CN107463400B (zh) |
WO (1) | WO2019024229A1 (zh) |
Cited By (1)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN113535211A (zh) * | 2021-09-15 | 2021-10-22 | 中航信移动科技有限公司 | 应用程序更新方法、装置、计算机设备及存储介质 |
Families Citing this family (7)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN109032634B (zh) | 2018-07-16 | 2021-11-26 | 北京百度网讯科技有限公司 | 用于更新应用的方法、装置、设备和计算机可读存储介质 |
JP7354658B2 (ja) * | 2018-08-10 | 2023-10-03 | 株式会社デンソー | 車両用電子制御システム、進捗表示の画面表示制御方法及び進捗表示の画面表示制御プログラム |
CN109857403B (zh) * | 2018-12-05 | 2022-04-19 | 腾讯科技(深圳)有限公司 | 一种页面更新、页面处理方法及装置 |
CN109656611A (zh) * | 2018-12-24 | 2019-04-19 | 成都四方伟业软件股份有限公司 | 三维可视化应用热更新方法、装置和终端 |
CN109828772B (zh) * | 2019-02-19 | 2022-03-11 | 百度在线网络技术(北京)有限公司 | 热更新方法、操作系统、终端设备和存储介质 |
CN110995793B (zh) * | 2019-11-19 | 2022-07-05 | 北京奇艺世纪科技有限公司 | 一种信息流控件更新系统、方法和装置 |
CN111596941B (zh) * | 2020-05-20 | 2023-09-29 | 中国工商银行股份有限公司 | 应用更新方法、装置、电子设备和介质 |
Citations (4)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN101533356A (zh) * | 2009-04-21 | 2009-09-16 | 华为技术有限公司 | 一种实现软件在线升级的方法、装置及系统 |
CN103365692A (zh) * | 2013-07-15 | 2013-10-23 | 北京奇虎科技有限公司 | 软件升级提示信息的推送方法及装置 |
CN104598262A (zh) * | 2014-11-25 | 2015-05-06 | 深圳市腾讯计算机系统有限公司 | 一种移动应用更新方法及装置 |
CN106528192A (zh) * | 2015-09-15 | 2017-03-22 | 阿里巴巴集团控股有限公司 | 一种业务逻辑更新方法和装置 |
Family Cites Families (3)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN102135895B (zh) * | 2010-12-29 | 2013-08-28 | 华为软件技术有限公司 | web系统升级方法及web系统 |
US9218177B2 (en) * | 2011-03-25 | 2015-12-22 | Microsoft Technology Licensing, Llc | Techniques to optimize upgrade tasks |
CN103914310A (zh) * | 2012-12-29 | 2014-07-09 | 北京谊安医疗系统股份有限公司 | 麻醉机升级方法及装置 |
-
2017
- 2017-07-31 CN CN201710637113.6A patent/CN107463400B/zh active Active
- 2017-09-29 WO PCT/CN2017/104531 patent/WO2019024229A1/zh active Application Filing
Patent Citations (4)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN101533356A (zh) * | 2009-04-21 | 2009-09-16 | 华为技术有限公司 | 一种实现软件在线升级的方法、装置及系统 |
CN103365692A (zh) * | 2013-07-15 | 2013-10-23 | 北京奇虎科技有限公司 | 软件升级提示信息的推送方法及装置 |
CN104598262A (zh) * | 2014-11-25 | 2015-05-06 | 深圳市腾讯计算机系统有限公司 | 一种移动应用更新方法及装置 |
CN106528192A (zh) * | 2015-09-15 | 2017-03-22 | 阿里巴巴集团控股有限公司 | 一种业务逻辑更新方法和装置 |
Cited By (2)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN113535211A (zh) * | 2021-09-15 | 2021-10-22 | 中航信移动科技有限公司 | 应用程序更新方法、装置、计算机设备及存储介质 |
CN113535211B (zh) * | 2021-09-15 | 2021-12-28 | 中航信移动科技有限公司 | 应用程序更新方法、装置、计算机设备及存储介质 |
Also Published As
Publication number | Publication date |
---|---|
CN107463400B (zh) | 2019-12-13 |
CN107463400A (zh) | 2017-12-12 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
WO2019024229A1 (zh) | 移动应用的热更新方法、装置、电子设备及介质 | |
WO2019095563A1 (zh) | 屏幕水印的显示方法、装置、计算机设备及存储介质 | |
US20220391232A1 (en) | Content sharing method, device, terminal and storage medium | |
RU2607275C2 (ru) | Способ управления яркостью, а также устройство и программный продукт для реализации этого способа | |
US9484003B2 (en) | Content bound graphic | |
WO2020151306A1 (zh) | 一种容器自适应伸缩方法、服务器及存储介质 | |
US20150220239A1 (en) | Global keyboard shortcuts management for web applications | |
WO2013086988A1 (zh) | 软件安装方法及装置 | |
US20170118216A1 (en) | Substitution of requests or results in access control systems | |
WO2013133916A1 (en) | Tiers of data storage for web applications and browser extensions | |
US20210240914A1 (en) | System and method for dynamic webpage rendering with no flicker or flash of original content | |
US20180081712A1 (en) | Information processing apparatus, information processing method, and computer program product | |
US9483301B2 (en) | Dynamic virtual machine function enabling | |
US9697360B2 (en) | System and method for changing secure boot and electronic device provided with the system | |
US10885229B2 (en) | Electronic device for code integrity checking and control method thereof | |
US11671379B1 (en) | System and method for subscription management using dynamically composed management entities | |
WO2016144898A1 (en) | Video content play | |
JP2010238083A (ja) | 画面表示装置、画面表示方法、及び、プログラム | |
US20230221784A1 (en) | System and method for power state enforced subscription management | |
WO2016185577A1 (ja) | プログラム検証方法、検証プログラム、及び情報処理装置 | |
CN109710622A (zh) | 一种数据更新方法、装置和系统 | |
JP2013037391A5 (zh) | ||
KR102455639B1 (ko) | 이동 단말 시스템 인터페이스 설정 방법, 장치, 매체 및 기기 | |
CN112579927A (zh) | 显示导航栏的方法和装置 | |
US10565287B2 (en) | Web content layout engine instance sharing across mobile devices |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
121 | Ep: the epo has been informed by wipo that ep was designated in this application |
Ref document number: 17919881 Country of ref document: EP Kind code of ref document: A1 |
|
NENP | Non-entry into the national phase |
Ref country code: DE |
|
122 | Ep: pct application non-entry in european phase |
Ref document number: 17919881 Country of ref document: EP Kind code of ref document: A1 |
|
32PN | Ep: public notification in the ep bulletin as address of the adressee cannot be established |
Free format text: NOTING OF LOSS OF RIGHTS PURSUANT TO RULE 112(1) EPC (EPO FORM 1205A DATED 28.05.2020) |
|
122 | Ep: pct application non-entry in european phase |
Ref document number: 17919881 Country of ref document: EP Kind code of ref document: A1 |