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.
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:
compileSdkVersion is set to 'android-L'minSdkVersion is set to 'L'targetSdkVersion is set to 'L'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