Skip to content

Commit

Permalink
gradle-small 0.9.0, small 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
galenlin committed Jun 29, 2016
1 parent c01df7e commit 152c5fb
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 6 deletions.
20 changes: 20 additions & 0 deletions Android/DevSample/buildSrc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## 0.9.0 (2016-06-29)

Features:

- 支持插件混淆 (#85, #158)

Performance:

- 动态添加classpath,避免javac task重复运行

Bugfixes:

- 修正当`app.A`依赖`lib.B`且二者manifest都定义了`<application>`时,`processManifest`失败的问题
- 在manifest的`platformBuildVersionCode`里添加`无资源标记` (#62, #139)
- 修正`processDebugManifest``<application>`标签未闭合的问题 (@tcking)

Other:

- 导入`Android Plugin`相关类,提高代码可读性

## 0.8.0 (2016-05-18)

Bugfixes:
Expand Down
2 changes: 1 addition & 1 deletion Android/DevSample/buildSrc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ gradle-small-plugin是一个gradle插件,用来打包安卓组件包。
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'net.wequick.tools.build:gradle-small:0.7.0'
classpath 'net.wequick.tools.build:gradle-small:0.9.0'
}
}
Expand Down
2 changes: 1 addition & 1 deletion Android/DevSample/buildSrc/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
org.gradle.daemon=true

group=net.wequick.tools.build
version=0.8.0
version=0.9.0
12 changes: 12 additions & 0 deletions Android/DevSample/small/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 1.0.0 (2016-06-29)

Performance:

- 并发加载插件以提高首次加载速度
- 使用CRC校验提高二次加载速度
- 释放中间变量以优化内存

Bugfixes:

- 创建插件application操作移至UI线程 (#173)

## 1.0.0-beta2 (2016-05-19)

Bugfixes:
Expand Down
4 changes: 2 additions & 2 deletions Android/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
classpath 'net.wequick.tools.build:gradle-small:0.8.0'
classpath 'net.wequick.tools.build:gradle-small:0.9.0'
}
}
Expand All @@ -109,7 +109,7 @@ apply plugin: 'net.wequick.small'

```groovy
small {
aarVersion = '1.0.0-beta1'
aarVersion = '1.0.0'
}
```

Expand Down
4 changes: 2 additions & 2 deletions Android/templates/activities/SmallLauncher/globals.xml.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
<global id="assetsOut" value="./app/src/main/assets" />
<global id="mavenUrl" value="mavenCentral" />
<global id="copyGradleSupported" type="boolean" value="${(compareVersions(gradlePluginVersion, '2.0') < 0)?string}" />
<global id="smallPluginVersion" value="0.6.0" />
<global id="smallAarVersion" value="0.9.0" />
<global id="smallPluginVersion" value="0.9.0" />
<global id="smallAarVersion" value="1.0.0" />
</globals>

0 comments on commit 152c5fb

Please sign in to comment.