Skip to content

Commit

Permalink
updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriel committed Oct 21, 2016
1 parent 37bede3 commit dbf4e3d
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 45 deletions.
30 changes: 15 additions & 15 deletions README-JP.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,15 +92,15 @@ allprojects {

```gradle
dependencies {
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3'
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.4'
// Javaの場合はこうして構築します
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3'
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3'
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4'
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4'
// Kotlinの場合はこうして構築します
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3'
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3'
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4'
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4'
compile 'com.android.support:appcompat-v7:23.2.0+'
compile 'com.android.support:support-v4:23.2.0+'
Expand All @@ -110,15 +110,15 @@ dependencies {
Specially, Debug Bottle not only support API 23+, but also 22. To support API 22, please add dependencies like this:
```gradle
dependencies {
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3-support22'
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.4-support22'
// Javaの場合はこうして構築します
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support22'
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support22'
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support22'
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support22'
// Kotlinの場合はこうして構築します
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support22'
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support22'
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support22'
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support22'
compile 'com.android.support:appcompat-v7:22+'
}
Expand All @@ -127,15 +127,15 @@ dependencies {
To support API 23, add dependencies like this:
```gradle
dependencies {
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3-support23'
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.4-support23'
// Javaの場合はこうして構築します
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support23'
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support23'
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support23'
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support23'
// Kotlinの場合はこうして構築します
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support23'
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support23'
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support23'
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support23'
compile 'com.android.support:appcompat-v7:23+'
}
Expand Down
30 changes: 15 additions & 15 deletions README-ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,15 @@ allprojects {
然后在主模块中(Application类所在模块)加入依赖:
```gradle
dependencies {
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3'
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.4'
// 如果你的工程是Java工程,使用此依赖
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3'
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3'
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4'
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4'
// 如果你的工程是Kotlin工程,使用此依赖
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3'
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3'
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4'
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4'
compile 'com.android.support:appcompat-v7:23.2.0+'
compile 'com.android.support:support-v4:23.2.0+'
Expand All @@ -114,15 +114,15 @@ dependencies {
Debug Bottle不仅支持API 23+,还可以支持API 22. 若想使用API 22,请按照下面方式加入依赖:
```gradle
dependencies {
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3-support22'
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.4-support22'
// 如果你的工程是Java工程,使用此依赖
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support22'
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support22'
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support22'
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support22'
// 如果你的工程是Kotlin工程,使用此依赖
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support22'
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support22'
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support22'
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support22'
compile 'com.android.support:appcompat-v7:22+'
}
Expand All @@ -131,15 +131,15 @@ dependencies {
若只需支持API23,请按照下面方式加入依赖:
```gradle
dependencies {
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3-support23'
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.4-support23'
// 如果你的工程是Java工程,使用此依赖
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support23'
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support23'
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support23'
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support23'
// 如果你的工程是Kotlin工程,使用此依赖
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support23'
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support23'
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support23'
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support23'
compile 'com.android.support:appcompat-v7:23+'
}
Expand Down
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,15 +95,15 @@ Edit and add dependencies in your app module:

```gradle
dependencies {
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3'
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.4'
// Use this in your Java project
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3'
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3'
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4'
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4'
// Use this in your Kotlin project
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3'
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3'
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4'
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4'
compile 'com.android.support:appcompat-v7:23.2.0+'
}
Expand All @@ -112,15 +112,15 @@ dependencies {
Specially, Debug Bottle not only support API 23+, but also 22. To support API 22, please add dependencies like this:
```gradle
dependencies {
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3-support22'
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.4-support22'
// Use this in your Java project
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support22'
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support22'
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support22'
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support22'
// Use this in your Kotlin project
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support22'
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support22'
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support22'
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support22'
compile 'com.android.support:appcompat-v7:22+'
}
Expand All @@ -129,15 +129,15 @@ dependencies {
To support API 23, add dependencies like this:
```gradle
dependencies {
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3-support23'
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.4-support23'
// Use this in your Java project
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support23'
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support23'
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support23'
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support23'
// Use this in your Kotlin project
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support23'
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support23'
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support23'
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support23'
compile 'com.android.support:appcompat-v7:23+'
}
Expand Down

0 comments on commit dbf4e3d

Please sign in to comment.