add more bluetooth permissions to be able to request access for nearby devices on android api level 32 in addition to 29

This commit is contained in:
Mamadou Babaei
2024-08-16 18:01:40 +02:00
parent 79b92dcfc8
commit f85522b041
2 changed files with 5 additions and 1 deletions
+2 -1
View File
@@ -29,7 +29,8 @@ This is a minor release focusing mainly on bringing OpenXR-compatible hand track
- Added a new static Draw() method overload to DebugGizmo which allows passing an FQuat instead of a FRotator.
- Added FSGEngineUtils.
- Introduced the FSGInitializationSettings in order to control how the plugin is initialized.
- Introduced the FSGGameUserSettings for managing the Engine Scalability Settings through the SenseGlove plugin in order to change the graphics settings on the fly.
- Introduced the FSGGameUserSettings for managing the Engine Scalability Settings through the SenseGlove plugin in order to change the graphics settings on the fly.\
- Added support for Android API level 32 in addition to API level 29.
### Fixed
@@ -118,6 +118,9 @@
<addPermission android:name="android.permission.BLUETOOTH"/>
<addPermission android:name="android.permission.BLUETOOTH_ADMIN"/>
<addPermission android:name="android.permission.BLUETOOTH_ADVERTISE"/>
<addPermission android:name="android.permission.BLUETOOTH_CONNECT"/>
<addPermission android:name="android.permission.BLUETOOTH_SCAN"/>
<addPermission android:name="android.permission.ACCESS_BACKGROUND_LOCATION"/>
<addPermission android:name="android.permission.ACCESS_FINE_LOCATION"/>
</androidManifestUpdates>