Skip to content

Commit 0bba0e6

Browse files
committed
Updated the version.
1 parent 74b7a75 commit 0bba0e6

File tree

9 files changed

+22
-10
lines changed

9 files changed

+22
-10
lines changed

CoreLibrary/upload.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def gitUrl = 'https://github.com/didi/VirtualAPK' // Git仓库的url
1111
group = GROUP_ID
1212
archivesBaseName = 'core'
1313

14-
version = "0.9.7.1"
14+
version = "0.9.8"
1515

1616

1717
install {

PluginDemo/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ dependencies {
5454
// the following aars are also compiled in host project, so they will be filterd when build plugin apk.
5555
// but, wo can still visit their Class and Resources.
5656
implementation 'com.android.support:appcompat-v7:23.4.0'
57-
implementation 'com.didi.virtualapk:core:0.9.6'
57+
// implementation 'com.didi.virtualapk:core:0.9.8'
5858
}
5959

6060
apply plugin: 'com.didi.virtualapk.plugin'

PluginDemo/app/gradle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#android.enableD8=false
2+
android.useDexArchive=false

PluginDemo/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
}
77
dependencies {
88
classpath 'com.android.tools.build:gradle:3.0.0'
9-
classpath 'com.didi.virtualapk:gradle:0.9.8.5.1-dev'
9+
classpath 'com.didi.virtualapk:gradle:0.9.8.6'
1010
}
1111
}
1212

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# <img src="imgs/va-logo.png" width="200px" align="center" alt="VirtualAPK"/>
22
[![license](http://img.shields.io/badge/license-Apache2.0-brightgreen.svg?style=flat)](https://github.com/didi/VirtualAPK/blob/master/LICENSE)
3-
[![Release Version](https://img.shields.io/badge/release-0.9.7-dev-red.svg)](https://github.com/didi/VirtualAPK/releases)
3+
[![Release Version](https://img.shields.io/badge/release-0.9.8-red.svg)](https://github.com/didi/VirtualAPK/releases)
44
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/didi/VirtualAPK/pulls)
55

66
VirtualAPK is a powerful yet lightweight plugin framework for Android. It can dynamically load and run an APK file (we call it `LoadedPlugin`) seamlessly as an installed application. Developers can use any Class, Resources, Activity, Service, Receiver and Provider in `LoadedPlugin` as if they are registered in app's manifest file.
@@ -28,7 +28,7 @@ Add a dependency in `build.gradle` in root of host project as following.
2828

2929
``` java
3030
dependencies {
31-
classpath 'com.didi.virtualapk:gradle:0.9.8.5-dev'
31+
classpath 'com.didi.virtualapk:gradle:0.9.8.6'
3232
}
3333
```
3434

@@ -41,7 +41,7 @@ apply plugin: 'com.didi.virtualapk.host'
4141
Compile VirtualAPK in application module of `build.gradle`.
4242

4343
``` java
44-
compile 'com.didi.virtualapk:core:0.9.7-dev'
44+
compile 'com.didi.virtualapk:core:0.9.8'
4545
```
4646

4747
Initialize `PluginManager` in `YourApplication::attachBaseContext()`.
@@ -85,7 +85,7 @@ Add a dependency in `build.gradle` in root of plugin project as following.
8585

8686
``` java
8787
dependencies {
88-
classpath 'com.didi.virtualapk:gradle:0.9.8.5-dev'
88+
classpath 'com.didi.virtualapk:gradle:0.9.8.6'
8989
}
9090
```
9191

RELEASE-NOTES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@
3333
## com.didi.virtualapk:core:0.9.6
3434
1. 修复部分空指针问题。
3535

36+
## com.didi.virtualapk:core:0.9.6
37+
1. 代码重构。
38+
2. 修复部分空指针bug。
39+
3. 适配Android P。
40+
4. 修复webview初始化后插件资源不可用的bug。
41+
3642
## VirtualAPK 的构建部分已经开源了,![点击这里查看](https://github.com/didi/VirtualAPK/tree/master/virtualapk-gradle-plugin)
3743

3844
## com.didi.virtualapk:gradle:0.9.8.2
@@ -47,3 +53,7 @@
4753
1. 修复当插件依赖library module时构建失败的bug。
4854
2. 修复依赖本地aar时构建失败的bug。
4955
3. 修复当插件自定义attr属性时id错误的bug。
56+
57+
## com.didi.virtualapk:gradle:0.9.8.6
58+
1. 适配com.android.tools.build:gradle:3.1.0。
59+
2. 修复当插件未定义attr资源时anim资源找不到的bug。

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ dependencies {
4949
testImplementation 'junit:junit:4.12'
5050

5151
implementation 'com.android.support:appcompat-v7:23.4.0'
52-
implementation 'com.didi.virtualapk:core:0.9.7-dev'
52+
implementation 'com.didi.virtualapk:core:0.9.8'
5353
// implementation project (':CoreLibrary')
5454

5555
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
}
88
dependencies {
99
classpath 'com.android.tools.build:gradle:3.0.0'
10-
classpath 'com.didi.virtualapk:gradle:0.9.8.5.1-dev'
10+
classpath 'com.didi.virtualapk:gradle:0.9.8.6'
1111

1212
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
1313
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
GROUP_ID=com.didi.virtualapk
22
ARTIFACT_ID=gradle
3-
VERSION=0.9.8.5.1-dev
3+
VERSION=0.9.8.6

0 commit comments

Comments
 (0)