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

Short name #125

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,24 @@ Check out [cordova-splash](https://github.com/AlexDisler/cordova-splash)
- [ionic-zoom-view](https://github.com/AlexDisler/ionic-zoom-view) - an easy way to add a zoom view to images using an ionic modal
- [ng-persist](https://github.com/AlexDisler/ng-persist) - store data on mobile devices (using cordova) that persists even if the user reinstalls the app

### Short Name
- Observed that cordova-icon did not use the new icon on iOS platform when short name option is added to config.xml.

i.e.
```bash
<widget ...>
<name short="HiCdv">HelloCordova</name>
</widget>
```
Will result in default cordova icon.
- The fix: Do this:
```bash
<widget ...>
<name>HelloCordova</name>
<name short="HiCdv"/>
</widget>
```

### License

MIT