File tree 10 files changed +22
-11
lines changed
src/main/groovy/net/wequick/gradle
templates/activities/SmallLauncher
10 files changed +22
-11
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.2.0-alpha5 (2017-06-11)
2
+
3
+ Bugfixes:
4
+
5
+ - 修正全局 ` supportVersion ` 导致的 ` multidex ` 依赖无法解析问题 (#456 )
6
+ - 修正 ` cleanLib ` 没有 clean 宿主分身的问题
7
+
1
8
## 1.2.0-alpha4 (2017-06-06)
2
9
3
10
Bugfixes:
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ gradle-small-plugin是一个gradle插件,用来打包安卓组件包。
12
12
}
13
13
dependencies {
14
14
classpath 'com.android.tools.build:gradle:1.5.0'
15
- classpath 'net.wequick.tools.build:gradle-small:1.2.0-alpha4 '
15
+ classpath 'net.wequick.tools.build:gradle-small:1.2.0-alpha5 '
16
16
}
17
17
}
18
18
Original file line number Diff line number Diff line change 20
20
org.gradle.daemon =true
21
21
22
22
group =net.wequick.tools.build
23
- version =1.2.0-alpha4
23
+ version =1.2.0-alpha5
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public class RootExtension extends BaseExtension {
35
35
private static final VersionNumber REQUIRED_AAR_REVISION = VersionNumber . parse(REQUIRED_AAR_VERSION )
36
36
37
37
/* * The built version of gradle-small plugin */
38
- public static final String PLUGIN_VERSION = ' 1.2.0-alpha4 '
38
+ public static final String PLUGIN_VERSION = ' 1.2.0-alpha5 '
39
39
public static final VersionNumber PLUGIN_REVISION = VersionNumber . parse(PLUGIN_VERSION )
40
40
41
41
/**
Original file line number Diff line number Diff line change
1
+ ## 1.2.0-alpha5 (2017-06-11)
2
+
3
+ 版本同步
4
+
1
5
## 1.2.0-alpha4 (2017-06-06)
2
6
3
7
Performance:
Original file line number Diff line number Diff line change 1
1
group =net.wequick.small
2
- version =1.2.0-alpha4
2
+ version =1.2.0-alpha5
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ buildscript {
32
32
}
33
33
dependencies {
34
34
classpath 'com.android.tools.build:gradle:1.3.0'
35
- classpath 'net.wequick.tools.build:gradle-small:1.2.0-alpha4 '
35
+ classpath 'net.wequick.tools.build:gradle-small:1.2.0-alpha5 '
36
36
}
37
37
}
38
38
@@ -47,7 +47,7 @@ apply plugin: 'net.wequick.small'
47
47
48
48
``` groovy
49
49
small {
50
- aarVersion = '1.2.0-alpha4 '
50
+ aarVersion = '1.2.0-alpha5 '
51
51
}
52
52
```
53
53
Original file line number Diff line number Diff line change 26
26
` ` ` groovy
27
27
buildscript {
28
28
dependencies {
29
- classpath ' net.wequick.tools.build:gradle-small:1.2.0-alpha4 '
29
+ classpath ' net.wequick.tools.build:gradle-small:1.2.0-alpha5 '
30
30
}
31
31
}
32
32
33
33
apply plugin: ' net.wequick.small'
34
34
35
35
small {
36
- aarVersion = ' 1.2.0-alpha4 '
36
+ aarVersion = ' 1.2.0-alpha5 '
37
37
}
38
38
` ` `
39
39
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:2.3.0'
10
- classpath ' net.wequick.tools.build:gradle-small:1.2.0-alpha4 '
10
+ classpath ' net.wequick.tools.build:gradle-small:1.2.0-alpha5 '
11
11
// NOTE: Do not place your application dependencies here; they belong
12
12
// in the individual module build.gradle files
13
13
}
Original file line number Diff line number Diff line change 5
5
<global id =" assetsOut" value =" ./app/src/main/assets" />
6
6
<global id =" mavenUrl" value =" mavenCentral" />
7
7
<global id =" copyGradleSupported" type =" boolean" value =" ${(compareVersions(gradlePluginVersion, '2.0') < 0)?string}" />
8
- <global id =" smallPluginVersion" value =" 1.2.0-alpha4 " />
9
- <global id =" smallAarVersion" value =" 1.2.0-alpha4 " />
8
+ <global id =" smallPluginVersion" value =" 1.2.0-alpha5 " />
9
+ <global id =" smallAarVersion" value =" 1.2.0-alpha5 " />
10
10
</globals >
You can’t perform that action at this time.
0 commit comments