Coder Social home page Coder Social logo

kidgodzilla / cordova-plugin-app-icon-changer Goto Github PK

View Code? Open in Web Editor NEW

This project forked from omar-bassyouni/cordova-plugin-app-icon-changer

0.0 2.0 0.0 5.09 MB

Change the homescreen icon of your Cordova iOS app at runtime!

License: MIT License

Objective-C 83.22% JavaScript 16.78%

cordova-plugin-app-icon-changer's Introduction

Cordova App Icon Changer

NPM version Downloads Twitter Follow

Installation

$ cordova plugin add cordova-plugin-app-icon-changer

API

Make sure to wait for deviceready before using any of these functions.

isSupported

Only iOS 10.3 and up support this feature, so you may want to check beforehand:

cordova.plugins.EmesaAppIconcChanger.isSupported(
  function(supported) {
    console.log("Supported? " + supported);
  }
);

changeIcon

To be able to switch to a different icon add it to your Xcode project as explained below and pass iconName to changeIcon.

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.

cordova.plugins.EmesaAppIconcChanger.changeIcon(
    {
      iconName: "icon-phonegap",
      suppressUserNotification: true
    },
    function() { console.log("OK")},
    function(err) { console.log(err) }
);

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.

Drag the relevant icons to the Resources folder so it looks like this:

The plist file can be edited in Xcode, or with your favorite text editor. If you use the latter you can copy-paste a snippet like the one below:

<plist>
<dict>

  <!-- Add or merge this bit -->
  <key>CFBundleIcons</key>
  <dict>
    <key>CFBundleAlternateIcons</key>
    <dict>
      <!-- The name you use in code -->
      <key>icon-phonegap</key>
      <dict>
        <key>UIPrerenderedIcon</key>
        <true/>
        <key>CFBundleIconFiles</key>
        <array>
          <!-- The actual filenames. Don't list the @2x/@3x files here, and you can use just the biggest one if you like -->
          <string>icon-phonegap-60</string>
        </array>
      </dict>
    </dict>
  </dict>

</dict>
</plist>

Need iPad support as well? Just duplicate that plist config and change <key>CFBundleIcons</key> to <key>CFBundleIcons~ipad</key>.

cordova-plugin-app-icon-changer's People

Contributors

omar-bassyouni avatar eddyverbruggen avatar kidgodzilla avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.