Post not yet marked as solved
Hi All
I recently found that wrong deactivate audio session event was received on app when user end Celluar call.
Here is my step:
App report to CallKit an incoming call and answer it.
Device receive Celluar call, and user choose Hold/Accept.
and app is notified by held action on Call Provider delegate.
User end Celluar call.
Expected :
app is supposed to receive activate Audio session or unheld event
Real result:
app receive did deactivate event. which cause app to shut audio session.
Can anyone correct on this scenario?
Thanks,
Post not yet marked as solved
Hi All,
Since iOS 15.x, We don't need to take .dsym file to parse the crash, and it is readable, but hard to understand.
such crash signature:
"vmSummary" : "ReadOnly portion of Libraries: Total=840.5M resident=0K(0%) swapped_out_or_unallocated=840.5M(100%)\nWritable regions: Total=603.5M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=603.5M(100%)\n\n VIRTUAL REGION \nREGION TYPE SIZE COUNT (non-coalesced) \n=========== ======= ======= \nActivity Tracing 256K 1 \nCG raster data 144K 3 \nColorSync 48K 3 \nCoreAnimation 416K 12 \nFoundation 16K 1 \nImage IO 3696K 10 \nKernel Alloc Once 32K 1 \nMALLOC 593.4M 101 \nMALLOC guard page 192K 12 \nSQLite page cache 256K 4 \nSTACK GUARD 240K 15 \nStack 9008K 27 \nVM_ALLOCATE 176K 3 \n__AUTH 4558K 481 \n__AUTH_CONST 25.0M 632 \n__DATA 18.4M 632 \n__DATA_CONST 25.5M 638 \n__DATA_DIRTY 2729K 531 \n__FONT_DATA 4K 1 \n__LINKEDIT 194.0M 14 \n__OBJC_CONST 6358K 441 \n__OBJC_RO 91.2M 1 \n__OBJC_RW 3488K 1 \n__TEXT 646.5M 660 \n__UNICODE 588K 1 \ndyld private memory 1024K 1 \nlibnetwork 128K 8 \nmapped file 194.9M 59 \nshared memory 48K 3 \n=========== ======= ======= \nTOTAL 1.8G 4297 \n",
"legacyInfo" : {
"threadTriggered" : {
"queue" : "com.apple.root.user-initiated-qos"
}
},
How to interpret such crash log, and what is best way to catch or debug, just enable Zombie or something else?
Thanks
VCS-2022-02-01-162044.log
Post not yet marked as solved
VCS-2022-01-04-135942.log
My app works fine on almost case, However once I update my Xcode to Xcode 13.2, and run app on iOS 15.2
it will crash on some reason, Here is crash signature:
[Here is crash signature](https://developer.apple.com/forums/content/attachment/fbc2dbd8-0477-4842-a878-945419a71a25)
Post not yet marked as solved
Hi All,
I have an independent iOS app runs on iPhone, and there is no Apple Watch app associated.
However, when my app fire notification, it will post to Apple Watch. My question is:
is there a way to block app fired notification transferred to Apple Watch programatically by app setting or code update? Customer does not like to those notification fired on Apple Watch.
Post not yet marked as solved
I am trying to debug some network traffic on iOS 15 beta,
When I connect device with USB and try the command
rvictl -s [device Token], it always return [Failure].
How to enable this command works.
Post not yet marked as solved
Hi All,
I am working on VoIP application, when a call receive, my app will activate audio session with playandrecord.
However, the issue is during a call, if there Alarm triggered, like set Clock Timer count down for 5 seconds,
when 5 seconds clock Alarm triggered, my app will receive Category update event, and switch my audio session from playandrecord to playback. the alarm does not send interrupt notification.
AVAudioSessionRouteChangePreviousRouteKey = "<AVAudioSessionRouteDescription: 0x282bd5e60, \ninputs = (\n \"<AVAudioSessionPortDescription: 0x282bd66d0, type = MicrophoneBuiltIn; name = iPhone Microphone; UID = Built-In Microphone; selectedDataSource = (null)>\"\n); \noutputs = (\n \"<AVAudioSessionPortDescription: 0x282bd63f0, type = Receiver; name = Receiver; UID = Built-In Receiver; selectedDataSource = (null)>\"\n)>";
AVAudioSessionRouteChangeReasonKey = 3;
}}
What is best to check such event to reactive audio session with correct category.
if I do it on cellular call, once the Alarm is triggered, it will play vibration, there is tone at all.
Hi All,I am a little confused what is the root cause that http is always enabled even if<key>NSAppTransportSecurity</key><dict><key>NSAllowsArbitraryLoads</key><false/></dict>Thanks,
Hi All,Is that possible to enable Copy &paste within App only, not expose to other app?My request is that to enable copy and paste on UITextField, once app is put into background and user try to paste the seletion to email or other app, the selection should be disgard.since our application is handling very sensitive information, user want to copy and paste within app only.current this copy and paste feature is disabled.Thanks,