forked from leecrossley/cordova-plugin-game-center
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
24 lines (24 loc) · 1.13 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="uk.co.ilee.gamecenter" version="0.3.1">
<name>Game Center</name>
<author>Lee Crossley (http://ilee.co.uk/)</author>
<description>Cordova Game Center Plugin to utilise the iOS Game Center in your app. There is currently support for authentication, submitting a score to a leaderboard and displaying a native leaderboard.</description>
<keywords>cordova, game, game center, gamecenter, leaderboard, player</keywords>
<license>MIT</license>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<js-module src="www/gamecenter.js" name="GameCenter">
<clobbers target="gamecenter" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="GameCenter">
<param name="ios-package" value="GameCenter" />
</feature>
</config-file>
<header-file src="src/ios/GameCenter.h" />
<source-file src="src/ios/GameCenter.m" />
<framework src="GameKit.framework" />
</platform>
</plugin>