Skip to content

Commit

Permalink
Updated version and change log.
Browse files Browse the repository at this point in the history
  • Loading branch information
superqiaopu committed May 22, 2018
1 parent be55963 commit efc966b
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CoreLibrary/upload.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def gitUrl = 'https://github.com/didi/VirtualAPK' // Git仓库的url
group = GROUP_ID
archivesBaseName = 'core'

version = "0.9.5-dev"
version = "0.9.5"


install {
Expand Down
2 changes: 1 addition & 1 deletion PluginDemo/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ dependencies {
// the following aars are also compiled in host project, so they will be filterd when build plugin apk.
// but, wo can still visit their Class and Resources.
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.didi.virtualapk:core:0.9.5-dev'
compile 'com.didi.virtualapk:core:0.9.5'
}

apply plugin: 'com.didi.virtualapk.plugin'
Expand Down
2 changes: 1 addition & 1 deletion PluginDemo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
classpath 'com.didi.virtualapk:gradle:0.9.8.2-dev'
classpath 'com.didi.virtualapk:gradle:0.9.8.2'
}
}

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Add a dependency in `build.gradle` in root of host project as following.

``` java
dependencies {
classpath 'com.didi.virtualapk:gradle:0.9.8.2-dev'
classpath 'com.didi.virtualapk:gradle:0.9.8.2'
}
```

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

``` java
compile 'com.didi.virtualapk:core:0.9.5-dev'
compile 'com.didi.virtualapk:core:0.9.5'
```

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

``` java
dependencies {
classpath 'com.didi.virtualapk:gradle:0.9.8.2-dev'
classpath 'com.didi.virtualapk:gradle:0.9.8.2'
}
```

Expand Down
12 changes: 10 additions & 2 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Release Notes

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

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

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

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

## com.didi.virtualapk:core:0.9.5
1. 修复多个bug,强烈建议升级至此版本,以前版本不再维护。
2. 与 com.didi.virtualapk:gradle:0.9.8.2 搭配使用,支持官方 Data Binding。

## VirtualAPK 的构建部分已经开源了,![点击这里查看](https://github.com/didi/VirtualAPK/tree/master/virtualapk-gradle-plugin)

## com.didi.virtualapk:gradle:0.9.8.2
1. 适配android gradle 3.0.0
2. 修复多个bug,强烈建议升级至此版本,以前版本不再维护。
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ dependencies {
testCompile 'junit:junit:4.12'

compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.didi.virtualapk:core:0.9.5-dev'
compile 'com.didi.virtualapk:core:0.9.5'
// compile project (':CoreLibrary')

}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
classpath 'com.didi.virtualapk:gradle:0.9.8.2-dev'
classpath 'com.didi.virtualapk:gradle:0.9.8.2'

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

0 comments on commit efc966b

Please sign in to comment.