Skip to content

v2.2.4

Compare
Choose a tag to compare
@cundong cundong released this 24 Feb 05:41
· 106 commits to dev since this release

replugin-host-lib

Breaking Changes 核心改动

  • (#506)No longer Override PluginContext's getDatabasePath method - @cundong

为了适配 Android 8.1 及后续版本,PluginContext#getDatabasePath() 方法不再重写,因此,在开发中,需要各插件之间约定,防止出现重名数据库。

  • (#507)Improve the FileLock's used when loading plugin. - @cundong

在多进程加载多个插件时,所有元素都需要做到进程隔离

适配 Android O 的 odex 文件目录变化

  • (#497)Optimize the clone operation of the PluginInfo object - @SkyEric

优化了 PluginInfo 类的 clone( )实现,完善了插件升级,同版本覆盖,卸载等逻辑

  • (#499) Optimize the plugin to continuously upgrade 2 or more versions - @SkyEric

处理了“某插件连续性升级N次”这个场景。

Main Changes 主要更新

replugin-plugin-lib

Main Changes 主要更新

将插件 lib 中的 PluginInfo 对象与宿主 lib 同步

replugin-sample

增加了在插件中使用 Notification 的示例