Skip to content

Commit efc966b

Browse files
committed
Updated version and change log.
1 parent be55963 commit efc966b

File tree

7 files changed

+18
-10
lines changed

7 files changed

+18
-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.5-dev"
14+
version = "0.9.5"
1515

1616

1717
install {

PluginDemo/app/build.gradle

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

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

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.2-dev'
9+
classpath 'com.didi.virtualapk:gradle:0.9.8.2'
1010
}
1111
}
1212

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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.2-dev'
31+
classpath 'com.didi.virtualapk:gradle:0.9.8.2'
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.5-dev'
44+
compile 'com.didi.virtualapk:core:0.9.5'
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.2-dev'
88+
classpath 'com.didi.virtualapk:gradle:0.9.8.2'
8989
}
9090
```
9191

RELEASE-NOTES.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Release Notes
22

3-
## 0.9.0
3+
## com.didi.virtualapk:core:0.9.0
44
开源的第一个版本,支持了几乎所有 Android 特性,目前已经被大家广泛使用。
55

6-
## 0.9.1
6+
## com.didi.virtualapk:core:0.9.1
77
##### 1. 最初,为了让程序更加健壮,当我们通过无效的 Intent 来启动插件中的 Activity,这个时候程序不会报错。尽管我们的初衷是好的,但现在我们觉得这种方式太过友好了,不利于bug的排查。
88

99
```改动```:现在,启动无效的 Activity 会直接抛出 ActivityNotFoundException。
@@ -26,4 +26,12 @@
2626

2727
```改动```:hook Android N 的资源,尽管是多余的。
2828

29+
## com.didi.virtualapk:core:0.9.5
30+
1. 修复多个bug,强烈建议升级至此版本,以前版本不再维护。
31+
2. 与 com.didi.virtualapk:gradle:0.9.8.2 搭配使用,支持官方 Data Binding。
32+
2933
## VirtualAPK 的构建部分已经开源了,![点击这里查看](https://github.com/didi/VirtualAPK/tree/master/virtualapk-gradle-plugin)
34+
35+
## com.didi.virtualapk:gradle:0.9.8.2
36+
1. 适配android gradle 3.0.0
37+
2. 修复多个bug,强烈建议升级至此版本,以前版本不再维护。

app/build.gradle

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

5151
compile 'com.android.support:appcompat-v7:23.4.0'
52-
compile 'com.didi.virtualapk:core:0.9.5-dev'
52+
compile 'com.didi.virtualapk:core:0.9.5'
5353
// compile 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.2-dev'
10+
classpath 'com.didi.virtualapk:gradle:0.9.8.2'
1111

1212
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
1313
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'

0 commit comments

Comments
 (0)