-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
40 lines (34 loc) · 1.39 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?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="Cordova-Plugin-RTAC"
version="0.1.0-dev">
<name>RTAC</name>
<description>A cordova plugin for utilities for RTAC for android platform.</description>
<repo>https://github.com/Tushar-Kanvinde/Cordova-Plugin-RTAC.git</repo>
<license>Apache 2.0</license>
<keywords>Cordova, RTAC Utilities</keywords>
<author>Tushar Kanvinde</author>
<!-- cordova -->
<engines>
<engine name="cordova" version=">=11.0.0" />
</engines>
<js-module src="www/RTAC.js" name="RTAC">
<clobbers target="RTAC" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="RTAC">
<param name="android-package" value="in.rtac.RTACOTPL.RTACOTPL"/>
</feature>
<feature name="otpl">
<param name="android-package" value="in.rtac.otpl.otpl"/>
</feature>
</config-file>
<framework src="androidx.appcompat:appcompat:1.6.1" />
<source-file src="src/android/RTAC.java" target-dir="src/in/rtac/RTAC" />
<source-file src="src/android/otpl.java" target-dir="src/in/rtac/otpl" />
<source-file src="libs/classes-2.1.13.jar" target-dir="libs"/>
</platform>
</plugin>