File tree Expand file tree Collapse file tree 8 files changed +18
-10
lines changed Expand file tree Collapse file tree 8 files changed +18
-10
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ def gitUrl = 'https://github.com/didi/VirtualAPK' // Git仓库的url
11
11
group = GROUP_ID
12
12
archivesBaseName = ' core'
13
13
14
- version = " 0.9.6-dev "
14
+ version = " 0.9.6"
15
15
16
16
17
17
install {
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ dependencies {
51
51
// the following aars are also compiled in host project, so they will be filterd when build plugin apk.
52
52
// but, wo can still visit their Class and Resources.
53
53
compile ' com.android.support:appcompat-v7:23.4.0'
54
- compile ' com.didi.virtualapk:core:0.9.6-dev '
54
+ compile ' com.didi.virtualapk:core:0.9.6'
55
55
}
56
56
57
57
apply plugin : ' com.didi.virtualapk.plugin'
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ buildscript {
6
6
}
7
7
dependencies {
8
8
classpath ' com.android.tools.build:gradle:3.0.0'
9
- classpath ' com.didi.virtualapk:gradle:0.9.8.4.4-dev '
9
+ classpath ' com.didi.virtualapk:gradle:0.9.8.4'
10
10
}
11
11
}
12
12
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ Add a dependency in `build.gradle` in root of host project as following.
28
28
29
29
``` java
30
30
dependencies {
31
- classpath ' com.didi.virtualapk:gradle:0.9.8.4.4-dev '
31
+ classpath ' com.didi.virtualapk:gradle:0.9.8.4'
32
32
}
33
33
```
34
34
@@ -41,7 +41,7 @@ apply plugin: 'com.didi.virtualapk.host'
41
41
Compile VirtualAPK in application module of ` build.gradle ` .
42
42
43
43
``` java
44
- compile ' com.didi.virtualapk:core:0.9.6-dev '
44
+ compile ' com.didi.virtualapk:core:0.9.6'
45
45
```
46
46
47
47
Initialize ` PluginManager ` in ` YourApplication::attachBaseContext() ` .
@@ -85,7 +85,7 @@ Add a dependency in `build.gradle` in root of plugin project as following.
85
85
86
86
``` java
87
87
dependencies {
88
- classpath ' com.didi.virtualapk:gradle:0.9.8.4.4-dev '
88
+ classpath ' com.didi.virtualapk:gradle:0.9.8.4'
89
89
}
90
90
```
91
91
Original file line number Diff line number Diff line change 28
28
29
29
## com.didi.virtualapk:core:0.9.5
30
30
1 . 修复多个bug,强烈建议升级至此版本,以前版本不再维护。
31
- 2 . 与 com.didi.virtualapk:gradle:0.9.8.2 搭配使用,支持官方 Data Binding。
31
+ 2 . 与 com.didi.virtualapk:gradle:0.9.8.2及以上版本 搭配使用,支持官方 Data Binding。
32
+
33
+ ## com.didi.virtualapk:core:0.9.6
34
+ 1 . 修复部分空指针问题。
32
35
33
36
## VirtualAPK 的构建部分已经开源了,![ 点击这里查看] ( https://github.com/didi/VirtualAPK/tree/master/virtualapk-gradle-plugin )
34
37
39
42
40
43
## com.didi.virtualapk:gradle:0.9.8.3
41
44
1 . 兼容不定义 productFlavors 的配置。
45
+
46
+ ## com.didi.virtualapk:gradle:0.9.8.4
47
+ 1 . 修复当插件依赖library module时构建失败的bug。
48
+ 2 . 修复依赖本地aar时构建失败的bug。
49
+ 3 . 修复当插件自定义attr属性时id错误的bug。
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ dependencies {
49
49
testCompile ' junit:junit:4.12'
50
50
51
51
compile ' com.android.support:appcompat-v7:23.4.0'
52
- compile ' com.didi.virtualapk:core:0.9.6-dev '
52
+ compile ' com.didi.virtualapk:core:0.9.6'
53
53
// compile project (':CoreLibrary')
54
54
55
55
}
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ buildscript {
7
7
}
8
8
dependencies {
9
9
classpath ' com.android.tools.build:gradle:3.0.0'
10
- classpath ' com.didi.virtualapk:gradle:0.9.8.4.4-dev '
10
+ classpath ' com.didi.virtualapk:gradle:0.9.8.4'
11
11
12
12
classpath ' com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
13
13
classpath ' com.github.dcendents:android-maven-gradle-plugin:1.4.1'
Original file line number Diff line number Diff line change 1
1
GROUP_ID =com.didi.virtualapk
2
2
ARTIFACT_ID =gradle
3
- VERSION =0.9.8.4.4-dev
3
+ VERSION =0.9.8.4
You can’t perform that action at this time.
0 commit comments