Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eddyverbruggen/nativescript-app-icon-changer
Change the homescreen icon of your NativeScript iOS app at runtime!
https://github.com/eddyverbruggen/nativescript-app-icon-changer
icon ios nativescript nativescript-plugin
Last synced: about 2 months ago
JSON representation
Change the homescreen icon of your NativeScript iOS app at runtime!
- Host: GitHub
- URL: https://github.com/eddyverbruggen/nativescript-app-icon-changer
- Owner: EddyVerbruggen
- License: mit
- Created: 2017-05-29T12:54:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-28T10:41:44.000Z (over 7 years ago)
- Last Synced: 2024-10-16T05:32:43.300Z (3 months ago)
- Topics: icon, ios, nativescript, nativescript-plugin
- Language: TypeScript
- Homepage:
- Size: 14.7 MB
- Stars: 16
- Watchers: 4
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NativeScript App Icon Changer
[![Build Status][build-status]][build-url]
[![NPM version][npm-image]][npm-url]
[![Downloads][downloads-image]][npm-url]
[![Twitter Follow][twitter-image]][twitter-url][build-status]:https://travis-ci.org/EddyVerbruggen/nativescript-app-icon-changer.svg?branch=master
[build-url]:https://travis-ci.org/EddyVerbruggen/nativescript-app-icon-changer
[npm-image]:http://img.shields.io/npm/v/nativescript-app-icon-changer.svg
[npm-url]:https://npmjs.org/package/nativescript-app-icon-changer
[downloads-image]:http://img.shields.io/npm/dm/nativescript-app-icon-changer.svg
[twitter-image]:https://img.shields.io/twitter/follow/eddyverbruggen.svg?style=social&label=Follow%20me
[twitter-url]:https://twitter.com/eddyverbruggen> That's [the demo app](https://github.com/EddyVerbruggen/nativescript-app-icon-changer/tree/master/demo) in action, switching app icons like a boss!
## Installation
```bash
tns plugin add nativescript-app-icon-changer
```## API
### requiring / importing the plugin
All examples below assume you're using TypeScript, but here's how to require the plugin with regular JS as well:#### JavaScript
```js
var AppIconChangerPlugin = require("nativescript-app-icon-changer");
var appIconChanger = new AppIconChangerPlugin.AppIconChanger();
```#### TypeScript
```typescript
import { AppIconChanger } from "nativescript-app-icon-changer";export class MyClass {
private appIconChanger: AppIconChanger;
constructor() {
this.appIconChanger = new AppIconChanger();
}
}
```### `isSupported`
Only iOS 10.3 and up support this feature, so you may want to check beforehand:```typescript
this.appIconChanger.isSupported().then(
supported => console.log(`Supported: ${supported}`));
```### `changeIcon`
To be able to switch to a different icon add it to `App_Resources/iOS` and `App_Resources/iOS/Info.plist` as explained below and pass `iconName` to `changeIcon`.To reset to the default icon, use `iconName: null`.
Note 1: iOS will notify the user the icon changed, but this plugin allows you to suppress that message (it's the default even). It's probably not what Apple would like you to do, but no apps have been disapproved with suppression enabled.
Note 2: Changing the app icon is only allowed when the app is in the foreground, so forget about that weather app which silently updates its app icon.
```typescript
this.appIconChanger.changeIcon({
iconName: "icon-blue", // or null to reset to the default
suppressUserNotification: true
});
```### `currentAlternateIcon`
Want to know whether or not the app currently has an alternate icon configured? And if so, what its name is? Then use this:```typescript
// synchronous
const currentAppIconName: string = this.appIconChanger.currentAlternateIcon();
```## Preparing your app for icon switching
Apple doesn't allow switching to arbitrary icons, so they must be bundled with your app before releasing the app to the store.Add the icons you'd like your users to be able to switch to for all relevant resolutions as usual.
> Note that you DON'T NEED to provide all those resolutions; you could get away with adding just the largest resolution and refer to it in the plist file. iOS will scale it down to other resolutions for you.
Then reference those icons in `App_Resources/iOS/Info.plist` as well:
```xml
CFBundleIcons
CFBundleAlternateIcons
icon-blue
UIPrerenderedIcon
CFBundleIconFiles
icon-blue-57
icon-blue-60
icon-blue-72
icon-blue-76
```
> Need iPad support as well? Just duplicate that plist config and change `CFBundleIcons` to `CFBundleIcons~ipad`.
Want to see this configured in an actual project? Look at [the demo app](https://github.com/EddyVerbruggen/nativescript-app-icon-changer/tree/master/demo/app/App_Resources/iOS) to see the gory details.