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.
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.
-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"
}
}