diff --git a/docs/html/tools/help/project-mgmt.jd b/docs/html/tools/help/project-mgmt.jd
new file mode 100644
index 0000000000000..693f0de1dc9de
--- /dev/null
+++ b/docs/html/tools/help/project-mgmt.jd
@@ -0,0 +1,174 @@
+page.title=Project Structure Management
+parent.title=Tools
+parent.link=index.html
+page.tags="android studio,project structure,target sdk,minimum sdk"
+@jd:body
+
+
+
+
+ You can use the Android Studio File > Project Structure dialog box to
+ change configuration settings for your Android Studio project. This dialog
+ box is useful if you need to change some of the settings you chose when you
+ created the project.
+
+
+
+ The Project Structure dialog box contains the following sections:
+
+
+
+ -
+ SDK Location: Sets the location of the JDK, Android SDK,
+ and Android NDK that the project uses.
+
+
+ -
+ Project: Sets version information for Gradle and for
+ the Android plugin
+ for Gradle.
+
+
+ -
+ Developer Services: Contains settings for Android Studio
+ add-in components from Google or third parties.
+
+
+ -
+ Modules: Used to set or change various module-specific
+ build settings, including the target and minimum SDK, the app signature,
+ and library dependencies. Most importantly, this is where you change
+ the settings for your project's app module.
+
+
+
+
+ The following two sections provide information on the Developer Services and Modules
+ sections.
+
+
+
+ Developer Services
+
+
+
+ The Developer Services section of the Project Structure
+ dialog box contains configuration pages
+ for several services that you can be use with your app. This section
+ contains the following pages:
+
+
+
+ -
+ AdMob: Allows you to turn on Google's AdMob
+ component, which helps you understand your users and show them tailored
+ advertisements.
+
+
+ -
+ Analytics: Allows you to turn on Google
+ Analytics, which helps you measure user interactions with your app
+ across various devices and environments.
+
+
+ -
+ Authentication: Allows users to use Google Sign-In to sign in to your app with their Google
+ accounts.
+
+
+ -
+ Cloud: Allows you to turn on Firebase cloud-based
+ services for your app.
+
+
+ -
+ Notifications: Allows you to use Google Cloud Messaging to communicate between your app
+ and your server.
+
+
+
+
+ Turning on any of these services may cause Android Studio to add necessary
+ dependencies and permissions to your app. Each configuration page lists these
+ and other actions that Android Studio takes if you enable the associated service.
+
+
+
+ Modules
+
+
+
+ The Modules settings section lets you change configuration
+ options for each of your project's modules. This section contains one page
+ for each module in your app. In many cases, the project has just a single
+ module, named app. However, if your project targets multiple form
+ factors, it might have several modules. For example, if your project contains
+ both a tablet app and a wearable app, it might have two modules, named
+ mobile and wear. For more information about project
+ modules, see Android Application
+ Modules.
+
+
+
+ Each module's settings page is divided into the following panes:
+
+
+
+ -
+ Properties: Specifies the versions of the SDK and build
+ tools to use to compile the module.
+
+
+ -
+ Signing: Specifies the certificate to use to
+ sign your
+ APK.
+
+
+ -
+ Flavors: Lets you create multiple build flavors, where
+ each flavor specifies a set of configuration settings, such as the
+ module's minimum and target SDK version, and the
+ version code and
+ version name. For example, you might define one flavor that has a
+ minimum SDK of 15 and a target SDK of 21, and another flavor that has a
+ minimum SDK of 19 and a target SDK of 23.
+
+
+ -
+ Build Types: Lets you create and modify build
+ configurations, as described in Configuring Gradle
+ Builds. By default, every module has debug and
+ release build types, but you can define more as needed.
+
+
+ -
+ Dependencies: Lists the library, file, and module
+ dependencies for this module. You can add, modify, and delete dependencies
+ from this pane. For more information about module dependencies, see
+ Declare
+ dependencies in Configuring Gradle
+ Builds.
+
+
diff --git a/docs/html/tools/tools_toc.cs b/docs/html/tools/tools_toc.cs
index 12aecd98f5172..f7431525f4fa5 100644
--- a/docs/html/tools/tools_toc.cs
+++ b/docs/html/tools/tools_toc.cs
@@ -184,6 +184,7 @@ class="en">Tools Help
logcat
mksdcard
ProGuard
+ Project Structure Management
SDK Manager
Systrace
Theme Editor