Skip to content

Commit

Permalink
bump to version 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
刘俊 committed Mar 15, 2016
1 parent cf8eafe commit b79d88e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
@@ -1,3 +1,8 @@
### 1.1
- change exclude/include behavior
from now on, you can call include and exclude multiple times just like gradle


### 1.0
- First version
version

6 changes: 4 additions & 2 deletions README.md
Expand Up @@ -19,7 +19,7 @@ Usage
}
dependencies {
classpath 'com.jween.gradle:android-soexcluder:1.0'
classpath 'com.jween.gradle:android-soexcluder:1.1'
}
}
Expand All @@ -45,10 +45,12 @@ Configuration
exclude "lib/armeabi-v7a/foo.so", "lib/armeabi-v8a/bar.so"
}
// Reserve only v7a so files except foo.so for debug buildType
// Reserve only v7a and x86 so files except foo.so for debug buildType
debug {
include "lib/armeabi-v7a/*.so"
include "lib/x86/*.so"
exclude "lib/armeabi-v7a/foo.so"
exclude "lib/x86/foo.so"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Expand Up @@ -39,7 +39,7 @@ apply plugin: 'nebula.provided-base'
apply plugin: 'maven'
apply plugin: 'maven-publish'

def VERSION = '1.0'
def VERSION = '1.1'
def GROUP = 'com.jween.gradle'
def ARTIFACT_ID = 'android-soexcluder'
group = GROUP
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/groovy/com/jween/gradle/soexcluder/Rule.groovy
Expand Up @@ -10,10 +10,10 @@ class Rule {
}

void exclude(String...args) {
excludeList = Arrays.asList(args)
excludeList += Arrays.asList(args)
}

void include(String...args) {
includeList = Arrays.asList(args)
includeList += Arrays.asList(args)
}
}

0 comments on commit b79d88e

Please sign in to comment.