-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin.xml
More file actions
17 lines (17 loc) · 759 Bytes
/
plugin.xml
File metadata and controls
17 lines (17 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-bluetooth-peripheral-usage-description" version="1.0.1">
<name>Bluetooth Peripheral Usage Description</name>
<description>Set Bluetooth Peripheral Usage Description on iOS</description>
<author>Rand Dusing</author>
<keywords>bluetooth,background,peripheral</keywords>
<license>MIT</license>
<preference name="TEXT" />
<platform name="ios">
<config-file target="*-Info.plist" parent="NSBluetoothPeripheralUsageDescription">
<string>$TEXT</string>
</config-file>
<config-file target="*-Info.plist" parent="NSBluetoothAlwaysUsageDescription">
<string>$TEXT</string>
</config-file>
</platform>
</plugin>