Skip to content

Commit

Permalink
gradle-small:1.1.0-alpha2
Browse files Browse the repository at this point in the history
  • Loading branch information
galenlin committed Feb 25, 2017
1 parent 2fef9d5 commit 0429946
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 6 deletions.
21 changes: 21 additions & 0 deletions Android/DevSample/buildSrc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## 1.1.0-alpha2 (2017-02-25)

Features:

- 增加 `gradlew smallLint` 任务用于检查插件问题
- 检查是否包含重复类,以避免 pre-verified 与 AppCompat主题闪退问题

- `aarVersion` 默认与 `gradle-small` 版本保持一致

Bugfixes:

- 修正第三方jar未被分离的问题 (#378)
- 修正第三方so未被正确打包进插件的问题 (#367, #381)
- 修正 `support-compat``support-core-utils` 冲突的问题
- 修正不包含资源的插件包在混淆时无法编译的问题

Refactor:

- 导出 util.Log 类用于打印彩色日志
- 使用 taskGraph 监听来完成插件编译开始与结束日志

## 1.1.0-beta4 (2016-12-12)

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:1.1.0-beta4'
classpath 'net.wequick.tools.build:gradle-small:1.1.0-alpha2'
}
}
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=1.1.0-beta4
version=1.1.0-alpha2
2 changes: 1 addition & 1 deletion Android/GETTING-STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
classpath 'net.wequick.tools.build:gradle-small:1.1.0-beta4'
classpath 'net.wequick.tools.build:gradle-small:1.1.0-alpha2'
}
}
Expand Down
2 changes: 1 addition & 1 deletion Android/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
```groovy
buildscript {
dependencies {
classpath 'net.wequick.tools.build:gradle-small:1.1.0-beta4'
classpath 'net.wequick.tools.build:gradle-small:1.1.0-alpha2'
}
}
Expand Down
2 changes: 1 addition & 1 deletion Android/Sample/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:2.1.2'
classpath 'net.wequick.tools.build:gradle-small:1.1.0-beta4'
classpath 'net.wequick.tools.build:gradle-small:1.1.0-alpha2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand Down
2 changes: 1 addition & 1 deletion 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="1.1.0-beta4" />
<global id="smallPluginVersion" value="1.1.0-alpha2" />
<global id="smallAarVersion" value="1.1.0-alpha2" />
</globals>

0 comments on commit 0429946

Please sign in to comment.