Skip to content

Commit

Permalink
Version 1.2.2
Browse files Browse the repository at this point in the history
Fixed bug which caused @parcelable to not work correctly.

All the AST transformations have been rewritten using `GeneralUtils` and now create better code.

Updated SwissKnife to latest Groovy version (2.4.0) and latest plugin.
  • Loading branch information
jmartinesp committed Jan 26, 2015
1 parent 35870c3 commit f6cc6c2
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 27 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Once your project App Module is configured to use Groovy you can add this librar
```groovy
dependencies {
...
compile "com.arasthel:swissknife:1.2.1"
compile "com.arasthel:swissknife:1.2.2"
...
}
```
Expand Down
2 changes: 1 addition & 1 deletion SwissKnife/SwissKnife.iml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" exported="" name="support-annotations-21.0.3" level="project" />
<orderEntry type="library" exported="" name="support-v4-21.0.3" level="project" />
<orderEntry type="library" exported="" name="groovy-2.4.0-rc-2-grooid" level="project" />
<orderEntry type="library" exported="" name="groovy-2.4.0-grooid" level="project" />
</component>
</module>

4 changes: 2 additions & 2 deletions SwissKnife/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {
minSdkVersion 8
targetSdkVersion 21
versionCode 1
versionName "1.2.1"
versionName "1.2.2"
}

packagingOptions {
Expand Down Expand Up @@ -38,7 +38,7 @@ repositories {


dependencies {
compile 'org.codehaus.groovy:groovy:2.4.0-rc-2:grooid'
compile 'org.codehaus.groovy:groovy:2.4.0:grooid'
compile 'com.android.support:support-v4:21.0.3'
}

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

VERSION_NAME=1.2.1
VERSION_CODE=11
VERSION_NAME=1.2.2
VERSION_CODE=12
GROUP=com.arasthel

POM_DESCRIPTION=Android library for View Injection and Async processing
Expand Down
23 changes: 2 additions & 21 deletions sample/build.gradle
Original file line number Diff line number Diff line change
@@ -1,24 +1,5 @@
import com.android.build.gradle.tasks.MergeResources

// Top-level build file where you can add configuration options common to all sub-projects/modules
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.0.0'
classpath 'me.champeau.gradle:gradle-groovy-android-plugin:0.3.4'
}
}

allprojects {
apply plugin: 'idea'
repositories {
jcenter()
}

}

gradle.taskGraph.whenReady {
allprojects {
tasks.withType(GroovyCompile) { task ->
Expand All @@ -38,7 +19,7 @@ tasks.whenTaskAdded {
}

apply plugin: 'com.android.application'
apply plugin: 'me.champeau.gradle.groovy-android'
apply plugin: 'groovyx.grooid.groovy-android'

android {
compileSdkVersion 21
Expand Down Expand Up @@ -71,5 +52,5 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':SwissKnife')
compile 'org.codehaus.groovy:groovy:2.4.0-beta-3:grooid'
compile 'org.codehaus.groovy:groovy:2.4.0:grooid'
}

0 comments on commit f6cc6c2

Please sign in to comment.