diff --git a/README-JP.md b/README-JP.md index b921d60..0bfd28a 100644 --- a/README-JP.md +++ b/README-JP.md @@ -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+' @@ -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+' } @@ -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+' } diff --git a/README-ZH.md b/README-ZH.md index b9d2eb8..eaf9a36 100644 --- a/README-ZH.md +++ b/README-ZH.md @@ -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+' @@ -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+' } @@ -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+' } diff --git a/README.md b/README.md index a69999d..b237285 100644 --- a/README.md +++ b/README.md @@ -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+' } @@ -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+' } @@ -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+' }