Skip to content

Commit dbf4e3d

Browse files
author
yuriel
committed
updated readme
1 parent 37bede3 commit dbf4e3d

File tree

3 files changed

+45
-45
lines changed

3 files changed

+45
-45
lines changed

README-JP.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -92,15 +92,15 @@ allprojects {
9292

9393
```gradle
9494
dependencies {
95-
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3'
95+
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.4'
9696
9797
// Javaの場合はこうして構築します
98-
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3'
99-
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3'
98+
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4'
99+
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4'
100100
101101
// Kotlinの場合はこうして構築します
102-
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3'
103-
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3'
102+
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4'
103+
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4'
104104
105105
compile 'com.android.support:appcompat-v7:23.2.0+'
106106
compile 'com.android.support:support-v4:23.2.0+'
@@ -110,15 +110,15 @@ dependencies {
110110
Specially, Debug Bottle not only support API 23+, but also 22. To support API 22, please add dependencies like this:
111111
```gradle
112112
dependencies {
113-
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3-support22'
113+
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.4-support22'
114114
115115
// Javaの場合はこうして構築します
116-
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support22'
117-
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support22'
116+
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support22'
117+
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support22'
118118
119119
// Kotlinの場合はこうして構築します
120-
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support22'
121-
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support22'
120+
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support22'
121+
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support22'
122122
123123
compile 'com.android.support:appcompat-v7:22+'
124124
}
@@ -127,15 +127,15 @@ dependencies {
127127
To support API 23, add dependencies like this:
128128
```gradle
129129
dependencies {
130-
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3-support23'
130+
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.4-support23'
131131
132132
// Javaの場合はこうして構築します
133-
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support23'
134-
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support23'
133+
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support23'
134+
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support23'
135135
136136
// Kotlinの場合はこうして構築します
137-
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support23'
138-
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support23'
137+
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support23'
138+
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support23'
139139
140140
compile 'com.android.support:appcompat-v7:23+'
141141
}

README-ZH.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -96,15 +96,15 @@ allprojects {
9696
然后在主模块中(Application类所在模块)加入依赖:
9797
```gradle
9898
dependencies {
99-
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3'
99+
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.4'
100100
101101
// 如果你的工程是Java工程,使用此依赖
102-
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3'
103-
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3'
102+
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4'
103+
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4'
104104
105105
// 如果你的工程是Kotlin工程,使用此依赖
106-
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3'
107-
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3'
106+
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4'
107+
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4'
108108
109109
compile 'com.android.support:appcompat-v7:23.2.0+'
110110
compile 'com.android.support:support-v4:23.2.0+'
@@ -114,15 +114,15 @@ dependencies {
114114
Debug Bottle不仅支持API 23+,还可以支持API 22. 若想使用API 22,请按照下面方式加入依赖:
115115
```gradle
116116
dependencies {
117-
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3-support22'
117+
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.4-support22'
118118
119119
// 如果你的工程是Java工程,使用此依赖
120-
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support22'
121-
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support22'
120+
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support22'
121+
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support22'
122122
123123
// 如果你的工程是Kotlin工程,使用此依赖
124-
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support22'
125-
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support22'
124+
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support22'
125+
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support22'
126126
127127
compile 'com.android.support:appcompat-v7:22+'
128128
}
@@ -131,15 +131,15 @@ dependencies {
131131
若只需支持API23,请按照下面方式加入依赖:
132132
```gradle
133133
dependencies {
134-
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3-support23'
134+
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.4-support23'
135135
136136
// 如果你的工程是Java工程,使用此依赖
137-
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support23'
138-
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support23'
137+
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support23'
138+
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support23'
139139
140140
// 如果你的工程是Kotlin工程,使用此依赖
141-
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support23'
142-
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support23'
141+
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support23'
142+
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support23'
143143
144144
compile 'com.android.support:appcompat-v7:23+'
145145
}

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -95,15 +95,15 @@ Edit and add dependencies in your app module:
9595

9696
```gradle
9797
dependencies {
98-
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3'
98+
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.4'
9999
100100
// Use this in your Java project
101-
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3'
102-
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3'
101+
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4'
102+
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4'
103103
104104
// Use this in your Kotlin project
105-
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3'
106-
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3'
105+
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4'
106+
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4'
107107
108108
compile 'com.android.support:appcompat-v7:23.2.0+'
109109
}
@@ -112,15 +112,15 @@ dependencies {
112112
Specially, Debug Bottle not only support API 23+, but also 22. To support API 22, please add dependencies like this:
113113
```gradle
114114
dependencies {
115-
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3-support22'
115+
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.4-support22'
116116
117117
// Use this in your Java project
118-
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support22'
119-
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support22'
118+
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support22'
119+
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support22'
120120
121121
// Use this in your Kotlin project
122-
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support22'
123-
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support22'
122+
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support22'
123+
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support22'
124124
125125
compile 'com.android.support:appcompat-v7:22+'
126126
}
@@ -129,15 +129,15 @@ dependencies {
129129
To support API 23, add dependencies like this:
130130
```gradle
131131
dependencies {
132-
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3-support23'
132+
debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.4-support23'
133133
134134
// Use this in your Java project
135-
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support23'
136-
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support23'
135+
releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support23'
136+
testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support23'
137137
138138
// Use this in your Kotlin project
139-
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support23'
140-
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support23'
139+
releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support23'
140+
testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support23'
141141
142142
compile 'com.android.support:appcompat-v7:23+'
143143
}

0 commit comments

Comments
 (0)