-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
25 lines (25 loc) · 1.05 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
25
<?xml version='1.0' encoding='utf-8'?>
<plugin id="com.azentio.playintegritytoken"
version="0.0.1"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>PlayIntegrityToken</name>
<engines>
<engine name="cordova" version=">=3.0.0"/>
</engines>
<js-module name="PlayIntegrityToken" src="www/PlayIntegrityToken.js">
<clobbers target="cordova.plugins.PlayIntegrityToken" />
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="PlayIntegrityToken">
<param name="android-package" value="com.azentio.playintegritytoken.PlayIntegrityToken" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml">
</config-file>
<source-file src="src/android/PlayIntegrityToken.java" target-dir="src/com/azentio/playintegritytoken/PlayIntegrityToken" />
<framework src="com.google.android.play:integrity:1.0.1" />
<framework src="com.google.android.gms:play-services-tasks:18.0.2" />
</platform>
</plugin>