-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplugin.xml
39 lines (35 loc) · 2.02 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
<?xml version="1.0" encoding="UTF-8" ?>
<plugin id="lycwed-cordova-plugin-android-tv" version="1.0.5"
xmlns="http://cordova.apache.org/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>lycwed-cordova-plugin-android-tv</name>
<description>Cordova plugin to manage app for Android TV.</description>
<license>MIT</license>
<keywords>ecosystem:cordova, cordova-android, cordova, ionic, android, android-tv</keywords>
<engines>
<engine name="cordova" version=">=8.0.0"/>
</engines>
<platform name="android">
<config-file parent="/manifest" target="app/src/main/AndroidManifest.xml"
xmlns:android="http://schemas.android.com/apk/res/android">
<uses-feature android:name="android.software.leanback" android:required="false" />
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
<uses-feature android:name="android.hardware.faketouch" android:required="false"/>
<uses-feature android:name="android.hardware.telephony" android:required="false"/>
<uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-feature android:name="android.hardware.nfc" android:required="false"/>
<uses-feature android:name="android.hardware.location.gps" android:required="false"/>
<uses-feature android:name="android.hardware.microphone" android:required="false"/>
<uses-feature android:name="android.hardware.sensor" android:required="false"/>
</config-file>
<config-file parent="/manifest/application" target="app/src/main/AndroidManifest.xml"
xmlns:android="http://schemas.android.com/apk/res/android">
<activity android:label="@string/app_name" android:configChanges="keyboard|keyboardHidden|navigation" android:name="TvActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
</intent-filter>
</activity>
</config-file>
</platform>
</plugin>