1.2.2-6 • Published 2 years ago

@wisdomgarden/capacitor-exit-app-ios v1.2.2-6

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

capacitor-exit-app-ios

Capacitor plugin to force quit app on Ios

Notice

This plugin may not be allowed upon apple review.

Method

methodinfoplatform
killApp()force quit app every where call itios

Usage

import {Plugins} from '@capacitor/core';
const { ExitAppIosPlugin } = Plugins;

//
//
    if (this.platform.is('android')) {
      navigator['app'].exitApp();
    } else {
      ExitAppIosPlugin.killApp().then();
    }
//
//

iOS setup

  • sudo gem install cocoapods (once a time)
  • ionic start my-cap-app --capacitor
  • cd my-cap-app
  • mkdir www && touch www/index.html
  • npx cap add ios
  • npm i capacitor-exit-app-ios
  • npx cap sync ios (always do sync after a plugin install)
  • npx cap open ios
  • sign your app at xcode (general tab)

Github

https://github.com/tienmanh94hbk/capacitor-exit-app-ios

Cheers 🍻

Follow me @Facebook

License

MIT