Skip to content

Commit 7aac33d

Browse files
(doc) Add a default comment to the required config.xml attributes so that developers can easily remember what these entries in their config.xml are for
1 parent 5cef017 commit 7aac33d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ pod install
1818
To **distribute** an iOS app with this plugin you must add usage descriptions to your project's `config.xml`.
1919
These strings will be used when asking the user for permission to use the microphone and bluetooth.
2020
```xml
21-
<!-- ios 6-13 (deprecated) -->
2221
<platform name="ios">
23-
<config-file parent="NSBluetoothPeripheralUsageDescription" target="*-Info.plist">
22+
<!-- ios 6-13 (deprecated) -->
23+
<config-file parent="NSBluetoothPeripheralUsageDescription" target="*-Info.plist" comment="cordova-plugin-chromecast">
2424
<string>Bluetooth is required to scan for nearby Chromecast devices with guest mode enabled.</string>
2525
</config-file>
2626
<!-- ios 13+ -->
27-
<config-file parent="NSBluetoothAlwaysUsageDescription" target="*-Info.plist">
27+
<config-file parent="NSBluetoothAlwaysUsageDescription" target="*-Info.plist" comment="cordova-plugin-chromecast">
2828
<string>Bluetooth is required to scan for nearby Chromecast devices with guest mode enabled.</string>
2929
</config-file>
30-
<config-file parent="NSMicrophoneUsageDescription" target="*-Info.plist">
30+
<config-file parent="NSMicrophoneUsageDescription" target="*-Info.plist" comment="cordova-plugin-chromecast">
3131
<string>The microphone is required to pair with nearby Chromecast devices with guest mode enabled.</string>
3232
</config-file>
3333
</platform>

0 commit comments

Comments
 (0)