diff --git a/docs/html/tools/data-binding/guide.jd b/docs/html/tools/data-binding/guide.jd index ec16c6b217503..7c4c15a1be435 100644 --- a/docs/html/tools/data-binding/guide.jd +++ b/docs/html/tools/data-binding/guide.jd @@ -141,7 +141,8 @@ page.tags="databinding", "layouts" — it's a support library, so you can use it with all Android platform versions back to Android 2.1 (API level 7+).

-

Android Studio 1.3.0-beta1 or higher is required.

+

To use data binding, Android Plugin for Gradle 1.3.0-beta1 +or higher is required.

Beta release

@@ -156,7 +157,7 @@ versions back to Android 2.1 (API level 7+).

so use it at your own risk. That said, we do want your feedback! Please let us know what is or isn’t working for you using the issue - tracker. + tracker.
  • The Data Binding library beta release is subject to significant changes, @@ -174,7 +175,7 @@ versions back to Android 2.1 (API level 7+).

    Further Android Studio support will come in the future.
  • - By using the Data Binding library beta release, you acknowledge these + By using the Data Binding library beta release, you acknowledge these caveats.
  • @@ -186,16 +187,13 @@ versions back to Android 2.1 (API level 7+).

    To get started with Data Binding, download the library from the Support repository in the Android SDK manager.

    -

    Make sure you are using a compatible version of Android Studio. -The Data Binding plugin for Android Studio requires Android Studio 1.3.0-beta1 -or higher.

    -

    - Build Environment -

    +

    The Data Binding plugin requires Android Plugin for Gradle 1.3.0-beta1 +or higher, so update your build dependencies (in +build.gradle) as needed.

    -

    To get started with Data Binding, download the library from the Support repository in the Android SDK manager.

    - -

    Make sure you are using a compatible version of Android Studio. The Data Binding plugin for Android Studio requires Android 1.3.0-beta1 or higher.

    +

    Also, make sure you are using a compatible version of Android Studio. +Android Studio 1.3 adds the code-completion and layout-preview +support for data binding.

    Setting Up Work Environment: @@ -203,12 +201,12 @@ or higher.

    To set up your application to use data binding, add data binding to the class - path of your build gradle file, right below "android". + path of your build.gradle file, right below "android".

        dependencies {
    -       classpath "com.android.tools.build:gradle:1.2.3"
    +       classpath "com.android.tools.build:gradle:1.3.0-beta1"
            classpath "com.android.databinding:dataBinder:1.0-rc0"
        }
     }