diff --git a/docs/html/preview/setup-sdk.jd b/docs/html/preview/setup-sdk.jd index 78003f546baea..4b0c3739cae35 100644 --- a/docs/html/preview/setup-sdk.jd +++ b/docs/html/preview/setup-sdk.jd @@ -111,15 +111,31 @@ image to your device.

Create a Project

-
    -
  1. Create a new Android project with the following properties: - -
  2. -
  3. Choose the theme Theme.Material - +

    Android Studio makes it easy to create a project for the L Developer Preview. Follow +the steps described in Creating a +Project. In the Form Factors screen:

    -
+ + +

On the development environment, open the build.gradle file for your module +and make sure that:

+ + + +

To use the material theme, open the values/styles.xml in your project and make +sure that you theme extends the material theme:

+ +
+<resources>
+    <style name="AppTheme" parent="android:Theme.Material">
+        <!-- Customize your theme here -->
+    </style>
+</resources>
+
\ No newline at end of file