Skip to content
This repository has been archived by the owner on Jul 8, 2020. It is now read-only.

Commit

Permalink
fixes #336: updates cordova documentation links
Browse files Browse the repository at this point in the history
  • Loading branch information
gruppjo committed Mar 8, 2016
1 parent b2ee310 commit 1549213
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/guides/icons_splash_screens.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Icons and splash screens

> With cordova it's easy to change the default app icons and splash screens. This can be done in the `config.xml` as described [here](http://cordova.apache.org/docs/en/dev/config_ref/images.html) in the cordova documentation. Generator-M-Ionic provides a **res/** folder and a **gulp task** to make the configuration easier.
> With Cordova it's easy to change the default app icons and splash screens. This can be done in the `config.xml` as described [here](http://cordova.apache.org/docs/en/latest/config_ref/images.html) and [here](http://cordova.apache.org/docs/en/latest/cordova-plugin-splashscreen/index.html) in the Cordova documentation. Generator-M-Ionic provides a **res/** folder and a **gulp task** to make the configuration easier.
## The `res/` folder
For your convenience, Generator-M-Ionic provides a `res/` folder to put in the icons and splash screen files.
Expand Down
4 changes: 2 additions & 2 deletions docs/intro/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
If you are experienced this summary might be all you need. Every topic has a more elaborate introduction in other parts of the documentation. Check out the [README.md](../../README.md).

1. Installation
Check the Cordova [Platform Requirements](http://cordova.apache.org/docs/en/dev/guide/platforms/index.html)
Check the Cordova [Platform Requirements](http://cordova.apache.org/docs/en/latest/guide/platforms/index.html)

```sh
# prerequisites
Expand Down Expand Up @@ -67,7 +67,7 @@ Check the Cordova [Platform Requirements](http://cordova.apache.org/docs/en/dev/
# service
# module
```
3. Handle Cordova platforms/plugins
3. Handle Cordova platforms/plugins. Check out the [Cordova CLI Documentation](https://cordova.apache.org/docs/en/latest/cordova-cli/index.html) for more info.

```sh
# platforms, use --save to add to config.xml
Expand Down
4 changes: 2 additions & 2 deletions docs/start/development_intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ If you don't want this task to open your browser, just add the `--no-open` optio
## Using the Cordova CLI
The Cordova CLI gets installed locally with the generation of your app (you don't have to install it yourself!). We use it instead of the Ionic CLI. Find out why in our [why you need it](../intro/why_you_need_it.md#alternatives) of our introduction section. Among many other tasks, the Cordova CLI enables you to **add plugins and platforms** and **run and build** your app on devices or emulators.

For a full list of Cordova CLI commands and their capabilities check out their documentation over at the [Cordova Documentation](https://cordova.apache.org/docs/en/dev/guide/cli/index.html) or the [CLI GitHub page](https://github.com/apache/cordova-cli/).
For a full list of Cordova CLI commands and their capabilities check out their documentation over at the [Cordova Documentation](https://cordova.apache.org/docs/en/latest/cordova-cli/index.html) or the [CLI GitHub page](https://github.com/apache/cordova-cli/).

Here's a brief overview of the most important capabilities:

Expand Down Expand Up @@ -86,7 +86,7 @@ gulp --cordova 'emulate ios'
gulp --cordova 'emulate android'
```

Both commands require your system to be setup correctly for the given platform as described in the Cordova [Platform Guides](https://cordova.apache.org/docs/en/dev/guide/platforms/index.html).
Both commands require your system to be setup correctly for the given platform as described in the Cordova [Platform Guides](http://cordova.apache.org/docs/en/latest/guide/platforms/index.html).

To emulate a specific device and iOS version (iOS version needs to be installed via Xcode) run:
```sh
Expand Down
2 changes: 1 addition & 1 deletion docs/start/installation_prerequisites.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Besides simply installing everything, we recommend having or obtaining a **fair
- bower: `npm install --global bower` - http://bower.io/

## Platform SDKs
In order to run your app on a device, you'll need **Platform SDKs** for the platforms and the versions you are developing for. If you just want to develop in the browser for now, no SDKs are needed. Head over to Cordova Documentation: [Platform Guides](http://cordova.apache.org/docs/en/dev/guide/platforms/index.html) or Cordova CLI: [Requirements](https://github.com/apache/cordova-cli/#requirements) for further instructions.
In order to run your app on a device, you'll need **Platform SDKs** for the platforms and the versions you are developing for. If you just want to develop in the browser for now, no SDKs are needed. Head over to Cordova Documentation: [Platform Guides](http://cordova.apache.org/docs/en/latest/guide/platforms/index.html) or Cordova CLI: [Requirements](https://github.com/apache/cordova-cli/#requirements) for further instructions.
#### Note
You don't have to install the **Cordova CLI**. It's provided with the generator. We're installing the Cordova CLI locally (not globally) so you can use the one your project was built with rather than the one you have installed on your machine.

Expand Down

0 comments on commit 1549213

Please sign in to comment.