-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
52 lines (40 loc) · 2.31 KB
/
Copy pathplugin.xml
File metadata and controls
52 lines (40 loc) · 2.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="UTF-8"?>
<plugin
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.anyks.playgames"
version="1.0.1">
<name>Android Play Games Services</name>
<author>Aleksandr Sadikov</author>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<platform name="android">
<js-module src="www/playgames.js" name="PlayGamesPlugin">
<clobbers target="playgames" />
</js-module>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="PlayGamesPlugin">
<param name="android-package" value="com.anyks.playgames.PlayGamesPlugin"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.INTERNET" />
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<meta-data android:name="com.google.android.gms.games.APP_ID" android:value="@string/app_id" />
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
</config-file>
<source-file src="libs/android-support-v4.jar" target-dir="libs" />
<source-file src="libs/google-play-services.jar" target-dir="libs" />
<source-file src="libs/google-play-services.jar.properties" target-dir="libs" />
<source-file src="src/android/com/anyks/playgames/PlayGamesPlugin.java" target-dir="src/com/anyks/playgames" />
<source-file src="src/android/com/anyks/playgames/playgamesutils/PlayGamesHelper.java" target-dir="src/com/anyks/playgames/playgamesutils" />
<source-file src="src/android/com/anyks/playgames/playgamesutils/PlayGamesServices.java" target-dir="src/com/anyks/playgames/playgamesutils" />
<source-file src="res/values/gamehelper_strings.xml" target-dir="res/values" />
<source-file src="res/values/ids.xml" target-dir="res/values" />
<source-file src="res/values/version.xml" target-dir="res/values" />
</platform>
</plugin>