You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Calling RNCallKeep.setup causes app to crash with PhoneAccount connection service requires BIND_TELECOM_CONNECTION_SERVICE permission error. This error appears to typically be caused by a misconfiguration. After carefully reviewing the installation steps, reviewing my implementation, and rebuilding and testing the expo development client, I don't believe that's the case here. The logs have been edited to remove potentially sensitive information, for example, com.company.app.
RNCallKeep.setup is being called in a useEffect 2 seconds after the main tab navigator mounts upon initial app launch.
Stack strace:
PhoneAccount connection service requires BIND_TELECOM_CONNECTION_SERVICE permission.
Remote stack trace:
at
com.android.server.telecom.PhoneAccountRegistrar.registerPhoneAccount(PhoneAccountRegistrar.java:871)
at
com.android.server.telecom.TelecomServicelmpl$1.registerPhoneAccount(TelecomServicelmpl.java:675)
at
com.android.internal.telecom.ITelecomService$Stub.onTransact(ITelecomService.java:1035)
at
com.android.server.telecom.TelecomService.lmpl$1.onTransact(TelecomServicelmpl.java:228)
Logcat:
D [RNCallKeepModule] setup : {"selfManaged":false,"imageName":"grayscale-icon","okButton":"Ok","additionalPermissions":["android.permission.READ_PHONE_STATE","android.permission.CALL_PHONE"],"cancelButton":"Cancel","alertDescription":"App needs to access your phone accounts","foregroundService":{"notificationIcon":"app-icon","notificationTitle":"My app is running on background","channelName":"Foreground service for my app","channelId":"com.company.app"},"alertTitle":"Permissions required"}
D [VoiceConnectionService] setAvailable: false
D [VoiceConnectionService] setInitialized: true
D [RNCallKeepModule] setSettings : {"selfManaged":false,"imageName":"grayscale-icon","okButton":"Ok","additionalPermissions":["android.permission.READ_PHONE_STATE","android.permission.CALL_PHONE"],"cancelButton":"Cancel","alertDescription":"ChatrrApp needs to access your phone accounts","foregroundService":{"notificationIcon":"app-icon","notificationTitle":"My app is running on background","channelName":"Foreground service for my app","channelId":"com.telecain.chatrrapp"},"alertTitle":"Permissions required"}
D [RNCallKeepModule] API Version supports self managed, but it is not enabled in setup
D [RNCallKeepModule] setSettings : {"selfManaged":false,"imageName":"grayscale-icon","okButton":"Ok","additionalPermissions":["android.permission.READ_PHONE_STATE","android.permission.CALL_PHONE"],"cancelButton":"Cancel","alertDescription":"App needs to access your phone accounts","foregroundService":{"notificationIcon":"app-icon","notificationTitle":"My app is running on background","channelName":"Foreground service for my app","channelId":"com.company.app"},"alertTitle":"Permissions required"}
D [RNCallKeepModule] registerPhoneAccount
V unRegisterListener by com.facebook.react.common.ShakeDetector
D onPause()
I [GESTURE HANDLER] Tearing down gesture handler registered for root view com.facebook.react.ReactRootView{a25fabe V.E...... ........ 0,0-1080,2268 #33}
I ✅ ModuleRegistry was destroyed
I ✅ AppContext was destroyed
I ✅ KotlinInteropModuleRegistry was destroyed
D instance-destroyed
D Add to mViews: DecorView@55819ac[DevLauncherErrorActivity],pkg= com.company.app
E destroyRootView called
E destroyRootView called, unmountReactApplication
V setLastReportedMergedConfiguration mZoomDisplayHeight: 2400 getDecorView.89659820
D VRR [FRTC] client handle [bufferId:18446744073709551615 framenumber:0] [ffffffff, ffffffff]
I Skipped: false 2 cost 40.751762 refreshRate 0 processName com.telecain.chatrrapp
E asyncReportFrames skippedFrames= 2 true
D AudioTrackExtImpl init
D set() streamType -1, sampleRate 44100, format 0x1, channelMask 0x3, frameCount 14144, flags #0, notificationFrames 0, sessionId 1873, transferType 3, uid -1, pid -1 cbf 1
D set(): Building AudioTrack with attributes: usage=1 content=0 flags=0xa00 tags=[]
D DEBUG: elapsed 0 / 4
I createTrack_l(146) on outputId(29) : 0xb400007a138cf400, mCblk = 0x7d3a0ad100, mLatency = 429, mAfLatency = 109, frameCount = 14144, mSampleRate = 44100, mFlags = 0x8, mReqFrameCount = 14144, mNotificationFramesAct = 7072
V checkInListByUid module:audio-choppy-boost uid:10493 cost 154us return (null)
V checkInListByUid start module:change-futex-timeout uid:10493 time 35575895753us
V checkInListByUid end module:change-futex-timeout uid:10493 time 35575895836us
D checkInListByUid module:change-futex-timeout uid:10493 cost 83us return 0
D setVolume left 0.000 right 0.000 , callingPid 8993
E BLASTBufferItemConsumer::onDisconnect()
D bufferpool2 0xb400007720bc9028 : 0(0 size) total buffers - 0(0 size) used buffers - 115/120 (recycle/alloc)
The text was updated successfully, but these errors were encountered:
hi, I need some assistance , I gave all the permissions , Basically i was trying to call via my mobile sim cards using the phone's default calling screen, it asks for permissions , takes me to phone accounts were i give permission to my app and then when i make call , it uses mobiles default calling screen to make a call.
issue:
The issue is that the call keeps dialing and does not stop secondly the call does not connects to the other user and his phone doesnt ring.
i have just two functions in my app one to start call other to end. right now i didnt impleented any call reciving functionality but because it is calling via sim so the other user mst recive the call.
Bug report
I've checked the example to reproduce the issue.
Reproduced on:
Android
iOS
Description
Calling RNCallKeep.setup causes app to crash with PhoneAccount connection service requires BIND_TELECOM_CONNECTION_SERVICE permission error. This error appears to typically be caused by a misconfiguration. After carefully reviewing the installation steps, reviewing my implementation, and rebuilding and testing the expo development client, I don't believe that's the case here. The logs have been edited to remove potentially sensitive information, for example, com.company.app.
RNCallKeep.setup is being called in a useEffect 2 seconds after the main tab navigator mounts upon initial app launch.
// AndroidManifest.xml permissions
// AndroidManifest.xml - within the application tags
// app.config.ts android permission config for good measure:
I've also tried updating android/app/src/debug targetApi to 30 along with setting the minSdkVersion in expo build properties to 30.
Steps to Reproduce
Versions
Logs
The text was updated successfully, but these errors were encountered: