-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
26 lines (20 loc) · 1.1 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
<?xml version="1.0" encoding="UTF-8" ?>
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="com.kublikon.cordova.plugins.cordovapluginfiretv" version="0.0.1">
<name>CordovaPluginFireTV</name>
<description>Compatibility plugin for Fire TV / Firestick</description>
<author email="[email protected]" href="http://hughisaacs2.acrylicstyle.com">Jakub Szerszen</author>
<license>MIT</license>
<keywords>cordova, cordova-android, amazon store, firestick, fire tv, ecosystem:cordova</keywords>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<platform name="android">
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application/activity/intent-filter">
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER" />
</config-file>
</platform>
</plugin>