Skip to content

Commit c9af7fb

Browse files
committed
Fix/improve building doc.
1 parent 5e1ec89 commit c9af7fb

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

doc/BUILDING.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This is a Gradle-based project that works best with [Android Studio].
2626
> __NOTE II__: Building the project as-is requires the Android Wear SDK, which
2727
you can download from http://developer.android.com/wear/. If you NOT wish to
2828
build with Android Wear support, further details can be found in the
29-
[Building without Android Wear] section in this document.
29+
[Building without Android Wear] section in this document.
3030
<hr>
3131

3232
## Build the app
@@ -58,7 +58,7 @@ This is a Gradle-based project that works best with [Android Studio].
5858

5959
4. Create a file in your working directory called local.properties,
6060
containing the path to your Android SDK. Use local.properties.example as a
61-
model. _(On Windows, use a double-backslash ("\\") as a path separator.)_
61+
model. _(On Windows, use a double-backslash (`\\`) as a path separator!)_
6262

6363
5. Import the project in Android Studio:
6464

@@ -76,25 +76,25 @@ This is a Gradle-based project that works best with [Android Studio].
7676
details. If you wish to build with Android Wear support, please refer to the
7777
[Packaging Wearable Apps] guide for further details.
7878

79-
7.A Choose Build > Make Project in Android Studio or run the following
80-
command in the project root directory:
79+
7. Choose Build > Make Project in Android Studio or run the following
80+
command in the project root directory:
8181
```sh
8282
./gradlew clean assembleDebug
83-
```
84-
8. To install on your test device:
83+
```
8584

85+
8. To install on your test device:
8686
```sh
8787
./gradlew installDebug
88-
```
88+
```
8989

9090
## Building without Android Wear
9191

9292
If you do NOT wish to build the Android Wear component, you need to make the two
9393
changes below.
94-
1. Open android/build.gradle and remove (or comment out) the following line:
95-
```
96-
wearApp project(":Wearable")
97-
```
94+
1. Open android/build.gradle and remove (or comment out) the following line:
95+
```
96+
wearApp project(":Wearable")
97+
```
9898
2. Open settings.gradle and remove `':Wearable'`, leaving only `':android'`.
9999

100100
# Server-side setup

0 commit comments

Comments
 (0)