Skip to content
This repository has been archived by the owner on Jul 12, 2020. It is now read-only.

Commit

Permalink
Prepare version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vanniktech committed Jul 1, 2017
1 parent 971838c commit 7bdb7ba
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# Change Log

Version 0.4.0 *(In development)*
--------------------------------
Version 0.4.0 *(2017-07-01)*
----------------------------

- java.lang.NoClassDefFoundError: org/gradle/logging/StyledTextOutput$Style [\#38](https://github.com/vanniktech/gradle-android-apk-size-plugin/issues/38)
- Update Android Studio Gradle Build Tools to 2.3.3 [\#55](https://github.com/vanniktech/gradle-android-apk-size-plugin/pull/55) ([vanniktech](https://github.com/vanniktech))
- Update to Gradle 4.0 [\#54](https://github.com/vanniktech/gradle-android-apk-size-plugin/pull/54) ([vanniktech](https://github.com/vanniktech))
- Feature - Add extension to support max apk size [\#49](https://github.com/vanniktech/gradle-android-apk-size-plugin/pull/49) ([jaredsburrows](https://github.com/jaredsburrows))
- Show mega bytes and bytes [\#43](https://github.com/vanniktech/gradle-android-apk-size-plugin/pull/43) ([jaredsburrows](https://github.com/jaredsburrows))

Version 0.3.0 *(2016-09-19)*
----------------------------
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Starting from version 0.3.0 the plugin can also be applied to Android library pr

This plugin creates a task per output file, per variant, and configures each task to run after the variant's assemble task. This means that if the assemble task does not run, no apk size will be reported.

Works with the latest stable Gradle Android Tools version 2.1.3. This plugin is compiled using Java 7 hence you also need Java 7 in order to use it.
Works with the latest stable Gradle Android Tools version 2.3.3. This plugin is compiled using Java 7 hence you also need Java 7 in order to use it.

# Set up

Expand All @@ -23,7 +23,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.vanniktech:gradle-android-apk-size-plugin:0.3.0'
classpath 'com.vanniktech:gradle-android-apk-size-plugin:0.4.0'
}
}
Expand Down Expand Up @@ -70,6 +70,7 @@ Those CSV files can for instance be used to configure the [Jenkins Plot Plugin](
Apksize is configurable via a Gradle extension (shown with default values):

in `app/build.gradle`:

```groovy
apkSize {
maxApkSize = 5800000
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.vanniktech
VERSION_NAME=0.4.0-SNAPSHOT
VERSION_NAME=0.4.0

POM_ARTIFACT_ID=gradle-android-apk-size-plugin
POM_NAME=Gradle Android APK Size Plugin
Expand Down

0 comments on commit 7bdb7ba

Please sign in to comment.