esc_pos_bluetooth icon indicating copy to clipboard operation
esc_pos_bluetooth copied to clipboard

iOS release issue with Background Modes

Open jobypthomas opened this issue 3 years ago • 2 comments

Thank you for this package and it worked like a charm. However, when the app is to be released to AppStore, apple had the following feedback:

Your app declares support for bluetooth-central and bluetooth-peripheral in the UIBackgroundModes key in your Info.plist but does not provide Bluetooth Low Energy functionality. The Bluetooth Background modes are for apps that communicate to other devices using Bluetooth Low Energy and the Core Bluetooth framework.

To resolve this issue, please revise your app to add support for Bluetooth Low Energy communication through Core Bluetooth in your app or remove the bluetooth- values from the UIBackgroundModes key.

The following background mode capabilities are what they have issue with:

	<key>UIBackgroundModes</key>
	<array>
		<string>bluetooth-central</string>
		<string>bluetooth-peripheral</string>
       </array>

But the app does not work if I remove it. Any thoughts or advice?

jobypthomas avatar May 25 '21 10:05 jobypthomas

i also got this issue, could you fix that?

locnhuvu avatar May 30 '21 15:05 locnhuvu

hi, I have same issue. Is there any solution? Thanks

ozhankucuk avatar Jul 11 '21 12:07 ozhankucuk