Skip to content

Commit

Permalink
Merge pull request #64 from qiujuer/develop-stie
Browse files Browse the repository at this point in the history
Develop stie
  • Loading branch information
qiujuer committed May 3, 2016
2 parents 6d45a9a + e24c925 commit 92930f9
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 17 deletions.
2 changes: 1 addition & 1 deletion caprice/kit/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ POM_DESCRIPTION=Genius Android kit module.
POM_ARTIFACT_ID=kit

VERSION_NAME=2.0.0-beta2
VERSION_CODE=1605031100
VERSION_CODE=1605031600
10 changes: 5 additions & 5 deletions caprice/sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ android {

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'net.qiujuer.genius:blur:1.5.0'
compile 'net.qiujuer.genius:res:1.5.0'
compile 'net.qiujuer.genius:ui:1.6.0'
compile project(':kit')
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'net.qiujuer.genius:blur:2.0.0-beta2'
compile 'net.qiujuer.genius:res:2.0.0-beta2'
compile 'net.qiujuer.genius:ui:2.0.0-beta2'
compile 'net.qiujuer.genius:kit:2.0.0-beta2'
}
65 changes: 54 additions & 11 deletions website/started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ root: ../

* `Ui` Research and development in **Color-Drive** and **Material Design** style.
* `Resource` Include Material Design **Color** and Lay **Size**.
* `Kit` Include **command****net** and same **util** class.
* `Blur`Include **blur** image by **java** and **jni** method.
* `Kit` Include **kit-cmd****kit-handler** and **kit-reflect** class.


#### Gradle:
Expand All @@ -21,15 +21,27 @@ root: ../

{% highlight gradle %}
dependencies {
compile 'net.qiujuer.genius:ui:1.6.0'
compile 'net.qiujuer.genius:res:1.5.0'
compile 'net.qiujuer.genius:kit:1.5.0'
compile 'net.qiujuer.genius:blur:1.5.0'
// ui module
compile 'net.qiujuer.genius:ui:2.0.0-beta2'
compile 'net.qiujuer.genius:res:2.0.0-beta2'

// blur module
compile 'net.qiujuer.genius:blur:2.0.0-beta2'

// kit module
compile 'net.qiujuer.genius:kit:2.0.0-beta2'
// or
compile 'net.qiujuer.genius:kit-cmd:2.0.0-beta2'
compile 'net.qiujuer.genius:kit-handler:2.0.0-beta2'
compile 'net.qiujuer.genius:kit-reflect:2.0.0-beta2'
}
{% endhighlight %}

**Note: 'Kit' module included ‘kit-cmd’, ‘kit-handler‘, 'kit-reflect’ modules. **

**Note: Each module is independent and can be used independently to dependency.**


#### Maven

`Ui`
Expand All @@ -38,7 +50,7 @@ dependencies {
<dependency>
<groupId>net.qiujuer.genius</groupId>
<artifactId>ui</artifactId>
<version>1.6.0</version>
<version>2.0.0-beta2</version>
</dependency>
{% endhighlight %}

Expand All @@ -49,7 +61,18 @@ dependencies {
<dependency>
<groupId>net.qiujuer.genius</groupId>
<artifactId>res</artifactId>
<version>1.5.0</version>
<version>2.0.0-beta2</version>
</dependency>
{% endhighlight %}


`Blur`

{% highlight xml %}
<dependency>
<groupId>net.qiujuer.genius</groupId>
<artifactId>blur</artifactId>
<version>2.0.0-beta2</version>
</dependency>
{% endhighlight %}

Expand All @@ -60,22 +83,42 @@ dependencies {
<dependency>
<groupId>net.qiujuer.genius</groupId>
<artifactId>kit</artifactId>
<version>1.5.0</version>
<version>2.0.0-beta2</version>
</dependency>
{% endhighlight %}


`Blur`
`Kit Cmd`

{% highlight xml %}
<dependency>
<groupId>net.qiujuer.genius</groupId>
<artifactId>blur</artifactId>
<version>1.5.0</version>
<artifactId>kit-cmd</artifactId>
<version>2.0.0-beta2</version>
</dependency>
{% endhighlight %}


`Kit Handler`

{% highlight xml %}
<dependency>
<groupId>net.qiujuer.genius</groupId>
<artifactId>kit-handler</artifactId>
<version>2.0.0-beta2</version>
</dependency>
{% endhighlight %}


`Kit Reflect`

{% highlight xml %}
<dependency>
<groupId>net.qiujuer.genius</groupId>
<artifactId>kit-reflect</artifactId>
<version>2.0.0-beta2</version>
</dependency>
{% endhighlight %}



Expand Down

0 comments on commit 92930f9

Please sign in to comment.