Skip to content

Commit

Permalink
Updated version.
Browse files Browse the repository at this point in the history
  • Loading branch information
superqiaopu committed Jul 2, 2018
1 parent 93d286e commit cee62ab
Show file tree
Hide file tree
Showing 8 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.6-dev"
version = "0.9.6"


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.6-dev'
compile 'com.didi.virtualapk:core:0.9.6'
}

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.4.4-dev'
classpath 'com.didi.virtualapk:gradle:0.9.8.4'
}
}

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.4.4-dev'
classpath 'com.didi.virtualapk:gradle:0.9.8.4'
}
```

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.6-dev'
compile 'com.didi.virtualapk:core:0.9.6'
```

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.4.4-dev'
classpath 'com.didi.virtualapk:gradle:0.9.8.4'
}
```

Expand Down
10 changes: 9 additions & 1 deletion RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@

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

## com.didi.virtualapk:core:0.9.6
1. 修复部分空指针问题。

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

Expand All @@ -39,3 +42,8 @@

## com.didi.virtualapk:gradle:0.9.8.3
1. 兼容不定义 productFlavors 的配置。

## com.didi.virtualapk:gradle:0.9.8.4
1. 修复当插件依赖library module时构建失败的bug。
2. 修复依赖本地aar时构建失败的bug。
3. 修复当插件自定义attr属性时id错误的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.6-dev'
compile 'com.didi.virtualapk:core:0.9.6'
// 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.4.4-dev'
classpath 'com.didi.virtualapk:gradle:0.9.8.4'

classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
Expand Down
2 changes: 1 addition & 1 deletion virtualapk-gradle-plugin/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
GROUP_ID=com.didi.virtualapk
ARTIFACT_ID=gradle
VERSION=0.9.8.4.4-dev
VERSION=0.9.8.4

0 comments on commit cee62ab

Please sign in to comment.