From 9a974352aab50d810a03e72ac8f2799fe77a446d Mon Sep 17 00:00:00 2001
From: Eric Schmidt
Date: Mon, 8 Feb 2016 13:11:05 -0800
Subject: [PATCH] docs: Fixed extra slash in pathname
Bug: 25103994
Change-Id: I89aaf3d7d63de989b8adbcf0306f5dc5f415e98d
---
docs/html/tools/projects/index.jd | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/docs/html/tools/projects/index.jd b/docs/html/tools/projects/index.jd
index 6672bb1827508..344e844f10074 100644
--- a/docs/html/tools/projects/index.jd
+++ b/docs/html/tools/projects/index.jd
@@ -176,8 +176,9 @@ project and override similar module file settings.
src/
Contains your stub Activity file, which is stored at
- src/main/java//ActivityName>.java. All other source
- code files (such as .java or .aidl files) go here as well.
+ src/main/java/<namespace.appname>/<ActivityName>.java. All
+ other source code files (such as .java or .aidl files) go here as
+ well.
androidTest/
@@ -185,7 +186,7 @@ project and override similar module file settings.
- Contains the instrumentation tests. For more information, see the
Android Test documentation.
- main/java/com.>project<.>app<
+ main/java/com.<project>.<app>
- Contains Java code source for the app activities.