Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
<!-- Circle Proximity Detection -->
<uses-permission android:name="android.permission.BLUETOOTH_ADVERTISE"/>
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT"/>
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" android:usesPermissionFlags="neverForLocation"/>
<uses-permission android:name="android.permission.BLUETOOTH" android:maxSdkVersion="30"/>

<!-- SMS -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ import com.bluebubbles.messaging.services.system.GetZenMode
import com.bluebubbles.messaging.services.system.HeifDecoder
import com.bluebubbles.messaging.services.system.HeifEncoder
import com.bluebubbles.messaging.services.system.NativeSyncIsolateHandler
import com.bluebubbles.messaging.services.system.NearbyFindMyAccessoryHandler
import com.bluebubbles.messaging.services.system.OpenSMSAppHandler
import com.bluebubbles.messaging.services.system.RecentContactsRequestHandler
import com.bluebubbles.messaging.services.system.ShizukuGrantPermissionHandler
Expand Down Expand Up @@ -138,6 +139,8 @@ class MethodCallHandler {
CircleProximitySessionHandler.tag -> CircleProximitySessionHandler().handleMethodCall(call, result, context)
EnableBTHandler.tag -> EnableBTHandler().handleMethodCall(call, result, context)
NativeSyncIsolateHandler.tag -> NativeSyncIsolateHandler().handleMethodCall(call, result, context)
NearbyFindMyAccessoryHandler.scanTag,
NearbyFindMyAccessoryHandler.playTag -> NearbyFindMyAccessoryHandler.instance.handleMethodCall(call, result, context)
SMSLessAuthGateway.tag -> SMSLessAuthGateway().handleMethodCall(call, result, context)
ShizukuGrantPermissionHandler.tag -> ShizukuGrantPermissionHandler().handleMethodCall(call, result, context)
ProvisionNative.tag -> ProvisionNative().handleMethodCall(call, result, context)
Expand Down
Loading