Remove BB10 since it's not supported and clarify details around

setup and build issue #54
This commit is contained in:
Morgan McMillian 2018-05-06 06:42:47 -07:00
parent 53ffd17808
commit d5ed4b9668

View file

@ -33,12 +33,12 @@ npm install -g ionic cordova
## Platform build dependencies ## Platform build dependencies
#### Android #### Android
* Install Java Development Kit
* https://java.com
* Install either Android Studio or the command line tools * Install either Android Studio or the command line tools
* https://developer.android.com/studio/index.html#downloads * https://developer.android.com/studio/index.html#downloads
* Install Gradle (needed if you only installed the command line tools)
#### BlackBerry 10 * https://gradle.org/
* Install the either the Native SDK or the WebWorks SDK
* http://developer.blackberry.com/develop/platform_choice/bb10.html
#### Windows #### Windows
* Install VisualStudio * Install VisualStudio
@ -54,6 +54,12 @@ npm install
``` ```
Install at least one target platform
```bash
ionic cordova platform add android
```
## Build and run ## Build and run
#### Browser #### Browser
@ -63,7 +69,7 @@ ionic serve --lab
#### Android #### Android
```bash ```bash
ionic cordova platform add android # if not yet added ionic cordova platform add android
ionic cordova build android ionic cordova build android
ionic cordova run android ionic cordova run android
``` ```