cordova-plugin-apple-game-center
v1.1.1
Published
Cordova plugin to work with Apple Game Center
Downloads
5
Maintainers
Readme
Apple Game Center for Ionic and Cordova apps.
You can login and hame achievements.
Table of Contents
State of Development
- [x]
- [x]
- [ ]
- [ ]
- [ ]
- [ ]
- [ ]
Install
npm i cordova-plugin-apple-game-center --save
Usage
This library is Promise style, you can use .then or await to fetch results
Sign In
import * as GameCenter from 'cordova-plugin-apple-game-center';
await GameCenter.login();
Achievements
Unlock achievement
await GameCenter.unlockAchievement({ id: 'your-id' });
Show achievements
This method is show native Google Games UI
await GameCenter.showAchievements();