|
@@ -179,14 +179,14 @@ To deploy the app to an iPhone, start by plugging your iOS device into your comp
|
179
|
179
|
npm install -g ios-deploy ios-sim
|
180
|
180
|
ionic build ios
|
181
|
181
|
cd platforms/ios/
|
182
|
|
-open ionic-auth.xcodeproj
|
|
182
|
+open ionic-beer.xcodeproj
|
183
|
183
|
```
|
184
|
184
|
|
185
|
185
|
Select your phone as the target in Xcode and click the play button to run your app.
|
186
|
186
|
|
187
|
187
|
### Android
|
188
|
188
|
|
189
|
|
-To deploy to the Android emulator, add support for it to the ionic-auth project using the `ionic` command.
|
|
189
|
+To deploy to the Android emulator, add support for it to the ionic-beer project using the `ionic` command.
|
190
|
190
|
|
191
|
191
|
```
|
192
|
192
|
ionic platform add android
|
|
@@ -201,7 +201,7 @@ Error: No emulator images (avds) found.
|
201
|
201
|
HINT: For a faster emulator, use an Intel System Image and install the HAXM device driver
|
202
|
202
|
```
|
203
|
203
|
|
204
|
|
-I ran the first suggestion and downloaded my desired system image. Then I ran the second command and created an AVD with the following settings:
|
|
204
|
+Run the first suggestion and download your desired system image. Then run the second command and created an AVD with the following settings:
|
205
|
205
|
|
206
|
206
|
```
|
207
|
207
|
AVD Name: TestPhone
|
|
@@ -211,4 +211,4 @@ CPU/ABI: Google APIs Intel Axom (x86_64)
|
211
|
211
|
Skin: Skin with dynamic hardware controls
|
212
|
212
|
```
|
213
|
213
|
|
214
|
|
-After performing these steps, I was able to run `ionic emulate android` and see my app running in the AVD.
|
|
214
|
+After performing these steps, you should be able to run `ionic emulate android` and see your app running in the AVD.
|