From d0dcb69c856d961f8833cb2618f44ec4801cc7f3 Mon Sep 17 00:00:00 2001 From: yuriel Date: Thu, 20 Oct 2016 16:48:07 +0800 Subject: [PATCH] updated readme --- README-JP.md | 30 +++++++++++++++--------------- README-ZH.md | 30 +++++++++++++++--------------- README.md | 30 +++++++++++++++--------------- 3 files changed, 45 insertions(+), 45 deletions(-) diff --git a/README-JP.md b/README-JP.md index 9c8527a..b921d60 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.0EAP-beta' + debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3' // Javaの場合はこうして構築します - releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.0EAP-beta' - testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.0EAP-beta' + releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3' + testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3' // Kotlinの場合はこうして構築します - releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.0EAP-beta' - testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.0EAP-beta' + releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3' + testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3' 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.0EAP-support22-beta' + debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3-support22' // Javaの場合はこうして構築します - releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.0EAP-support22-beta' - testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.0EAP-support22-beta' + releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support22' + testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support22' // Kotlinの場合はこうして構築します - releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.0EAP-support22-beta' - testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.0EAP-support22-beta' + releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support22' + testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-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.0EAP-support23-beta' + debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3-support23' // Javaの場合はこうして構築します - releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.0EAP-support23-beta' - testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.0EAP-support23-beta' + releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support23' + testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support23' // Kotlinの場合はこうして構築します - releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.0EAP-support23-beta' - testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.0EAP-support23-beta' + releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support23' + testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support23' compile 'com.android.support:appcompat-v7:23+' } diff --git a/README-ZH.md b/README-ZH.md index b7586c3..b9d2eb8 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.0EAP-beta' + debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3' // 如果你的工程是Java工程,使用此依赖 - releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.0EAP-beta' - testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.0EAP-beta' + releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3' + testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3' // 如果你的工程是Kotlin工程,使用此依赖 - releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.0EAP-beta' - testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.0EAP-beta' + releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3' + testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3' 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.0EAP-support22-beta' + debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3-support22' // 如果你的工程是Java工程,使用此依赖 - releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.0EAP-support22-beta' - testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.0EAP-support22-beta' + releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support22' + testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support22' // 如果你的工程是Kotlin工程,使用此依赖 - releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.0EAP-support22-beta' - testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.0EAP-support22-beta' + releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support22' + testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-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.0EAP-support23-beta' + debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3-support23' // 如果你的工程是Java工程,使用此依赖 - releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.0EAP-support23-beta' - testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.0EAP-support23-beta' + releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support23' + testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support23' // 如果你的工程是Kotlin工程,使用此依赖 - releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.0EAP-support23-beta' - testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.0EAP-support23-beta' + releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support23' + testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support23' compile 'com.android.support:appcompat-v7:23+' } diff --git a/README.md b/README.md index 55433e0..a69999d 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.0EAP-beta' + debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3' // Use this in your Java project - releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.0EAP-beta' - testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.0EAP-beta' + releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3' + testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3' // Use this in your Kotlin project - releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.0EAP-beta' - testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.0EAP-beta' + releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3' + testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3' 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.0EAP-support22-beta' + debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3-support22' // Use this in your Java project - releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.0EAP-support22-beta' - testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.0EAP-support22-beta' + releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support22' + testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support22' // Use this in your Kotlin project - releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.0EAP-support22-beta' - testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.0EAP-support22-beta' + releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support22' + testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-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.0EAP-support23-beta' + debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.3-support23' // Use this in your Java project - releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.0EAP-support23-beta' - testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.0EAP-support23-beta' + releaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support23' + testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.3-support23' // Use this in your Kotlin project - releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.0EAP-support23-beta' - testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.0EAP-support23-beta' + releaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support23' + testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.3-support23' compile 'com.android.support:appcompat-v7:23+' }