From d5ed4b9668be3279d09adcda7e4b007cdc91e7b0 Mon Sep 17 00:00:00 2001 From: Morgan McMillian Date: Sun, 6 May 2018 06:42:47 -0700 Subject: [PATCH] Remove BB10 since it's not supported and clarify details around setup and build issue #54 --- README.md | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 49e93f4..c41d7a5 100644 --- a/README.md +++ b/README.md @@ -33,12 +33,12 @@ npm install -g ionic cordova ## Platform build dependencies #### Android +* Install Java Development Kit +* https://java.com * Install either Android Studio or the command line tools * https://developer.android.com/studio/index.html#downloads - -#### BlackBerry 10 -* Install the either the Native SDK or the WebWorks SDK -* http://developer.blackberry.com/develop/platform_choice/bb10.html +* Install Gradle (needed if you only installed the command line tools) +* https://gradle.org/ #### Windows * Install VisualStudio @@ -54,6 +54,12 @@ npm install ``` +Install at least one target platform +```bash +ionic cordova platform add android +``` + + ## Build and run #### Browser @@ -63,7 +69,7 @@ ionic serve --lab #### Android ```bash -ionic cordova platform add android # if not yet added +ionic cordova platform add android ionic cordova build android ionic cordova run android ```