Hello, im trying to use the ‘native.showPopup( name, params )’ to create a new contact in the address book. My problem is that when i press done the app just crashes.
is this a known problem or am i just doing something wrong?
–Fredrik
Hello, im trying to use the ‘native.showPopup( name, params )’ to create a new contact in the address book. My problem is that when i press done the app just crashes.
is this a known problem or am i just doing something wrong?
–Fredrik
You will need to provide more information including the actual code you’re using, your build.settings file, what device(s) you’re testing on, what version of Corona SDK you’re using.
It will also help if you tether your device to your computer running Xcode and look for errors in the console log.
If you need help with it see: http://docs.coronalabs.com/guide/basics/debugging/index.html
Rob
Okey here is the code i am using: [lua]
local function onComplete( event )
composer.gotoScene( “view1” )
end
newContactOptions =
{
option = “newContact”,
listener = onComplete,
data =
{
–Names
firstName = “somename”,
lastName = “somelastname”,
– Emails
homeEmail = “someemail”,
– Phone
phoneIphone = “somenumber”
},
}
local function addcontact( event )
if event.phase == “ended” then
native.showPopup( “addressbook”, newContactOptions )
end
end
local addtoContact = widget.newButton
{
width = 300,
height = 59,
defaultFile = “images/submit.png”,
overFile = “images/submit.png”,
font = “Early Times Light Demo”,
label = “Add”,
labelColor = { default={ 1, 1, 1 }, over={ 0, 0, 0, 0.5 } },
onEvent = addcontact
}
addtoContact.anchorX = 0
addtoContact.x = -5
addtoContact.y = sh/2 + 120
[/lua]
So everything works smoothly until i press done in the contactpage, then it crashes…
this is my build.settings:
[lua]
–
– For more information on build.settings see the Corona SDK Build Guide at:
– http://docs.coronalabs.com/guide/distribution/buildSettings/index.html
–
settings =
{
orientation =
{
– Supported values for orientation:
– portrait, portraitUpsideDown, landscapeLeft, landscapeRight
default = “portrait”,
supported = { “portrait”, }
},
excludeFiles =
{
– Include only the necessary icon files on each platform
iphone = { “Icon-*dpi.png”, },
android = { “Icon.png”, “Icon-Small-*.png”, “Icon*@2x.png”, },
},
–
– iOS Section
–
iphone =
{
plist =
{
UIStatusBarHidden = false,
UIPrerenderedIcon = true, – set to false for “shine” overlay
–UIApplicationExitsOnSuspend = true, – uncomment to quit app on suspend
CFBundleIconFiles =
{
“Icon.png”,
“Icon@2x.png”,
“Icon-60.png”,
“Icon-60@2x.png”,
“Icon-60@3x.png”,
“Icon-72.png”,
“Icon-72@2x.png”,
“Icon-76.png”,
“Icon-76@2x.png”,
“Icon-Small.png”,
“Icon-Small@2x.png”,
“Icon-Small@3x.png”,
“Icon-Small-40.png”,
“Icon-Small-40@2x.png”,
“Icon-Small-50.png”,
“Icon-Small-50@2x.png”,
},
UIAppFonts =
{
“gaban-outline-regular-FFP.ttf”,
“Early Times_light Demo.otf”
},
–[[
– iOS app URL schemes:
CFBundleURLTypes =
{
{
CFBundleURLSchemes =
{
“fbXXXXXXXXX”, – replace XXXXXXXXX with your Facebook appId
}
}
}
–]]
}
},
plugins = {
[“CoronaProvider.native.popup.addressbook”] =
{
publisherId = “com.coronalabs”,
supportedPlatforms = { iphone=true, [“iphone-sim”]=true },
}
},
–
– Android Section
–
android =
{
usesPermissions =
{
“android.permission.INTERNET”,
},
},
}
[/lua]
–Fredrik
Hi Fredrik,
Thanks for the code, that helps somewhat. But, can you check if you’re seeing any error reports in the Xcode console when you run the app on a device (plugged into the computer) and monitor the console output as you perform actions?
Thanks,
Brent
This is what the console say when i press the done button:
EnabledInDaemonSettings: 0
Aug 18 13:31:56 Fredrik-sin-iPhone locationd[61] <Notice>: Gesture EnabledForTopCLient: 0, EnabledInDaemonSettings: 0
Aug 18 13:31:58 Fredrik-sin-iPhone limitadtrackingd[1623] <Warning>: BTA job for refreshing Limit Ad Tracking status calling out to AdSheet, will launch if needed.
Aug 18 13:31:58 Fredrik-sin-iPhone AdSheet[2291] <Error>: assertion failed: 12H143: libxpc.dylib + 71768 [C9F3C08A-8A3B-3849-A905-D24911240853]: 0x7d
Aug 18 13:31:58 Fredrik-sin-iPhone Unknown[2291] <Error>:
Aug 18 13:31:58 Fredrik-sin-iPhone UserEventAgent[20] <Warning>: Tracking com.apple.AdSheetPhone (via activity)
Aug 18 13:31:58 Fredrik-sin-iPhone limitadtrackingd[1623] <Warning>: Not scheduling a new BTA job; keeping previously scheduled job should run after 3s from now when the network is available.
Aug 18 13:31:59 Fredrik-sin-iPhone kernel[0] <Notice>: IOReturn IOAsynchronousScheduler::checkAndQueueArgument(IOAsynchronousScheduler::ArgumentEntry *): max argument count (128) reached. Notify a few first.
Aug 18 13:31:59 Fredrik-sin-iPhone ReportCrash[2293] <Error>: task_set_exception_ports(B07, 400, D03, 0, 0) failed with error (4: (os/kern) invalid argument)
Aug 18 13:31:59 Fredrik-sin-iPhone ReportCrash[2293] <Notice>: ReportCrash acting against PID 2290
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Notice>: Formulating crash report for process testContacts[2290]
Aug 18 13:32:00 Fredrik-sin-iPhone com.apple.accessibility.AccessibilityUIServer[135] <Warning>: Lost connection with client.
Aug 18 13:32:00 Fredrik-sin-iPhone com.apple.xpc.launchd[1] (UIKitApplication:com.fredrik.typeworld[0x5481][2290]) <Notice>: Service exited due to signal: Segmentation fault: 11
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Not saving crash log because we have reached the limit for logs to store on disk. Sync or otherwise clear logs from /var/mobile/Library/Logs/CrashReporter to save new logs.
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Could not save crash report to disk!
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Incident Identifier: 5F91C0DB-169E-4BDC-AA55-536C751AC51E
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: CrashReporter Key: d5f629936646177b09daf14672f83114be8b9364
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Hardware Model: iPhone7,2
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Process: testContacts [2290]
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Path: /private/var/mobile/Containers/Bundle/Application/2F19E7C0-FB73-433B-BD47-09C22D4D2B7C/testContacts.app/testContacts
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Identifier: testContacts
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Version: ???
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Code Type: ARM-64 (Native)
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Parent Process: launchd [1]
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Date/Time: 2015-08-18 13:31:59.986 +0200
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Launch Time: 2015-08-18 13:30:53.824 +0200
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: OS Version: iOS 8.4 (12H143)
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Report Version: 105
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Exception Subtype: KERN_INVALID_ADDRESS at 0x0000000000000000
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Triggered by Thread: 0
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 0 name: Dispatch queue: com.apple.main-thread
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 0 Crashed:
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0 libsystem_c.dylib 0x0000000194ee16ac 0x194ee0000 + 5804
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 1 testContacts 0x00000001000c2f28 0x100050000 + 470824
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 2 testContacts 0x0000000100186ef8 0x100050000 + 1273592
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 3 UIKit 0x00000001878bac40 0x1875a4000 + 3238976
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 4 UIKit 0x0000000187ca9f98 0x1875a4000 + 7364504
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 5 UIKit 0x00000001878bd0bc 0x1875a4000 + 3248316
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 6 UIKit 0x00000001876d6f60 0x1875a4000 + 1257312
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 7 UIKit 0x00000001876d6790 0x1875a4000 + 1255312
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 8 UIKit 0x00000001875ec26c 0x1875a4000 + 295532
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 9 UIKit 0x00000001875ec174 0x1875a4000 + 295284
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 10 QuartzCore 0x0000000186ef5628 0x186ee0000 + 87592
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 11 libdispatch.dylib 0x0000000194e85950 0x194e84000 + 6480
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 12 libdispatch.dylib 0x0000000194e8a208 0x194e84000 + 25096
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 13 CoreFoundation 0x0000000182af37f4 0x182a14000 + 915444
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 14 CoreFoundation 0x0000000182af189c 0x182a14000 + 907420
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 15 CoreFoundation 0x0000000182a1d2d0 0x182a14000 + 37584
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 16 GraphicsServices 0x000000018c4736f8 0x18c468000 + 46840
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 17 UIKit 0x000000018761af3c 0x1875a4000 + 487228
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 18 testContacts 0x0000000100056fa8 0x100050000 + 28584
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 19 libdyld.dylib 0x0000000194eb2a04 0x194eb0000 + 10756
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 1 name: Dispatch queue: com.apple.libdispatch-manager
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 1:
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0 libsystem_kernel.dylib 0x0000000194fb0c24 0x194fb0000 + 3108
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 1 libdispatch.dylib 0x0000000194e95e6c 0x194e84000 + 73324
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 2 libdispatch.dylib 0x0000000194e87998 0x194e84000 + 14744
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 2 name: com.apple.NSURLConnectionLoader
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 2:
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0 libsystem_kernel.dylib 0x0000000194fb0e0c 0x194fb0000 + 3596
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 1 libsystem_kernel.dylib 0x0000000194fb0c84 0x194fb0000 + 3204
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 2 CoreFoundation 0x0000000182af3720 0x182a14000 + 915232
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 3 CoreFoundation 0x0000000182af1674 0x182a14000 + 906868
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 4 CoreFoundation 0x0000000182a1d2d0 0x182a14000 + 37584
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 5 CFNetwork 0x00000001824fa590 0x18245c000 + 648592
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 6 Foundation 0x0000000183a3ddb4 0x183948000 + 1007028
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 7 libsystem_pthread.dylib 0x0000000195067dc4 0x195064000 + 15812
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 8 libsystem_pthread.dylib 0x0000000195067d20 0x195064000 + 15648
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 9 libsystem_pthread.dylib 0x0000000195064ef4 0x195064000 + 3828
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 3 name: com.apple.CFSocket.private
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 3:
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0 libsystem_kernel.dylib 0x0000000194fcb498 0x194fb0000 + 111768
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 1 CoreFoundation 0x0000000182af9124 0x182a14000 + 938276
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 2 libsystem_pthread.dylib 0x0000000195067dc4 0x195064000 + 15812
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 3 libsystem_pthread.dylib 0x0000000195067d20 0x195064000 + 15648
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 4 libsystem_pthread.dylib 0x0000000195064ef4 0x195064000 + 3828
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 4:
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0 libsystem_kernel.dylib 0x0000000194fcbc78 0x194fb0000 + 113784
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 1 libsystem_pthread.dylib 0x00000001950652d8 0x195064000 + 4824
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 2 libsystem_pthread.dylib 0x0000000195064eec 0x195064000 + 3820
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 5:
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0 libsystem_kernel.dylib 0x0000000194fcbc78 0x194fb0000 + 113784
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 1 libsystem_pthread.dylib 0x00000001950652d8 0x195064000 + 4824
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 2 libsystem_pthread.dylib 0x0000000195064eec 0x195064000 + 3820
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 6:
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0 libsystem_kernel.dylib 0x0000000194fcbc78 0x194fb0000 + 113784
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 1 libsystem_pthread.dylib 0x00000001950652d8 0x195064000 + 4824
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 2 libsystem_pthread.dylib 0x0000000195064eec 0x195064000 + 3820
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 7:
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0 libsystem_kernel.dylib 0x0000000194fcbc78 0x194fb0000 + 113784
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 1 libsystem_pthread.dylib 0x00000001950652d8 0x195064000 + 4824
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 2 libsystem_pthread.dylib 0x0000000195064eec 0x195064000 + 3820
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 8:
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0 libsystem_kernel.dylib 0x0000000194fb0e0c 0x194fb0000 + 3596
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 1 libsystem_kernel.dylib 0x0000000194fb0c84 0x194fb0000 + 3204
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 2 CoreFoundation 0x0000000182af3720 0x182a14000 + 915232
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 3 CoreFoundation 0x0000000182af1674 0x182a14000 + 906868
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 4 CoreFoundation 0x0000000182a1d2d0 0x182a14000 + 37584
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 5 Foundation 0x00000001839554c4 0x183948000 + 54468
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 6 Foundation 0x0000000183977a5c 0x183948000 + 195164
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 7 AssistantServices 0x0000000188f7f2e8 0x188f70000 + 62184
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 8 Foundation 0x0000000183a3ddb4 0x183948000 + 1007028
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 9 libsystem_pthread.dylib 0x0000000195067dc4 0x195064000 + 15812
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 10 libsystem_pthread.dylib 0x0000000195067d20 0x195064000 + 15648
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 11 libsystem_pthread.dylib 0x0000000195064ef4 0x195064000 + 3828
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 0 crashed with ARM Thread State (64-bit):
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: x0: 0x0000000000000000 x1: 0x0000000000000000 x2: 0x0000000000000000 x3: 0x0000000000000000
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: x4: 0x000000000000006d x5: 0x000000000000006d x6: 0x0000000000000000 x7: 0x0000000000000006
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: x8: 0x000000012f074250 x9: 0x000000010026dbd0 x10: 0x00000001701fae00 x11: 0x000000040000000f
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: x12: 0x00000001701faef0 x13: 0x000021a50026dbd1 x14: 0x0000000000000015 x15: 0x0000000000000000
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: x16: 0x0000000194ee16a0 x17: 0x00000001001878a8 x18: 0x0000000000000000 x19: 0x000000012e513fb0
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: x20: 0x0000000000000000 x21: 0x000000012f074230 x22: 0x000000012e513fb0 x23: 0x000000012e513fb0
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: x24: 0x0000000000000000 x25: 0x0000000100196d3f x26: 0x0000000187d8c2cc x27: 0x000000010025b530
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: x28: 0x000000010025b550 fp: 0x000000016fdae2b0 lr: 0x00000001000c2f2c
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: sp: 0x000000016fdae2b0 pc: 0x0000000194ee16ac cpsr: 0x20000000
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Binary Images:
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x100050000 - 0x10024bfff testContacts arm64 <1a84c181eda231c08b0d7a1863ab419b> /var/mobile/Containers/Bundle/Application/2F19E7C0-FB73-433B-BD47-09C22D4D2B7C/testContacts.app/testContacts
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x12006c000 - 0x120093fff dyld arm64 <de589e6153453237a6cf724cb236d83c> /usr/lib/dyld
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x180e34000 - 0x180e3cfff AccessibilitySettingsLoader arm64 <928bcadf4a553591969f7e6c568322fd> /System/Library/AccessibilityBundles/AccessibilitySettingsLoader.bundle/AccessibilitySettingsLoader
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181228000 - 0x1812c5fff AGXGLDriver arm64 <9c69f9873c1935c3bc4b1b103e8a5c24> /System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1812e0000 - 0x181474fff AVFoundation arm64 <b9c4b32ba43a3a798c4adcaad3608f52> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181478000 - 0x1814dcfff libAVFAudio.dylib arm64 <6667f63f0f1635668dc941d6b79062e1> /System/Library/Frameworks/AVFoundation.framework/libAVFAudio.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181520000 - 0x181520fff Accelerate arm64 <8e155c8b26b133a28f7578ef67aacc38> /System/Library/Frameworks/Accelerate.framework/Accelerate
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181538000 - 0x181757fff vImage arm64 <ae4967d90e203915844595106621248c> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181758000 - 0x1817fffff libBLAS.dylib arm64 <c76e3b9f617f3b8abe0975eb44a546ba> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181800000 - 0x181b7afff libLAPACK.dylib arm64 <34e9544bc97d3874868cb323ccea01d5> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181b7c000 - 0x181b91fff libLinearAlgebra.dylib arm64 <a16ca4f52bb233f38326d86ecec2f89e> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181b94000 - 0x181bfcfff libvDSP.dylib arm64 <ed13c497f1663e31acf3ff5b430b440b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181c00000 - 0x181c23fff libvMisc.dylib arm64 <ea6bd9d3c6a13397a7ecb62872ca4540> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181c24000 - 0x181c24fff vecLib arm64 <a22b49310b0e300bbf4b313623aa8c1f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181c28000 - 0x181c57fff Accounts arm64 <8f57e639af9b3437afc70315f6cb6579> /System/Library/Frameworks/Accounts.framework/Accounts
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181c5c000 - 0x181cdafff AddressBook arm64 <da906094da223e4b801b5cb20ca4334d> /System/Library/Frameworks/AddressBook.framework/AddressBook
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181cdc000 - 0x181e2ffff AddressBookUI arm64 <e8073e9b5ccd359a896a1ff55d2bc104> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181e30000 - 0x181e44fff AssetsLibrary arm64 <f6964034402b34ceb6214fc34ff9adf8> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181ff8000 - 0x1822b8fff AudioToolbox arm64 <903862eef2fc3a70ad514658efee8da2> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18245c000 - 0x182672fff CFNetwork arm64 <7bbb801481353aafaa7c6afccc74df63> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x182674000 - 0x182710fff CloudKit arm64 <7dd609fe2e1a3eac8ba447015c0438a1> /System/Library/Frameworks/CloudKit.framework/CloudKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x182714000 - 0x182779fff CoreAudio arm64 <8e96790e0bf33804b77309eb397e8c67> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1827a0000 - 0x1827c1fff CoreBluetooth arm64 <b5932299bce73e438a13380d5948cbe4> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1827c4000 - 0x182a10fff CoreData arm64 <5002b1ea89773ecda7ec6e41067538c1> /System/Library/Frameworks/CoreData.framework/CoreData
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x182a14000 - 0x182d72fff CoreFoundation arm64 <72f7e261b2ec35e39e44417e4d77a241> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x182d74000 - 0x182ed6fff CoreGraphics arm64 <b3172ddbeb013c8fbd7211379f8bd7c7> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x182f2c000 - 0x182f2efff libCGXType.A.dylib arm64 <ace81a19ecaa3291a3da637556346b56> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGXType.A.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x182f30000 - 0x182f3bfff libCMSBuiltin.A.dylib arm64 <278f7ed331913c90ab67600e79dd8e83> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCMSBuiltin.A.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183130000 - 0x18314efff libRIP.A.dylib arm64 <7ff7d3669ea33b859e527022cf1b7203> /System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183150000 - 0x183282fff CoreImage arm64 <25cc829ab7273a9a9de4ff5b377882d3> /System/Library/Frameworks/CoreImage.framework/CoreImage
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183284000 - 0x1832e2fff CoreLocation arm64 <9da0011e907f3e84a2d4634b6616e299> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18331c000 - 0x1833dffff CoreMedia arm64 <1dedaec0d2b03759a11aeeb3b306c028> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1833e0000 - 0x1834cefff CoreMotion arm64 <9c69b3db77913dd3a255e0cf2fd73e88> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1834d0000 - 0x183541fff CoreTelephony arm64 <0b060676f3083a04adc5b79be4a31847> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183544000 - 0x18364dfff CoreText arm64 <e4088a6927f93145a6ffd47810722c4d> /System/Library/Frameworks/CoreText.framework/CoreText
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183650000 - 0x18366dfff CoreVideo arm64 <7c508da36b633cb2903522517e16ff9b> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183670000 - 0x183794fff EventKit arm64 <3e7fb2dfc9e63c168c9d507b069a37d6> /System/Library/Frameworks/EventKit.framework/EventKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183948000 - 0x183ba0fff Foundation arm64 <2a3175fa0a68365185275bdb7cbfa05e> /System/Library/Frameworks/Foundation.framework/Foundation
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183ba4000 - 0x183bd0fff GLKit arm64 <c465724c11c13316baa37bac04e50869> /System/Library/Frameworks/GLKit.framework/GLKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183bd4000 - 0x183bfdfff GSS arm64 <342060f94f313c1a944b6282469eb3fe> /System/Library/Frameworks/GSS.framework/GSS
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183c14000 - 0x183c14fff GameKit arm64 <6099df0693003655bd58f53667c02fe7> /System/Library/Frameworks/GameKit.framework/GameKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183ce8000 - 0x183d53fff IOKit arm64 <93f08e651bc8323b961363e1f750679a> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183d54000 - 0x183ff7fff ImageIO arm64 <36422dc9c8cd328287d1d0f22184e59c> /System/Library/Frameworks/ImageIO.framework/ImageIO
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183ff8000 - 0x184499fff JavaScriptCore arm64 <3e311bc753f4342e8eb73a66a127708f> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x184cb8000 - 0x184dd1fff MapKit arm64 <a9dcd37078893b05ac8eb2d3a6e5b626> /System/Library/Frameworks/MapKit.framework/MapKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x184dd4000 - 0x184ddafff MediaAccessibility arm64 <6e2d93cf513b34b4814cccaa0ee052fc> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x184ddc000 - 0x185049fff MediaPlayer arm64 <4859ba312bc33e4bb7d208ef0b3cdbb6> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18504c000 - 0x185449fff MediaToolbox arm64 <f7a1725923c439e9b12b1abec15cc6b4> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18544c000 - 0x185520fff MessageUI arm64 <c026ed50c9e933b78c4c19fd10a7ad0a> /System/Library/Frameworks/MessageUI.framework/MessageUI
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x185524000 - 0x18559cfff Metal arm64 <c748163697153214b44cb611f320842e> /System/Library/Frameworks/Metal.framework/Metal
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1855a0000 - 0x185651fff MobileCoreServices arm64 <057efd9a73913661bf53c363542f37f3> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x185780000 - 0x1857b5fff OpenAL arm64 <390bf79770fe3e6b8448584cbfbd6462> /System/Library/Frameworks/OpenAL.framework/OpenAL
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1867d4000 - 0x1868c9fff GLEngine arm64 <21e690670518358fa466ca531b48c42e> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1868cc000 - 0x1868d6fff OpenGLES arm64 <1d09c82abb193352b8af2b4d0407a0d9> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1868dc000 - 0x1868ddfff libCVMSPluginSupport.dylib arm64 <d1b07ee726353813b12a976727b445e4> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1868e0000 - 0x1868e3fff libCoreFSCache.dylib arm64 <0aafb4815583348eb86a7015eb63e548> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1868e4000 - 0x1868e8fff libCoreVMClient.dylib arm64 <2069956fa09636cbbe074632eb43a51e> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1868ec000 - 0x1868f6fff libGFXShared.dylib arm64 <32e8a868d2573280a6cf5edd7643ec8c> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1868f8000 - 0x186943fff libGLImage.dylib arm64 <a16fb90cf2853d748e186a4d68bf2f7c> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x186944000 - 0x186abffff libGLProgrammability.dylib arm64 <ad749ecaad043374babe1f7b30e7a758> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x186ee0000 - 0x187072fff QuartzCore arm64 <aefa801417433ff5a428960e1793cbfe> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x187074000 - 0x1870c0fff QuickLook arm64 <56bde4f644ef34e9996ba1285f7f5101> /System/Library/Frameworks/QuickLook.framework/QuickLook
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1872f8000 - 0x187358fff Security arm64 <a163bf89604b3c9fa3faacaf6705da01> /System/Library/Frameworks/Security.framework/Security
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18735c000 - 0x1873f2fff Social arm64 <52fa8db98f133dfea1a61bac5f75099b> /System/Library/Frameworks/Social.framework/Social
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x187510000 - 0x187528fff StoreKit arm64 <9b94e9ed4c2a3f8eb57f168f1a0f8576> /System/Library/Frameworks/StoreKit.framework/StoreKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18752c000 - 0x18759ffff SystemConfiguration arm64 <04aaeaf32285398ba5a7e201c59ae353> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1875a0000 - 0x1875a1fff Twitter arm64 <028f6406ed453837a5a289ac8fa5e265> /System/Library/Frameworks/Twitter.framework/Twitter
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1875a4000 - 0x187f24fff UIKit arm64 <dfc56cb257923125b61cf4a4942e47c9> /System/Library/Frameworks/UIKit.framework/UIKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x187f28000 - 0x187fa1fff VideoToolbox arm64 <021f8076e2ff39a5a75bb521ee214a0f> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x187fdc000 - 0x188240fff WebKit arm64 <7fbaa4ee2cc73e5aa2419e671c1ec877> /System/Library/Frameworks/WebKit.framework/WebKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1885f4000 - 0x1885f7fff AGXCompilerConnection arm64 <e62cdf78d2fc3a8d87fca74760daf002> /System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18866c000 - 0x188679fff AOSNotification arm64 <2e9390c00fb23911b2944be95ecd0f7b> /System/Library/PrivateFrameworks/AOSNotification.framework/AOSNotification
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188760000 - 0x188768fff AccessibilityUI arm64 <ffb2273cfc26320184aa4a3463f657e2> /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/AccessibilityUI.framework/AccessibilityUI
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188788000 - 0x18878bfff AccessibilityUIUtilities arm64 <1918d96a5cd3364ea94e0437af4e06bc> /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/AccessibilityUIUtilities.framework/AccessibilityUIUtilities
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188790000 - 0x188794fff ZoomServices arm64 <68e468820a9231cbaf002dd202a356a7> /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/ZoomServices.framework/ZoomServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188798000 - 0x188801fff AccessibilityUtilities arm64 <c0c38f0c2b58301b8e2dc5ce08abba47> /System/Library/PrivateFrameworks/AccessibilityUtilities.framework/AccessibilityUtilities
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188814000 - 0x188872fff AccountsDaemon arm64 <31f98cc9d2ac3da99adc8d447a7dfe8d> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188874000 - 0x18889bfff AccountsUI arm64 <b1a4d0c6d5df3fa193afaf03600c6303> /System/Library/PrivateFrameworks/AccountsUI.framework/AccountsUI
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18889c000 - 0x1888a1fff AggregateDictionary arm64 <01ce6382d4f4366da3bb447d9ae630ce> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188a8c000 - 0x188a8ffff AirPlaySupport arm64 <8750c0f7241132e08547e4b673f3e796> /System/Library/PrivateFrameworks/AirPlaySupport.framework/AirPlaySupport
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188cf8000 - 0x188d40fff AppSupport arm64 <993349f1e2513cd8af8ceec3a711f216> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188d44000 - 0x188d9ffff AppleAccount arm64 <2e4a99cec073378b980d44ce50b07166> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188da0000 - 0x188de2fff AppleAccountUI arm64 <7abfdbf8954e34c0bfa439a9895790e6> /System/Library/PrivateFrameworks/AppleAccountUI.framework/AppleAccountUI
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188eb0000 - 0x188efcfff AppleJPEG arm64 <46b31baf2b4d32ae819a3e071adf372b> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188f10000 - 0x188f24fff ApplePushService arm64 <35c39ff67e3e34ce89c1ed5dd1a2a7fd> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188f28000 - 0x188f31fff AppleSRP arm64 <d6c0054ef622355e85890017a4f79d00> /System/Library/PrivateFrameworks/AppleSRP.framework/AppleSRP
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188f44000 - 0x188f4ffff AssertionServices arm64 <d35c3db42ab039fc8d99109c2c6f3c88> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188f50000 - 0x188f6dfff AssetsLibraryServices arm64 <8ffa014a4cd730cbb0b216823b1fccb1> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188f70000 - 0x188fb0fff AssistantServices arm64 <1466e85e7ad23b1fb1ea672b5199dcec> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188fec000 - 0x188feffff BTLEAudioController arm64 <bac984fb212d38eebf930d8fd14ab980> /System/Library/PrivateFrameworks/BTLEAudioController.framework/BTLEAudioController
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188ff0000 - 0x18900cfff BackBoardServices arm64 <be16ac42c9ff3372ba3c56b145ef278d> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189014000 - 0x189051fff BaseBoard arm64 <d083ce5eca3a371a88b48958ea8335c5> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18906c000 - 0x189073fff BluetoothManager arm64 <d66ddfddbf5c3f27aafbc912a19d00c7> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189074000 - 0x1890a4fff Bom arm64 <7eac524ee36e3dc0804b4a1a337eb339> /System/Library/PrivateFrameworks/Bom.framework/Bom
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1891a4000 - 0x1891adfff CacheDelete arm64 <2004648478703e54ad0d73b2794c1fd0> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189200000 - 0x189230fff CalendarFoundation arm64 <5df04a84819131af9095c4cc33e1ea68> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18937c000 - 0x189386fff CaptiveNetwork arm64 <82c8157aa50d3b62894d1dc566423ed7> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189394000 - 0x1894e0fff Celestial arm64 <e06a9d75034638788f44e620b05c9603> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1894f8000 - 0x189513fff CertInfo arm64 <9981e201d7d6363291a0eba4e7a1be88> /System/Library/PrivateFrameworks/CertInfo.framework/CertInfo
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189514000 - 0x18951afff CertUI arm64 <f3c298b00903389293b2db27636b8b7e> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189680000 - 0x1896a4fff ChunkingLibrary arm64 <92e2b20d330e341a80a2a9a5e48f963f> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189b78000 - 0x189c4afff CloudPhotoLibrary arm64 <2e89b7db6b9531a3b74216c7b83590c3> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189c58000 - 0x189ca6fff ColorSync arm64 <e554df2a982439a685b428e4863c000d> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189ca8000 - 0x189caafff CommonAuth arm64 <44dbd0513b343cd4aad4160aa24b1e42> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189cac000 - 0x189cbefff CommonUtilities arm64 <f022b51d242b35c89914227e1a93bcb4> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189cc0000 - 0x189cc4fff CommunicationsFilter arm64 <38e1a7097e81306095603870a255afc8> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189db0000 - 0x189db5fff ConstantClasses arm64 <9b00a0ebb0a43f1387d413a26652b628> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189db8000 - 0x189df6fff ContentIndex arm64 <9afe75e0c3733cb48a4430f8fed547a5> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189df8000 - 0x189e00fff CoreAUC arm64 <c0cff40d488039e08f96618b4d5cac52> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189e3c000 - 0x189e9cfff CoreDAV arm64 <e4c9413238b430fb8510a060624e68ac> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189ea0000 - 0x189ec8fff CoreDuet arm64 <66ce588b961a3d068fc9ff00d2be88af> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189ed4000 - 0x189ee7fff CoreDuetDaemonProtocol arm64 <d882d28c47523818ae4be9547de9890d> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189ef0000 - 0x189ef2fff CoreDuetDebugLogging arm64 <4339336da9853d819bd849cc690f70fc> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18a098000 - 0x18a1d0fff CoreMediaStream arm64 <d025d719b09a320684b8fd739d7e395d> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18a1d4000 - 0x18a284fff CorePDF arm64 <68444dca925d3c9ea91236cf27c23479> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18a2f8000 - 0x18a303fff CoreRecents arm64 <47505a2790883ae981779d28e2de9142> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18a398000 - 0x18a3bcfff CoreServicesInternal arm64 <5910098ed2223909913c8f2cf06e8e79> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18a54c000 - 0x18a5cbfff CoreSymbolication arm64 <b4c796f8295a36c7bef680fa5a8e1933> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18a624000 - 0x18a6b8fff CoreUI arm64 <bd2aec10aba93927816de19e5c727150> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18a6bc000 - 0x18a756fff CoreUtils arm64 <abc9678b52ff3fc089096e290fce5eec> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18a758000 - 0x18a75efff CrashReporterSupport arm64 <078286e32cd632b4a9799c7bcc6997a1> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18a760000 - 0x18a766fff DAAPKit arm64 <ade2d964f32a3cc79bca35df657dc017> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18a768000 - 0x18a773fff DCIMServices arm64 <96eaef36adfc3a14abb3dd88d7283e24> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18a774000 - 0x18a7c3fff DataAccess arm64 <d2d1f37282c83e50a4fb5c0a567dbaab> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18aa20000 - 0x18aa46fff DataAccessExpress arm64 <7b5f84edb62d3b728a6e3b675b55516b> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18aa98000 - 0x18aa9ffff DataMigration arm64 <dcddd4a050b03a1f81f5c8470b10fcb3> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18aabc000 - 0x18aabdfff DiagnosticLogCollection arm64 <8164ef005b523408bc36fe106a826b82> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18aac0000 - 0x18aae0fff DictionaryServices arm64 <4cf0f22bffc53cbaaae198304e2c1c01> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18ab08000 - 0x18ab2efff EAP8021X arm64 <47b785937a5731bd9c180155c687d27a> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18ac50000 - 0x18ac67fff FTAWD arm64 <c6c5850139d131e594be966eb1215220> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18ac68000 - 0x18ac6afff FTClientServices arm64 <d480140f19af36b390a3dd67d7b6c038> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18ac6c000 - 0x18ac9efff FTServices arm64 <65dc293c37e0360398f50ba64bf57a76> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18aca0000 - 0x18b0cdfff FaceCore arm64 <8265a6108e133082b64bb0e112f7eddd> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18b0ec000 - 0x18b0f9fff FindMyDevice arm64 <1f4df4aba2093f7a9212e89e6c80bafa> /System/Library/PrivateFrameworks/FindMyDevice.framework/FindMyDevice
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18b154000 - 0x18b154fff FontServices arm64 <e0d278c866da3401894c517958b428bb> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18b158000 - 0x18b239fff libFontParser.dylib arm64 <21130ff6a7c93157ba82794a919e344d> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18b23c000 - 0x18b24bfff libGSFontCache.dylib arm64 <91f4757370473041a7642b2eab99ec37> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18b358000 - 0x18b378fff FrontBoardServices arm64 <23e7f159422933539c304f3ef39c89af> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18bd2c000 - 0x18bd36fff libGPUSupportMercury.dylib arm64 <907f17ce24953a96b92835bb002cf133> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18bd38000 - 0x18bdd7fff GameCenterFoundation arm64 <22aed163b9ff3d2a866f82823d1e064d> /System/Library/PrivateFrameworks/GameCenterFoundation.framework/GameCenterFoundation
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18be8c000 - 0x18bee0fff GameCenterUI arm64 <129d4e44878a3c10aa72f7b8e7427f0d> /System/Library/PrivateFrameworks/GameCenterUI.framework/GameCenterUI
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18bee4000 - 0x18c045fff AVConference arm64 <04efca16325837bf807a153f8bf93e7e> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/AVConference.framework/AVConference
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c05c000 - 0x18c086fff ICE arm64 <1ca4c1ec411f36c88c2cb8cfb28f4036> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/ICE.framework/ICE
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c088000 - 0x18c089fff LegacyHandle arm64 <c7cc1e6fc8d33ffeaca9a10391caa68a> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/LegacyHandle.framework/LegacyHandle
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c08c000 - 0x18c097fff SimpleKeyExchange arm64 <e9eaf54a6a40311c8280a0e6ce3c3dfa> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/SimpleKeyExchange.framework/SimpleKeyExchange
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c098000 - 0x18c0a5fff ViceroyTrace arm64 <672c99725af83b188d2cb63c3ebbf55c> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/ViceroyTrace.framework/ViceroyTrace
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c0a8000 - 0x18c0a9fff snatmap arm64 <1fddff0779eb328da58cc9a1a9d3c7dc> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/snatmap.framework/snatmap
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c0ac000 - 0x18c133fff GameKitServices arm64 <ee7742f7c9873689bfda733002669244> /System/Library/PrivateFrameworks/GameKitServices.framework/GameKitServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c134000 - 0x18c14dfff GenerationalStorage arm64 <1c81a67fcf743b10aadd0733602b0f55> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c150000 - 0x18c465fff GeoServices arm64 <6860a0d7b14735088498b6e1fdd85cf7> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c468000 - 0x18c47bfff GraphicsServices arm64 <c8e71b1f19133b91b8df13682f1e1aab> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c5d8000 - 0x18c640fff Heimdal arm64 <7fcb4673b34b3574bfd2d91bca5922c1> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c754000 - 0x18c7f0fff HomeSharing arm64 <a0d3695ac0ec383a904d6e4687c441e6> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c85c000 - 0x18c8c7fff IDS arm64 <ed9d405a985a3941af3e6db253748a99> /System/Library/PrivateFrameworks/IDS.framework/IDS
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c8c8000 - 0x18c8f6fff IDSFoundation arm64 <4ee95c5666f632958590c215981008df> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c8f8000 - 0x18c964fff IMAVCore arm64 <a9cdd455056a3b168b73d9af310e6821> /System/Library/PrivateFrameworks/IMAVCore.framework/IMAVCore
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c968000 - 0x18ca2bfff IMCore arm64 <ee357545c0303fe1915c7381005c8892> /System/Library/PrivateFrameworks/IMCore.framework/IMCore
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18cadc000 - 0x18cb4dfff IMFoundation arm64 <f7757641510e335da816531dc45ed180> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18cb58000 - 0x18cb5ffff IOAccelerator arm64 <72a565cafaa03093b7d1037e40726131> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18cb64000 - 0x18cb6afff IOMobileFramebuffer arm64 <d1a0df802b7e39188c80cb58faac1657> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18cb6c000 - 0x18cb72fff IOSurface arm64 <91774664a18c36c281b2eb9e81d3de52> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18cb74000 - 0x18cb76fff IOSurfaceAccelerator arm64 <a1add5bb860e3f7990a12b6cda2a613f> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18cee8000 - 0x18ceeefff IncomingCallFilter arm64 <0c5aaba5e793382cbc4431b8ad3c8944> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18cef0000 - 0x18cef7fff IntlPreferences arm64 <49e13271cda633d5b42be71851781fe1> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18cef8000 - 0x18cf3dfff LanguageModeling arm64 <edc3b2d6626032c7890be3bd92246d7d> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18cfb0000 - 0x18cfbffff LegacyGameKit arm64 <7ed025f7f1e3316d87bf6dc5f09d87d4> /System/Library/PrivateFrameworks/LegacyGameKit.framework/LegacyGameKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18cfd0000 - 0x18d018fff MIME arm64 <dc59c38efcbe31e69d23d8fa39d8465a> /System/Library/PrivateFrameworks/MIME.framework/MIME
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d01c000 - 0x18d088fff MMCS arm64 <62e1b270e848396a9534959d02d2a831> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d10c000 - 0x18d11afff MailServices arm64 <0045602e038136bd9a5bda4edf7b5503> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d158000 - 0x18d216fff ManagedConfiguration arm64 <93da14baa11933b8b537ff385904f386> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d228000 - 0x18d229fff Marco arm64 <00d09b5750ef3bcabda1998c67f34c42> /System/Library/PrivateFrameworks/Marco.framework/Marco
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d22c000 - 0x18d29ffff MediaControlSender arm64 <920b4e2117943c928b224e776fdc9946> /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSender
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d3d4000 - 0x18d3edfff MediaRemote arm64 <900ee198a2c63702a370cb393e136d0b> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d3f0000 - 0x18d407fff MediaServices arm64 <bd7e16db517c33d9b78704c8f36613c5> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d470000 - 0x18d48cfff MediaStream arm64 <0696ce97c60c36619b579a94f6a696a7> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d490000 - 0x18d4f8fff IMAP arm64 <1712e429d8533d109fbc05d34ed1ded8> /System/Library/PrivateFrameworks/Message.framework/MailServices/IMAP.framework/IMAP
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d50c000 - 0x18d609fff Message arm64 <5bfe4514a10f3eed9b45b9dc6a78b278> /System/Library/PrivateFrameworks/Message.framework/Message
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d614000 - 0x18d617fff MessageSupport arm64 <c2f4cf9d10a63573b45c9d4338aa1870> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d628000 - 0x18d637fff MobileAsset arm64 <8c34f7f4f4a1304293f423b1821e82f8> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d63c000 - 0x18d663fff MobileBackup arm64 <0c8e81ae2a8c31a5be100cf9d11233fa> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d664000 - 0x18d670fff MobileBluetooth arm64 <a0b0c1f79ebf3dd9af04744fd02d4e81> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d684000 - 0x18d696fff MobileDeviceLink arm64 <59ee38d6292639eaab423a497e61ccc4> /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d698000 - 0x18d6a1fff MobileIcons arm64 <bb54a504e0d1378dbb9044f6897e2afb> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d6a4000 - 0x18d6adfff MobileInstallation arm64 <5d4e4da83c8a3db2ab5f034e86403fb1> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d6b0000 - 0x18d6bffff MobileKeyBag arm64 <7f5bc53f5b5e3a4ba3d6f2187f9843b2> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d6fc000 - 0x18d6fffff MobileSystemServices arm64 <a66207328c91314ca8f5b5673c6886ae> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d728000 - 0x18d739fff MobileWiFi arm64 <49f8a19209ff3cf3bdcf3dabd54e0d32> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d790000 - 0x18d9dcfff MusicLibrary arm64 <3f86c743dd68364da1194cc31d497179> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18db28000 - 0x18db41fff NanoRegistry arm64 <a4a6106d619d3ee79ba7ea38c472759a> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18db80000 - 0x18db86fff Netrb arm64 <4f48a3b90e7d3c43b2b79eab35431a9b> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18db88000 - 0x18db8ffff NetworkStatistics arm64 <ab85cfc6d943348faa5371ddc58fd1c0> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18db90000 - 0x18dbb2fff Notes arm64 <d52e49d1b4c43d13b42f4d90be3e7824> /System/Library/PrivateFrameworks/Notes.framework/Notes
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18dbbc000 - 0x18dbbffff OAuth arm64 <44d58e7860d43fb3be3fc4abbf61cee4> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18e388000 - 0x18e3d6fff OpenCL arm64 <1ab5694101233c949f4d1331dc698adc> /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18e5a0000 - 0x18e5c9fff PersistentConnection arm64 <8541bccb3f863f30adaa71090a91a0b3> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18e758000 - 0x18ea52fff PhotoLibraryServices arm64 <29434c6f5c693d59bdef874adc9b36c4> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18ea54000 - 0x18ea5dfff PhotosFormats arm64 <e4866c9b635d3dc68e045f7b769bedb8> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18ea60000 - 0x18eaadfff PhysicsKit arm64 <e79d438071203039b4ceca6fce968a1f> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18eab0000 - 0x18eacafff PlugInKit arm64 <c7ae82e096863a53b37af11fc2d77502> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18eacc000 - 0x18ead4fff PowerLog arm64 <ac4aa03cdcc632adab5800f2d97899b7> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18ed34000 - 0x18edfcfff Preferences arm64 <b84e044cd3093a25ad8a279d4f208463> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18ee4c000 - 0x18ef0dfff ProofReader arm64 <7af89c527b71341c8e685166ac38bccb> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18ef10000 - 0x18ef3dfff ProtectedCloudStorage arm64 <abbfc40cda2a3ac1b76dde12dcaf1cb1> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18ef40000 - 0x18ef4efff ProtocolBuffer arm64 <56d48177aa50371383e63388a8e01c21> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18ef90000 - 0x18f00efff Quagga arm64 <94ee5acdbe7d3967ba6dfff002cd9e54> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18f010000 - 0x18f019fff QuickLookThumbnailing arm64 <b0d2bbc1d9023fe1af9da4ffcf6fb2e3> /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18f280000 - 0x18f2c4fff RemoteUI arm64 <b335c109b396371b84c4b9304a781250> /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18f374000 - 0x18f41cfff SAObjects arm64 <e584cebb3cc73116afbde110dde1510d> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18f430000 - 0x18f454fff ScreenReaderCore arm64 <5c0c60ca352a36489f9d398af759acf3> /System/Library/PrivateFrameworks/ScreenReaderCore.framework/ScreenReaderCore
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18f614000 - 0x18f634fff SpringBoardServices arm64 <661f2b6deb433542bd0d28682940442a> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18fb00000 - 0x18fcbefff StoreServices arm64 <83dff8ec37a639298ca926de7d8b2e82> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18fdbc000 - 0x18fdbffff TCC arm64 <eb2b7f13d58e34da87f0045be28c0534> /System/Library/PrivateFrameworks/TCC.framework/TCC
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18fe94000 - 0x190c4dfff KBLayouts_iPhone.dylib arm64 <07b583f2e7053adb9381a737703778af> /System/Library/PrivateFrameworks/TextInput.framework/KBLayouts_iPhone.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x190c50000 - 0x190c7efff TextInput arm64 <1baafa7df6253019a0cc222397bee33c> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x190c80000 - 0x190c96fff TextToSpeech arm64 <8a30d1174ea9341f8ec84e56c7b1e428> /System/Library/PrivateFrameworks/TextToSpeech.framework/TextToSpeech
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x190d64000 - 0x190e3efff UIFoundation arm64 <c1787a92cfc234a0ac65ed9c7ac20508> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x190e70000 - 0x190e73fff UserFS arm64 <a0c74beff2a930d3b200e04cf822c03e> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x190e94000 - 0x191451fff VectorKit arm64 <e8167da795d73dccaeea11fd8c2c4977> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x191454000 - 0x1915a0fff VideoProcessing arm64 <2e33c870529831b88b437acd3331f07b> /System/Library/PrivateFrameworks/VideoProcessing.framework/VideoProcessing
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1916cc000 - 0x1916f0fff VoiceServices arm64 <534afa02be9f3fcc8c4929078a2ef8f5> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1917a4000 - 0x1917ccfff WebBookmarks arm64 <20dcb2682185313392a2430caa9f8586> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1917ec000 - 0x192725fff WebCore arm64 <2cafc73629b63314bb9cf3d59cd422a4> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x192728000 - 0x1927fafff WebKitLegacy arm64 <05808f603d3536b9a0a909d4993af62e> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x19299c000 - 0x19299dfff WirelessCoexManager arm64 <20179ac97ff43684aea9dec4317ebda2> /System/Library/PrivateFrameworks/WirelessCoexManager.framework/WirelessCoexManager
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1929a0000 - 0x1929d4fff WirelessDiagnostics arm64 <df454ac62af436e0b945b6bbd372a525> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1929f0000 - 0x1929f7fff XPCKit arm64 <70fdd30db3db3938838513b021c9927a> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1929f8000 - 0x192a01fff XPCObjects arm64 <f786286f7d14397d8a69a9a72960f9e0> /System/Library/PrivateFrameworks/XPCObjects.framework/XPCObjects
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x192c40000 - 0x192c6bfff iCalendar arm64 <bcbcc6b595d837ecbc49763b204a9069> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x192c98000 - 0x192cdefff iTunesStore arm64 <f4e658b0cd8a3a6e82c12f636c3f6c57> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1934d8000 - 0x1934f2fff libAWDProtobufFacetimeiMessage.dylib arm64 <88f43096a61136199efb498db67d9376> /usr/lib/libAWDProtobufFacetimeiMessage.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193678000 - 0x19369cfff libAWDSupportConfig.dylib arm64 <bd12281ac35d3edaa7dbfdf3bc848d22> /usr/lib/libAWDSupportConfig.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1936a0000 - 0x193832fff libAWDSupportFramework.dylib arm64 <e4ab68c95f523abaa42a4006e11f13f5> /usr/lib/libAWDSupportFramework.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193834000 - 0x193837fff libAWDSupportInfo.dylib arm64 <24a25f8c4a493812940ee10d09066adb> /usr/lib/libAWDSupportInfo.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193838000 - 0x19383afff libAXSafeCategoryBundle.dylib arm64 <bf9f62c2edbd39669aef7c98daae8270> /usr/lib/libAXSafeCategoryBundle.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x19383c000 - 0x193843fff libAXSpeechManager.dylib arm64 <1c11589dd20a301899628e423219f785> /usr/lib/libAXSpeechManager.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193844000 - 0x19384dfff libAccessibility.dylib arm64 <7ba92c39223036a486fd792666cf62b9> /usr/lib/libAccessibility.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193ae4000 - 0x193afffff libCRFSuite.dylib arm64 <5f450ea89bdc3d1eb2000a5671b0b5b9> /usr/lib/libCRFSuite.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193b44000 - 0x193c7bfff libFosl_dynamic.dylib arm64 <ebeb0a53a1d43d5b91765bb1ce416d07> /usr/lib/libFosl_dynamic.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193ca0000 - 0x193cbafff libMobileGestalt.dylib arm64 <95aecd87670331078a0a0c4df241af01> /usr/lib/libMobileGestalt.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193cbc000 - 0x193cc5fff libMobileGestaltExtensions.dylib arm64 <b0554dd008c83c9ca7ee73081ec534e0> /usr/lib/libMobileGestaltExtensions.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193cec000 - 0x193cedfff libSystem.B.dylib arm64 <c8f384fcfb6030eab8a9801af2699c9a> /usr/lib/libSystem.B.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193d70000 - 0x193dbefff libTelephonyUtilDynamic.dylib arm64 <804c43a06d2c39cba39cfb4a58ff93d0> /usr/lib/libTelephonyUtilDynamic.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193ee8000 - 0x193f12fff libarchive.2.dylib arm64 <4f80675864fc33049be3044502d3cd96> /usr/lib/libarchive.2.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193f14000 - 0x193f14fff libassertion_extension.dylib arm64 <07271aab0d6d324f99ae7d47a64d20bb> /usr/lib/libassertion_extension.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193f54000 - 0x193f64fff libbsm.0.dylib arm64 <7a4012e91967351ea55f4cb6fad6a2e9> /usr/lib/libbsm.0.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193f68000 - 0x193f78fff libbz2.1.0.dylib arm64 <3efd86b180f7329e8ea1e515fadb35c8> /usr/lib/libbz2.1.0.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193f7c000 - 0x193fd2fff libc++.1.dylib arm64 <69e62bc31eba32e591fa49ae45064642> /usr/lib/libc++.1.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193fd4000 - 0x193ff6fff libc++abi.dylib arm64 <37e33decd1ee3219bc23680232b92729> /usr/lib/libc++abi.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193ffc000 - 0x19400dfff libcmph.dylib arm64 <e9467fae1dd53a148c5c151109e5266a> /usr/lib/libcmph.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194010000 - 0x194018fff libcupolicy.dylib arm64 <f27f8eb226cd352f8c3b2cec2feb62f6> /usr/lib/libcupolicy.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194054000 - 0x194071fff libextension.dylib arm64 <d9c9d65b303f37e6a2bd3992c215f5f4> /usr/lib/libextension.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1940a0000 - 0x1940a5fff libheimdal-asn1.dylib arm64 <bd14b00086bd3bfb9770b3fb9d5a4e69> /usr/lib/libheimdal-asn1.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1940a8000 - 0x19419bfff libiconv.2.dylib arm64 <d3d3af911e6f3360b85b36fe4eb85b9d> /usr/lib/libiconv.2.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x19419c000 - 0x194383fff libicucore.A.dylib arm64 <0865e2749f213f1ca36e9d2645f8b29a> /usr/lib/libicucore.A.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194398000 - 0x194399fff liblangid.dylib arm64 <beb1b98c290835998ee303e5f51e1647> /usr/lib/liblangid.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x19439c000 - 0x1943a8fff liblockdown.dylib arm64 <d9b9965640023baabcc79d8756b60537> /usr/lib/liblockdown.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1943ac000 - 0x1943c5fff liblzma.5.dylib arm64 <b8e2d8c335b73e9b929efb2dbf9e3fa8> /usr/lib/liblzma.5.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x19479c000 - 0x1947b4fff libmis.dylib arm64 <856c30bc0897353b83beecf2bb98cda5> /usr/lib/libmis.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194800000 - 0x1949fcfff libobjc.A.dylib arm64 <7ffbdd0399053da98cabd7c7737a12bf> /usr/lib/libobjc.A.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194aa0000 - 0x194b09fff libprotobuf.dylib arm64 <7ea7a5503d9c392683a551101fc90e9b> /usr/lib/libprotobuf.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194b0c000 - 0x194b29fff libresolv.9.dylib arm64 <26dac143258831bc86f20a832eb157de> /usr/lib/libresolv.9.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194b5c000 - 0x194c3afff libsqlite3.dylib arm64 <f396c1e038653515ac519fd5f06cced2> /usr/lib/libsqlite3.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194c3c000 - 0x194c8efff libstdc++.6.dylib arm64 <52e4464418d639369d0c2bf4af8e3213> /usr/lib/libstdc++.6.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194c90000 - 0x194cc2fff libtidy.A.dylib arm64 <af2cf8953b393509820a8d68dc370cd7> /usr/lib/libtidy.A.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194cc4000 - 0x194ccdfff libtzupdate.dylib arm64 <7c282d8fb5f43733ac1161a5a63508d8> /usr/lib/libtzupdate.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194cd4000 - 0x194dc2fff libxml2.2.dylib arm64 <df52bf63916d3eacba12226725afa860> /usr/lib/libxml2.2.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194dc4000 - 0x194dedfff libxslt.1.dylib arm64 <3cff904bb0fc3b5980ddc5c746ede270> /usr/lib/libxslt.1.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194df0000 - 0x194e01fff libz.1.dylib arm64 <fe4d22c005983c9182d08fbdd35da43b> /usr/lib/libz.1.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194e04000 - 0x194e08fff libcache.dylib arm64 <99b0e521cc4b39aa846c3a364d3ef53b> /usr/lib/system/libcache.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194e0c000 - 0x194e18fff libcommonCrypto.dylib arm64 <9115f30c02b73d67b8b7606b3461a51e> /usr/lib/system/libcommonCrypto.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194e1c000 - 0x194e1ffff libcompiler_rt.dylib arm64 <18cf33250509384591474406ab5775e2> /usr/lib/system/libcompiler_rt.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194e20000 - 0x194e27fff libcopyfile.dylib arm64 <f906ee12512230f49ff254f8bc2ac6e8> /usr/lib/system/libcopyfile.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194e28000 - 0x194e82fff libcorecrypto.dylib arm64 <6ad40e2907ad3485abdf0cd7e256fb2d> /usr/lib/system/libcorecrypto.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194e84000 - 0x194eacfff libdispatch.dylib arm64 <d71cea387505363e97275b4106c771a6> /usr/lib/system/libdispatch.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194eb0000 - 0x194eb2fff libdyld.dylib arm64 <8a1a5fbff16b35998764bbcc85da4300> /usr/lib/system/libdyld.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194eb4000 - 0x194eb4fff liblaunch.dylib arm64 <3e2f385d96603a07a072d2a36c8d13aa> /usr/lib/system/liblaunch.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194eb8000 - 0x194ebdfff libmacho.dylib arm64 <6dc400b009e834719534acddc6ea4e6f> /usr/lib/system/libmacho.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194ec0000 - 0x194ec1fff libremovefile.dylib arm64 <97b4b3a0ceda34eba0381166e144d6b0> /usr/lib/system/libremovefile.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194ec4000 - 0x194ed9fff libsystem_asl.dylib arm64 <0b8c9605e76330f8a09cb0c07a6f48a7> /usr/lib/system/libsystem_asl.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194edc000 - 0x194eddfff libsystem_blocks.dylib arm64 <897a97cc50d33fb78932c91785615e6b> /usr/lib/system/libsystem_blocks.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194ee0000 - 0x194f60fff libsystem_c.dylib arm64 <f771fa3fb6c53d0b973d5f23d9f074f3> /usr/lib/system/libsystem_c.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194f64000 - 0x194f66fff libsystem_configuration.dylib arm64 <ca93ae6f1d0a34aa90989c804813312f> /usr/lib/system/libsystem_configuration.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194f68000 - 0x194f69fff libsystem_coreservices.dylib arm64 <cd7ac3a518883c388d6180aca4f00c1e> /usr/lib/system/libsystem_coreservices.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194f6c000 - 0x194f7cfff libsystem_coretls.dylib arm64 <67cce27ba556375c9783f51dc9b72060> /usr/lib/system/libsystem_coretls.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194f80000 - 0x194f88fff libsystem_dnssd.dylib arm64 <9a4f31aff83a3047b6153730b5c9520c> /usr/lib/system/libsystem_dnssd.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194f8c000 - 0x194fadfff libsystem_info.dylib arm64 <4ea83ee1bbcc33768e97512e3e993902> /usr/lib/system/libsystem_info.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194fb0000 - 0x194fd0fff libsystem_kernel.dylib arm64 <7cf1497db6fc3183a0a1727c91f6b2ed> /usr/lib/system/libsystem_kernel.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194fd4000 - 0x194ff0fff libsystem_m.dylib arm64 <cf62c29de6f03c7da503cb29a773a91e> /usr/lib/system/libsystem_m.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194ff4000 - 0x19500dfff libsystem_malloc.dylib arm64 <17c1054b47713b468db7660b20a7e56d> /usr/lib/system/libsystem_malloc.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x195010000 - 0x195047fff libsystem_network.dylib arm64 <c534ddf64b3d3c38ad39eb64bcfa2345> /usr/lib/system/libsystem_network.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x195048000 - 0x19504efff libsystem_networkextension.dylib arm64 <c15cfb4c42f63f849d72a3bdaa6d9af5> /usr/lib/system/libsystem_networkextension.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x195050000 - 0x19505afff libsystem_notify.dylib arm64 <f0228fae1f2e3bfcaeaaaba371da25c7> /usr/lib/system/libsystem_notify.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x19505c000 - 0x195060fff libsystem_platform.dylib arm64 <1a17d7e559c83b0a8059e81c2978eef2> /usr/lib/system/libsystem_platform.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x195064000 - 0x19506cfff libsystem_pthread.dylib arm64 <763451c05a4c32399f3295b04ff2de35> /usr/lib/system/libsystem_pthread.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x195070000 - 0x195072fff libsystem_sandbox.dylib arm64 <ff3a96b469e23dc485e14bf4c35b61dc> /usr/lib/system/libsystem_sandbox.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x195074000 - 0x195077fff libsystem_stats.dylib arm64 <fc1f75dbe19b32a682edd3d4ff71146b> /usr/lib/system/libsystem_stats.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x195078000 - 0x19507efff libsystem_trace.dylib arm64 <9040ad96fea73033b74de4dbb4846020> /usr/lib/system/libsystem_trace.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x195080000 - 0x195085fff libunwind.dylib arm64 <8b87982b31ad3569a95e75457cadba3e> /usr/lib/system/libunwind.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x195088000 - 0x1950abfff libxpc.dylib arm64 <c9f3c08a8a3b3849a905d24911240853> /usr/lib/system/libxpc.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone SpringBoard[54] <Warning>: Application ‘UIKitApplication:com.fredrik.typeworld[0x5481]’ crashed.
Aug 18 13:32:00 Fredrik-sin-iPhone assertiond[64] <Warning>: pid_suspend failed for <BKNewProcess: 0x14fe51ab0; com.fredrik.typeworld; pid: 2290; hostpid: -1>: Unknown error: -1, Unknown error: -1
Aug 18 13:32:00 Fredrik-sin-iPhone assertiond[64] <Warning>: Could not set priority of <BKNewProcess: 0x14fe51ab0; com.fredrik.typeworld; pid: 2290; hostpid: -1> to 2, priority: No such process
Aug 18 13:32:00 Fredrik-sin-iPhone assertiond[64] <Warning>: Could not set priority of <BKNewProcess: 0x14fe51ab0; com.fredrik.typeworld; pid: 2290; hostpid: -1> to 4096, priority: No such process
Aug 18 13:32:00 Fredrik-sin-iPhone profiled[120] <Error>: MKBDeviceGetGracePeriod: MKBDeviceGetGracePeriod() => (0,0,0)
Aug 18 13:32:00 Fredrik-sin-iPhone limitadtrackingd[1623] <Warning>: Not scheduling a new BTA job; keeping previously scheduled job should run after 1s from now when the network is available.
Aug 18 13:32:13 Fredrik-sin-iPhone assistant_service[729] <Warning>: the local store doesn’t allow tasks and we have no default calendar
Aug 18 13:32:13 Fredrik-sin-iPhone assistant_service[729] <Warning>: Error getting NanoAppRegistry workspace info: Error Domain=NSCocoaErrorDomain Code=4099 “Handlingen kunne ikke fullføres. (Cocoa-feil 4099)” (The connection to service named com.apple.nanoappregistry.workspace was invalidated.) UserInfo=0x13570b570 {NSDebugDescription=The connection to service named com.apple.nanoappregistry.workspace was invalidated.}
Aug 18 13:32:17 Fredrik-sin-iPhone kernel[0] <Notice>: IOReturn IOAsynchronousScheduler::checkAndQueueArgument(IOAsynchronousScheduler::ArgumentEntry *): max argument count (128) reached. Notify a few first.
Aug 18 13:32:19 Fredrik-sin-iPhone kernel[0] <Notice>: IOReturn IOAsynchronousScheduler::checkAndQueueArgument(IOAsynchronousScheduler::ArgumentEntry *): max argument count (128) reached. Notify a few first.
Aug 18 13:32:22 Fredrik-sin-iPhone kernel[0] <Notice>: IOReturn IOAsynchronousScheduler::checkAndQueueArgument(IOAsynchronousScheduler::ArgumentEntry *): max argument count (128) reached. Notify a few first.
Aug 18 13:32:23 Fredrik-sin-iPhone kernel[0] <Notice>: AppleARMPMUCharger: limiting USB input current to 1400 mA (measured 1060 mA)
Aug 18 13:32:23 Fredrik-sin-iPhone kernel[0] <Notice>: AppleARMPMUCharger: limiting USB input current to 1300 mA (measured 1068 mA)
Aug 18 13:32:26 Fredrik-sin-iPhone kernel[0] <Notice>: IOReturn IOAsynchronousScheduler::checkAndQueueArgument(IOAsynchronousScheduler::ArgumentEntry *): max argument count (128) reached. Notify a few first.
Aug 18 13:32:28 Fredrik-sin-iPhone kernel[0] <Notice>: IOReturn IOAsynchronousScheduler::checkAndQueueArgument(IOAsynchronousScheduler::ArgumentEntry *): max argument count (128) reached. Notify a few first.
Aug 18 13:32:29 Fredrik-sin-iPhone locationd[61] <Notice>: Gesture EnabledForTopCLient: 0, EnabledInDaemonSettings: 0
Aug 18 13:32:40 Fredrik-sin-iPhone syncdefaultsd[2283] <Notice>: (Note ) marked “com.me.keyvalueservice” topic as “opportunistic” on <APSConnection: 0x13ce24960>
Aug 18 13:32:46 Fredrik-sin-iPhone locationd[61] <Notice>: Gesture EnabledForTopCLient: 0, EnabledInDaemonSettings: 0
Aug 18 13:32:47 Fredrik-sin-iPhone kernel[0] <Notice>: IOReturn IOAsynchronousScheduler::checkAndQueueArgument(IOAsynchronousScheduler::ArgumentEntry *): max argument count (128) reached. Notify a few first.
Aug 18 13:32:47 Fredrik-sin-iPhone locationd[61] <Notice>: Gesture EnabledForTopCLient: 0, EnabledInDaemonSettings: 0
Aug 18 13:32:47 Fredrik-sin-iPhone limitadtrackingd[1623] <Warning>: Lost connection from Limit Ad Tracking client.
Aug 18 13:32:47 Fredrik-sin-iPhone limitadtrackingd[1623] <Warning>: Lost connection from Limit Ad Tracking client.
Aug 18 13:32:48 Fredrik-sin-iPhone SpringBoard[54] <Warning>: Application ‘UIKitApplication:com.apple.AdSheetPhone[0x9bde]’ exited voluntarily.
Aug 18 13:32:48 Fredrik-sin-iPhone assertiond[64] <Warning>: pid_suspend failed for <BKNewProcess: 0x14fd50840; com.apple.AdSheetPhone; pid: 2291; hostpid: -1>: Unknown error: -1, Unknown error: -1
Aug 18 13:32:48 Fredrik-sin-iPhone assertiond[64] <Warning>: Could not set priority of <BKNewProcess: 0x14fd50840; com.apple.AdSheetPhone; pid: 2291; hostpid: -1> to 2, priority: No such process
Aug 18 13:32:48 Fredrik-sin-iPhone assertiond[64] <Warning>: Could not set priority of <BKNewProcess: 0x14fd50840; com.apple.AdSheetPhone; pid: 2291; hostpid: -1> to 4096, priority: No such process
Aug 18 13:32:51 Fredrik-sin-iPhone wirelessproxd[55] <Notice>: (Error) updateScanner - central is not powered on: 4
Aug 18 13:33:00 Fredrik-sin-iPhone kernel[0] <Notice>: AppleMultitouchN1SPI: updating power statistics
Aug 18 13:33:00 Fredrik-sin-iPhone SpringBoard[54] <Warning>: [MPUSystemMediaControls] Disabling lock screen media controls updates for screen turning off.
Aug 18 13:33:00 Fredrik-sin-iPhone backboardd[57] <Notice>: MultitouchHID: detection mode: 3->255
Aug 18 13:33:01 Fredrik-sin-iPhone SpringBoard[54] <Notice>: (Note ) MC: Locking device.
Aug 18 13:33:01 Fredrik-sin-iPhone wirelessproxd[55] <Notice>: (Error) updateScanner - central is not powered on: 4
Aug 18 13:33:01 Fredrik-sin-iPhone SpringBoard[54] <Warning>: [MPUSystemMediaControls] Updating supported commands for now playing application.
Aug 18 13:33:01 Fredrik-sin-iPhone UserEventAgent[20] <Error>: LockStateNotifier aksNotificationCallback posting notification: com.apple.mobile.keybagd.lock_status
Aug 18 13:33:01 Fredrik-sin-iPhone SpringBoard[54] <Notice>: (Note ) MC: Locking device.
Aug 18 13:33:01 Fredrik-sin-iPhone UserEventAgent[20] <Notice>: (Note ) PIH: Lock status changed.
Aug 18 13:33:01 Fredrik-sin-iPhone locationd[61] <Warning>: notify name “com.apple.locationd.DumpDiagnostics” has been registered 40 times - this may be a leak
Aug 18 13:33:01 Fredrik-sin-iPhone SpringBoard[54] <Warning>: Telling backboard to enable secure lock screen.
Aug 18 13:33:01 Fredrik-sin-iPhone cloudd[163] <Notice>: (Note ) MC: User has completed cloud configuration. Not showing UI again.
Aug 18 13:33:01 Fredrik-sin-iPhone backupd[2294] <Warning>: INFO: Exporting keychain
Aug 18 13:33:07 Fredrik-sin-iPhone cloudd[163] <Notice>: (Note ) MC: User has completed cloud configuration. Not showing UI again.
Aug 18 13:33:11 Fredrik-sin-iPhone kernel[0] <Notice>: AppleKeyStore:Sending lock change 1 for handle 0
Aug 18 13:33:11 Fredrik-sin-iPhone UserEventAgent[20] <Error>: LockStateNotifier aksNotificationCallback posting notification: com.apple.mobile.keybagd.lock_status
Aug 18 13:33:11 Fredrik-sin-iPhone SpringBoard[54] <Warning>: Telling backboard to enable secure lock screen.
Aug 18 13:33:11 Fredrik-sin-iPhone UserEventAgent[20] <Notice>: (Note ) PIH: Lock status changed.
Aug 18 13:33:11 Fredrik-sin-iPhone cloudd[163] <Notice>: (Note ) MC: User has completed cloud configuration. Not showing UI again.
Aug 18 13:33:17 Fredrik-sin-iPhone cloudd[163] <Notice>: (Note ) MC: User has completed cloud configuration. Not showing UI again.
Hi Fredrik,
What device are you testing on? I just ran your exact code in “main.lua” and it works perfectly on my iPhone 5. The new contact is added to my contacts app, and the app does not crash.
The only “change” I made was that I didn’t use your entire “build.settings” file… I just included the Address Book plugin within an existing (and extremely basic) “build.settings” file.
Brent
Hello again, im testing on my Iphone 6. Can i have your build.settings file so that i can test exactly what you tested?
I used basically the most simple “build.settings” possible, as posted below.
By the way, what version of iOS is your phone running? Mine is using 8.4.
[lua]
settings =
{
orientation =
{
default = “portrait”,
supported = { “portrait”, “portraitUpsideDown” }
},
plugins = {
[“CoronaProvider.native.popup.addressbook”] =
{
publisherId = “com.coronalabs”,
supportedPlatforms = { iphone=true, [“iphone-sim”]=true },
}
},
}
[/lua]
Okey this is weird, I asked my buddy to test the same application, and for him it is working. Im using 8.4 not 8.4.1.
Even the version with the “simplified” build settings is still crashing for you?
I’m also using 8.4, not 8.4.1…
Best regards,
Brent
You will need to provide more information including the actual code you’re using, your build.settings file, what device(s) you’re testing on, what version of Corona SDK you’re using.
It will also help if you tether your device to your computer running Xcode and look for errors in the console log.
If you need help with it see: http://docs.coronalabs.com/guide/basics/debugging/index.html
Rob
Okey here is the code i am using: [lua]
local function onComplete( event )
composer.gotoScene( “view1” )
end
newContactOptions =
{
option = “newContact”,
listener = onComplete,
data =
{
–Names
firstName = “somename”,
lastName = “somelastname”,
– Emails
homeEmail = “someemail”,
– Phone
phoneIphone = “somenumber”
},
}
local function addcontact( event )
if event.phase == “ended” then
native.showPopup( “addressbook”, newContactOptions )
end
end
local addtoContact = widget.newButton
{
width = 300,
height = 59,
defaultFile = “images/submit.png”,
overFile = “images/submit.png”,
font = “Early Times Light Demo”,
label = “Add”,
labelColor = { default={ 1, 1, 1 }, over={ 0, 0, 0, 0.5 } },
onEvent = addcontact
}
addtoContact.anchorX = 0
addtoContact.x = -5
addtoContact.y = sh/2 + 120
[/lua]
So everything works smoothly until i press done in the contactpage, then it crashes…
this is my build.settings:
[lua]
–
– For more information on build.settings see the Corona SDK Build Guide at:
– http://docs.coronalabs.com/guide/distribution/buildSettings/index.html
–
settings =
{
orientation =
{
– Supported values for orientation:
– portrait, portraitUpsideDown, landscapeLeft, landscapeRight
default = “portrait”,
supported = { “portrait”, }
},
excludeFiles =
{
– Include only the necessary icon files on each platform
iphone = { “Icon-*dpi.png”, },
android = { “Icon.png”, “Icon-Small-*.png”, “Icon*@2x.png”, },
},
–
– iOS Section
–
iphone =
{
plist =
{
UIStatusBarHidden = false,
UIPrerenderedIcon = true, – set to false for “shine” overlay
–UIApplicationExitsOnSuspend = true, – uncomment to quit app on suspend
CFBundleIconFiles =
{
“Icon.png”,
“Icon@2x.png”,
“Icon-60.png”,
“Icon-60@2x.png”,
“Icon-60@3x.png”,
“Icon-72.png”,
“Icon-72@2x.png”,
“Icon-76.png”,
“Icon-76@2x.png”,
“Icon-Small.png”,
“Icon-Small@2x.png”,
“Icon-Small@3x.png”,
“Icon-Small-40.png”,
“Icon-Small-40@2x.png”,
“Icon-Small-50.png”,
“Icon-Small-50@2x.png”,
},
UIAppFonts =
{
“gaban-outline-regular-FFP.ttf”,
“Early Times_light Demo.otf”
},
–[[
– iOS app URL schemes:
CFBundleURLTypes =
{
{
CFBundleURLSchemes =
{
“fbXXXXXXXXX”, – replace XXXXXXXXX with your Facebook appId
}
}
}
–]]
}
},
plugins = {
[“CoronaProvider.native.popup.addressbook”] =
{
publisherId = “com.coronalabs”,
supportedPlatforms = { iphone=true, [“iphone-sim”]=true },
}
},
–
– Android Section
–
android =
{
usesPermissions =
{
“android.permission.INTERNET”,
},
},
}
[/lua]
–Fredrik
Hi Fredrik,
Thanks for the code, that helps somewhat. But, can you check if you’re seeing any error reports in the Xcode console when you run the app on a device (plugged into the computer) and monitor the console output as you perform actions?
Thanks,
Brent
This is what the console say when i press the done button:
EnabledInDaemonSettings: 0
Aug 18 13:31:56 Fredrik-sin-iPhone locationd[61] <Notice>: Gesture EnabledForTopCLient: 0, EnabledInDaemonSettings: 0
Aug 18 13:31:58 Fredrik-sin-iPhone limitadtrackingd[1623] <Warning>: BTA job for refreshing Limit Ad Tracking status calling out to AdSheet, will launch if needed.
Aug 18 13:31:58 Fredrik-sin-iPhone AdSheet[2291] <Error>: assertion failed: 12H143: libxpc.dylib + 71768 [C9F3C08A-8A3B-3849-A905-D24911240853]: 0x7d
Aug 18 13:31:58 Fredrik-sin-iPhone Unknown[2291] <Error>:
Aug 18 13:31:58 Fredrik-sin-iPhone UserEventAgent[20] <Warning>: Tracking com.apple.AdSheetPhone (via activity)
Aug 18 13:31:58 Fredrik-sin-iPhone limitadtrackingd[1623] <Warning>: Not scheduling a new BTA job; keeping previously scheduled job should run after 3s from now when the network is available.
Aug 18 13:31:59 Fredrik-sin-iPhone kernel[0] <Notice>: IOReturn IOAsynchronousScheduler::checkAndQueueArgument(IOAsynchronousScheduler::ArgumentEntry *): max argument count (128) reached. Notify a few first.
Aug 18 13:31:59 Fredrik-sin-iPhone ReportCrash[2293] <Error>: task_set_exception_ports(B07, 400, D03, 0, 0) failed with error (4: (os/kern) invalid argument)
Aug 18 13:31:59 Fredrik-sin-iPhone ReportCrash[2293] <Notice>: ReportCrash acting against PID 2290
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Notice>: Formulating crash report for process testContacts[2290]
Aug 18 13:32:00 Fredrik-sin-iPhone com.apple.accessibility.AccessibilityUIServer[135] <Warning>: Lost connection with client.
Aug 18 13:32:00 Fredrik-sin-iPhone com.apple.xpc.launchd[1] (UIKitApplication:com.fredrik.typeworld[0x5481][2290]) <Notice>: Service exited due to signal: Segmentation fault: 11
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Not saving crash log because we have reached the limit for logs to store on disk. Sync or otherwise clear logs from /var/mobile/Library/Logs/CrashReporter to save new logs.
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Could not save crash report to disk!
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Incident Identifier: 5F91C0DB-169E-4BDC-AA55-536C751AC51E
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: CrashReporter Key: d5f629936646177b09daf14672f83114be8b9364
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Hardware Model: iPhone7,2
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Process: testContacts [2290]
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Path: /private/var/mobile/Containers/Bundle/Application/2F19E7C0-FB73-433B-BD47-09C22D4D2B7C/testContacts.app/testContacts
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Identifier: testContacts
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Version: ???
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Code Type: ARM-64 (Native)
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Parent Process: launchd [1]
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Date/Time: 2015-08-18 13:31:59.986 +0200
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Launch Time: 2015-08-18 13:30:53.824 +0200
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: OS Version: iOS 8.4 (12H143)
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Report Version: 105
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Exception Subtype: KERN_INVALID_ADDRESS at 0x0000000000000000
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Triggered by Thread: 0
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 0 name: Dispatch queue: com.apple.main-thread
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 0 Crashed:
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0 libsystem_c.dylib 0x0000000194ee16ac 0x194ee0000 + 5804
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 1 testContacts 0x00000001000c2f28 0x100050000 + 470824
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 2 testContacts 0x0000000100186ef8 0x100050000 + 1273592
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 3 UIKit 0x00000001878bac40 0x1875a4000 + 3238976
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 4 UIKit 0x0000000187ca9f98 0x1875a4000 + 7364504
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 5 UIKit 0x00000001878bd0bc 0x1875a4000 + 3248316
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 6 UIKit 0x00000001876d6f60 0x1875a4000 + 1257312
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 7 UIKit 0x00000001876d6790 0x1875a4000 + 1255312
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 8 UIKit 0x00000001875ec26c 0x1875a4000 + 295532
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 9 UIKit 0x00000001875ec174 0x1875a4000 + 295284
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 10 QuartzCore 0x0000000186ef5628 0x186ee0000 + 87592
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 11 libdispatch.dylib 0x0000000194e85950 0x194e84000 + 6480
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 12 libdispatch.dylib 0x0000000194e8a208 0x194e84000 + 25096
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 13 CoreFoundation 0x0000000182af37f4 0x182a14000 + 915444
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 14 CoreFoundation 0x0000000182af189c 0x182a14000 + 907420
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 15 CoreFoundation 0x0000000182a1d2d0 0x182a14000 + 37584
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 16 GraphicsServices 0x000000018c4736f8 0x18c468000 + 46840
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 17 UIKit 0x000000018761af3c 0x1875a4000 + 487228
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 18 testContacts 0x0000000100056fa8 0x100050000 + 28584
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 19 libdyld.dylib 0x0000000194eb2a04 0x194eb0000 + 10756
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 1 name: Dispatch queue: com.apple.libdispatch-manager
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 1:
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0 libsystem_kernel.dylib 0x0000000194fb0c24 0x194fb0000 + 3108
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 1 libdispatch.dylib 0x0000000194e95e6c 0x194e84000 + 73324
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 2 libdispatch.dylib 0x0000000194e87998 0x194e84000 + 14744
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 2 name: com.apple.NSURLConnectionLoader
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 2:
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0 libsystem_kernel.dylib 0x0000000194fb0e0c 0x194fb0000 + 3596
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 1 libsystem_kernel.dylib 0x0000000194fb0c84 0x194fb0000 + 3204
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 2 CoreFoundation 0x0000000182af3720 0x182a14000 + 915232
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 3 CoreFoundation 0x0000000182af1674 0x182a14000 + 906868
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 4 CoreFoundation 0x0000000182a1d2d0 0x182a14000 + 37584
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 5 CFNetwork 0x00000001824fa590 0x18245c000 + 648592
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 6 Foundation 0x0000000183a3ddb4 0x183948000 + 1007028
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 7 libsystem_pthread.dylib 0x0000000195067dc4 0x195064000 + 15812
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 8 libsystem_pthread.dylib 0x0000000195067d20 0x195064000 + 15648
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 9 libsystem_pthread.dylib 0x0000000195064ef4 0x195064000 + 3828
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 3 name: com.apple.CFSocket.private
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 3:
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0 libsystem_kernel.dylib 0x0000000194fcb498 0x194fb0000 + 111768
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 1 CoreFoundation 0x0000000182af9124 0x182a14000 + 938276
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 2 libsystem_pthread.dylib 0x0000000195067dc4 0x195064000 + 15812
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 3 libsystem_pthread.dylib 0x0000000195067d20 0x195064000 + 15648
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 4 libsystem_pthread.dylib 0x0000000195064ef4 0x195064000 + 3828
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 4:
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0 libsystem_kernel.dylib 0x0000000194fcbc78 0x194fb0000 + 113784
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 1 libsystem_pthread.dylib 0x00000001950652d8 0x195064000 + 4824
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 2 libsystem_pthread.dylib 0x0000000195064eec 0x195064000 + 3820
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 5:
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0 libsystem_kernel.dylib 0x0000000194fcbc78 0x194fb0000 + 113784
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 1 libsystem_pthread.dylib 0x00000001950652d8 0x195064000 + 4824
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 2 libsystem_pthread.dylib 0x0000000195064eec 0x195064000 + 3820
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 6:
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0 libsystem_kernel.dylib 0x0000000194fcbc78 0x194fb0000 + 113784
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 1 libsystem_pthread.dylib 0x00000001950652d8 0x195064000 + 4824
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 2 libsystem_pthread.dylib 0x0000000195064eec 0x195064000 + 3820
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 7:
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0 libsystem_kernel.dylib 0x0000000194fcbc78 0x194fb0000 + 113784
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 1 libsystem_pthread.dylib 0x00000001950652d8 0x195064000 + 4824
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 2 libsystem_pthread.dylib 0x0000000195064eec 0x195064000 + 3820
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 8:
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0 libsystem_kernel.dylib 0x0000000194fb0e0c 0x194fb0000 + 3596
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 1 libsystem_kernel.dylib 0x0000000194fb0c84 0x194fb0000 + 3204
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 2 CoreFoundation 0x0000000182af3720 0x182a14000 + 915232
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 3 CoreFoundation 0x0000000182af1674 0x182a14000 + 906868
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 4 CoreFoundation 0x0000000182a1d2d0 0x182a14000 + 37584
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 5 Foundation 0x00000001839554c4 0x183948000 + 54468
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 6 Foundation 0x0000000183977a5c 0x183948000 + 195164
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 7 AssistantServices 0x0000000188f7f2e8 0x188f70000 + 62184
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 8 Foundation 0x0000000183a3ddb4 0x183948000 + 1007028
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 9 libsystem_pthread.dylib 0x0000000195067dc4 0x195064000 + 15812
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 10 libsystem_pthread.dylib 0x0000000195067d20 0x195064000 + 15648
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 11 libsystem_pthread.dylib 0x0000000195064ef4 0x195064000 + 3828
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Thread 0 crashed with ARM Thread State (64-bit):
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: x0: 0x0000000000000000 x1: 0x0000000000000000 x2: 0x0000000000000000 x3: 0x0000000000000000
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: x4: 0x000000000000006d x5: 0x000000000000006d x6: 0x0000000000000000 x7: 0x0000000000000006
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: x8: 0x000000012f074250 x9: 0x000000010026dbd0 x10: 0x00000001701fae00 x11: 0x000000040000000f
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: x12: 0x00000001701faef0 x13: 0x000021a50026dbd1 x14: 0x0000000000000015 x15: 0x0000000000000000
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: x16: 0x0000000194ee16a0 x17: 0x00000001001878a8 x18: 0x0000000000000000 x19: 0x000000012e513fb0
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: x20: 0x0000000000000000 x21: 0x000000012f074230 x22: 0x000000012e513fb0 x23: 0x000000012e513fb0
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: x24: 0x0000000000000000 x25: 0x0000000100196d3f x26: 0x0000000187d8c2cc x27: 0x000000010025b530
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: x28: 0x000000010025b550 fp: 0x000000016fdae2b0 lr: 0x00000001000c2f2c
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: sp: 0x000000016fdae2b0 pc: 0x0000000194ee16ac cpsr: 0x20000000
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: Binary Images:
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x100050000 - 0x10024bfff testContacts arm64 <1a84c181eda231c08b0d7a1863ab419b> /var/mobile/Containers/Bundle/Application/2F19E7C0-FB73-433B-BD47-09C22D4D2B7C/testContacts.app/testContacts
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x12006c000 - 0x120093fff dyld arm64 <de589e6153453237a6cf724cb236d83c> /usr/lib/dyld
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x180e34000 - 0x180e3cfff AccessibilitySettingsLoader arm64 <928bcadf4a553591969f7e6c568322fd> /System/Library/AccessibilityBundles/AccessibilitySettingsLoader.bundle/AccessibilitySettingsLoader
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181228000 - 0x1812c5fff AGXGLDriver arm64 <9c69f9873c1935c3bc4b1b103e8a5c24> /System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1812e0000 - 0x181474fff AVFoundation arm64 <b9c4b32ba43a3a798c4adcaad3608f52> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181478000 - 0x1814dcfff libAVFAudio.dylib arm64 <6667f63f0f1635668dc941d6b79062e1> /System/Library/Frameworks/AVFoundation.framework/libAVFAudio.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181520000 - 0x181520fff Accelerate arm64 <8e155c8b26b133a28f7578ef67aacc38> /System/Library/Frameworks/Accelerate.framework/Accelerate
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181538000 - 0x181757fff vImage arm64 <ae4967d90e203915844595106621248c> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181758000 - 0x1817fffff libBLAS.dylib arm64 <c76e3b9f617f3b8abe0975eb44a546ba> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181800000 - 0x181b7afff libLAPACK.dylib arm64 <34e9544bc97d3874868cb323ccea01d5> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181b7c000 - 0x181b91fff libLinearAlgebra.dylib arm64 <a16ca4f52bb233f38326d86ecec2f89e> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181b94000 - 0x181bfcfff libvDSP.dylib arm64 <ed13c497f1663e31acf3ff5b430b440b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181c00000 - 0x181c23fff libvMisc.dylib arm64 <ea6bd9d3c6a13397a7ecb62872ca4540> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181c24000 - 0x181c24fff vecLib arm64 <a22b49310b0e300bbf4b313623aa8c1f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181c28000 - 0x181c57fff Accounts arm64 <8f57e639af9b3437afc70315f6cb6579> /System/Library/Frameworks/Accounts.framework/Accounts
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181c5c000 - 0x181cdafff AddressBook arm64 <da906094da223e4b801b5cb20ca4334d> /System/Library/Frameworks/AddressBook.framework/AddressBook
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181cdc000 - 0x181e2ffff AddressBookUI arm64 <e8073e9b5ccd359a896a1ff55d2bc104> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181e30000 - 0x181e44fff AssetsLibrary arm64 <f6964034402b34ceb6214fc34ff9adf8> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x181ff8000 - 0x1822b8fff AudioToolbox arm64 <903862eef2fc3a70ad514658efee8da2> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18245c000 - 0x182672fff CFNetwork arm64 <7bbb801481353aafaa7c6afccc74df63> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x182674000 - 0x182710fff CloudKit arm64 <7dd609fe2e1a3eac8ba447015c0438a1> /System/Library/Frameworks/CloudKit.framework/CloudKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x182714000 - 0x182779fff CoreAudio arm64 <8e96790e0bf33804b77309eb397e8c67> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1827a0000 - 0x1827c1fff CoreBluetooth arm64 <b5932299bce73e438a13380d5948cbe4> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1827c4000 - 0x182a10fff CoreData arm64 <5002b1ea89773ecda7ec6e41067538c1> /System/Library/Frameworks/CoreData.framework/CoreData
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x182a14000 - 0x182d72fff CoreFoundation arm64 <72f7e261b2ec35e39e44417e4d77a241> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x182d74000 - 0x182ed6fff CoreGraphics arm64 <b3172ddbeb013c8fbd7211379f8bd7c7> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x182f2c000 - 0x182f2efff libCGXType.A.dylib arm64 <ace81a19ecaa3291a3da637556346b56> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGXType.A.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x182f30000 - 0x182f3bfff libCMSBuiltin.A.dylib arm64 <278f7ed331913c90ab67600e79dd8e83> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCMSBuiltin.A.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183130000 - 0x18314efff libRIP.A.dylib arm64 <7ff7d3669ea33b859e527022cf1b7203> /System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183150000 - 0x183282fff CoreImage arm64 <25cc829ab7273a9a9de4ff5b377882d3> /System/Library/Frameworks/CoreImage.framework/CoreImage
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183284000 - 0x1832e2fff CoreLocation arm64 <9da0011e907f3e84a2d4634b6616e299> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18331c000 - 0x1833dffff CoreMedia arm64 <1dedaec0d2b03759a11aeeb3b306c028> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1833e0000 - 0x1834cefff CoreMotion arm64 <9c69b3db77913dd3a255e0cf2fd73e88> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1834d0000 - 0x183541fff CoreTelephony arm64 <0b060676f3083a04adc5b79be4a31847> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183544000 - 0x18364dfff CoreText arm64 <e4088a6927f93145a6ffd47810722c4d> /System/Library/Frameworks/CoreText.framework/CoreText
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183650000 - 0x18366dfff CoreVideo arm64 <7c508da36b633cb2903522517e16ff9b> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183670000 - 0x183794fff EventKit arm64 <3e7fb2dfc9e63c168c9d507b069a37d6> /System/Library/Frameworks/EventKit.framework/EventKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183948000 - 0x183ba0fff Foundation arm64 <2a3175fa0a68365185275bdb7cbfa05e> /System/Library/Frameworks/Foundation.framework/Foundation
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183ba4000 - 0x183bd0fff GLKit arm64 <c465724c11c13316baa37bac04e50869> /System/Library/Frameworks/GLKit.framework/GLKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183bd4000 - 0x183bfdfff GSS arm64 <342060f94f313c1a944b6282469eb3fe> /System/Library/Frameworks/GSS.framework/GSS
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183c14000 - 0x183c14fff GameKit arm64 <6099df0693003655bd58f53667c02fe7> /System/Library/Frameworks/GameKit.framework/GameKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183ce8000 - 0x183d53fff IOKit arm64 <93f08e651bc8323b961363e1f750679a> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183d54000 - 0x183ff7fff ImageIO arm64 <36422dc9c8cd328287d1d0f22184e59c> /System/Library/Frameworks/ImageIO.framework/ImageIO
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x183ff8000 - 0x184499fff JavaScriptCore arm64 <3e311bc753f4342e8eb73a66a127708f> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x184cb8000 - 0x184dd1fff MapKit arm64 <a9dcd37078893b05ac8eb2d3a6e5b626> /System/Library/Frameworks/MapKit.framework/MapKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x184dd4000 - 0x184ddafff MediaAccessibility arm64 <6e2d93cf513b34b4814cccaa0ee052fc> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x184ddc000 - 0x185049fff MediaPlayer arm64 <4859ba312bc33e4bb7d208ef0b3cdbb6> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18504c000 - 0x185449fff MediaToolbox arm64 <f7a1725923c439e9b12b1abec15cc6b4> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18544c000 - 0x185520fff MessageUI arm64 <c026ed50c9e933b78c4c19fd10a7ad0a> /System/Library/Frameworks/MessageUI.framework/MessageUI
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x185524000 - 0x18559cfff Metal arm64 <c748163697153214b44cb611f320842e> /System/Library/Frameworks/Metal.framework/Metal
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1855a0000 - 0x185651fff MobileCoreServices arm64 <057efd9a73913661bf53c363542f37f3> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x185780000 - 0x1857b5fff OpenAL arm64 <390bf79770fe3e6b8448584cbfbd6462> /System/Library/Frameworks/OpenAL.framework/OpenAL
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1867d4000 - 0x1868c9fff GLEngine arm64 <21e690670518358fa466ca531b48c42e> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1868cc000 - 0x1868d6fff OpenGLES arm64 <1d09c82abb193352b8af2b4d0407a0d9> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1868dc000 - 0x1868ddfff libCVMSPluginSupport.dylib arm64 <d1b07ee726353813b12a976727b445e4> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1868e0000 - 0x1868e3fff libCoreFSCache.dylib arm64 <0aafb4815583348eb86a7015eb63e548> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1868e4000 - 0x1868e8fff libCoreVMClient.dylib arm64 <2069956fa09636cbbe074632eb43a51e> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1868ec000 - 0x1868f6fff libGFXShared.dylib arm64 <32e8a868d2573280a6cf5edd7643ec8c> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1868f8000 - 0x186943fff libGLImage.dylib arm64 <a16fb90cf2853d748e186a4d68bf2f7c> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x186944000 - 0x186abffff libGLProgrammability.dylib arm64 <ad749ecaad043374babe1f7b30e7a758> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x186ee0000 - 0x187072fff QuartzCore arm64 <aefa801417433ff5a428960e1793cbfe> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x187074000 - 0x1870c0fff QuickLook arm64 <56bde4f644ef34e9996ba1285f7f5101> /System/Library/Frameworks/QuickLook.framework/QuickLook
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1872f8000 - 0x187358fff Security arm64 <a163bf89604b3c9fa3faacaf6705da01> /System/Library/Frameworks/Security.framework/Security
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18735c000 - 0x1873f2fff Social arm64 <52fa8db98f133dfea1a61bac5f75099b> /System/Library/Frameworks/Social.framework/Social
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x187510000 - 0x187528fff StoreKit arm64 <9b94e9ed4c2a3f8eb57f168f1a0f8576> /System/Library/Frameworks/StoreKit.framework/StoreKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18752c000 - 0x18759ffff SystemConfiguration arm64 <04aaeaf32285398ba5a7e201c59ae353> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1875a0000 - 0x1875a1fff Twitter arm64 <028f6406ed453837a5a289ac8fa5e265> /System/Library/Frameworks/Twitter.framework/Twitter
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1875a4000 - 0x187f24fff UIKit arm64 <dfc56cb257923125b61cf4a4942e47c9> /System/Library/Frameworks/UIKit.framework/UIKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x187f28000 - 0x187fa1fff VideoToolbox arm64 <021f8076e2ff39a5a75bb521ee214a0f> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x187fdc000 - 0x188240fff WebKit arm64 <7fbaa4ee2cc73e5aa2419e671c1ec877> /System/Library/Frameworks/WebKit.framework/WebKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1885f4000 - 0x1885f7fff AGXCompilerConnection arm64 <e62cdf78d2fc3a8d87fca74760daf002> /System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18866c000 - 0x188679fff AOSNotification arm64 <2e9390c00fb23911b2944be95ecd0f7b> /System/Library/PrivateFrameworks/AOSNotification.framework/AOSNotification
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188760000 - 0x188768fff AccessibilityUI arm64 <ffb2273cfc26320184aa4a3463f657e2> /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/AccessibilityUI.framework/AccessibilityUI
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188788000 - 0x18878bfff AccessibilityUIUtilities arm64 <1918d96a5cd3364ea94e0437af4e06bc> /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/AccessibilityUIUtilities.framework/AccessibilityUIUtilities
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188790000 - 0x188794fff ZoomServices arm64 <68e468820a9231cbaf002dd202a356a7> /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/ZoomServices.framework/ZoomServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188798000 - 0x188801fff AccessibilityUtilities arm64 <c0c38f0c2b58301b8e2dc5ce08abba47> /System/Library/PrivateFrameworks/AccessibilityUtilities.framework/AccessibilityUtilities
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188814000 - 0x188872fff AccountsDaemon arm64 <31f98cc9d2ac3da99adc8d447a7dfe8d> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188874000 - 0x18889bfff AccountsUI arm64 <b1a4d0c6d5df3fa193afaf03600c6303> /System/Library/PrivateFrameworks/AccountsUI.framework/AccountsUI
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18889c000 - 0x1888a1fff AggregateDictionary arm64 <01ce6382d4f4366da3bb447d9ae630ce> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188a8c000 - 0x188a8ffff AirPlaySupport arm64 <8750c0f7241132e08547e4b673f3e796> /System/Library/PrivateFrameworks/AirPlaySupport.framework/AirPlaySupport
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188cf8000 - 0x188d40fff AppSupport arm64 <993349f1e2513cd8af8ceec3a711f216> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188d44000 - 0x188d9ffff AppleAccount arm64 <2e4a99cec073378b980d44ce50b07166> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188da0000 - 0x188de2fff AppleAccountUI arm64 <7abfdbf8954e34c0bfa439a9895790e6> /System/Library/PrivateFrameworks/AppleAccountUI.framework/AppleAccountUI
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188eb0000 - 0x188efcfff AppleJPEG arm64 <46b31baf2b4d32ae819a3e071adf372b> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188f10000 - 0x188f24fff ApplePushService arm64 <35c39ff67e3e34ce89c1ed5dd1a2a7fd> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188f28000 - 0x188f31fff AppleSRP arm64 <d6c0054ef622355e85890017a4f79d00> /System/Library/PrivateFrameworks/AppleSRP.framework/AppleSRP
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188f44000 - 0x188f4ffff AssertionServices arm64 <d35c3db42ab039fc8d99109c2c6f3c88> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188f50000 - 0x188f6dfff AssetsLibraryServices arm64 <8ffa014a4cd730cbb0b216823b1fccb1> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188f70000 - 0x188fb0fff AssistantServices arm64 <1466e85e7ad23b1fb1ea672b5199dcec> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188fec000 - 0x188feffff BTLEAudioController arm64 <bac984fb212d38eebf930d8fd14ab980> /System/Library/PrivateFrameworks/BTLEAudioController.framework/BTLEAudioController
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x188ff0000 - 0x18900cfff BackBoardServices arm64 <be16ac42c9ff3372ba3c56b145ef278d> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189014000 - 0x189051fff BaseBoard arm64 <d083ce5eca3a371a88b48958ea8335c5> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18906c000 - 0x189073fff BluetoothManager arm64 <d66ddfddbf5c3f27aafbc912a19d00c7> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189074000 - 0x1890a4fff Bom arm64 <7eac524ee36e3dc0804b4a1a337eb339> /System/Library/PrivateFrameworks/Bom.framework/Bom
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1891a4000 - 0x1891adfff CacheDelete arm64 <2004648478703e54ad0d73b2794c1fd0> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189200000 - 0x189230fff CalendarFoundation arm64 <5df04a84819131af9095c4cc33e1ea68> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18937c000 - 0x189386fff CaptiveNetwork arm64 <82c8157aa50d3b62894d1dc566423ed7> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189394000 - 0x1894e0fff Celestial arm64 <e06a9d75034638788f44e620b05c9603> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1894f8000 - 0x189513fff CertInfo arm64 <9981e201d7d6363291a0eba4e7a1be88> /System/Library/PrivateFrameworks/CertInfo.framework/CertInfo
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189514000 - 0x18951afff CertUI arm64 <f3c298b00903389293b2db27636b8b7e> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189680000 - 0x1896a4fff ChunkingLibrary arm64 <92e2b20d330e341a80a2a9a5e48f963f> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189b78000 - 0x189c4afff CloudPhotoLibrary arm64 <2e89b7db6b9531a3b74216c7b83590c3> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189c58000 - 0x189ca6fff ColorSync arm64 <e554df2a982439a685b428e4863c000d> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189ca8000 - 0x189caafff CommonAuth arm64 <44dbd0513b343cd4aad4160aa24b1e42> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189cac000 - 0x189cbefff CommonUtilities arm64 <f022b51d242b35c89914227e1a93bcb4> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189cc0000 - 0x189cc4fff CommunicationsFilter arm64 <38e1a7097e81306095603870a255afc8> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189db0000 - 0x189db5fff ConstantClasses arm64 <9b00a0ebb0a43f1387d413a26652b628> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189db8000 - 0x189df6fff ContentIndex arm64 <9afe75e0c3733cb48a4430f8fed547a5> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189df8000 - 0x189e00fff CoreAUC arm64 <c0cff40d488039e08f96618b4d5cac52> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189e3c000 - 0x189e9cfff CoreDAV arm64 <e4c9413238b430fb8510a060624e68ac> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189ea0000 - 0x189ec8fff CoreDuet arm64 <66ce588b961a3d068fc9ff00d2be88af> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189ed4000 - 0x189ee7fff CoreDuetDaemonProtocol arm64 <d882d28c47523818ae4be9547de9890d> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x189ef0000 - 0x189ef2fff CoreDuetDebugLogging arm64 <4339336da9853d819bd849cc690f70fc> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18a098000 - 0x18a1d0fff CoreMediaStream arm64 <d025d719b09a320684b8fd739d7e395d> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18a1d4000 - 0x18a284fff CorePDF arm64 <68444dca925d3c9ea91236cf27c23479> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18a2f8000 - 0x18a303fff CoreRecents arm64 <47505a2790883ae981779d28e2de9142> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18a398000 - 0x18a3bcfff CoreServicesInternal arm64 <5910098ed2223909913c8f2cf06e8e79> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18a54c000 - 0x18a5cbfff CoreSymbolication arm64 <b4c796f8295a36c7bef680fa5a8e1933> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18a624000 - 0x18a6b8fff CoreUI arm64 <bd2aec10aba93927816de19e5c727150> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18a6bc000 - 0x18a756fff CoreUtils arm64 <abc9678b52ff3fc089096e290fce5eec> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18a758000 - 0x18a75efff CrashReporterSupport arm64 <078286e32cd632b4a9799c7bcc6997a1> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18a760000 - 0x18a766fff DAAPKit arm64 <ade2d964f32a3cc79bca35df657dc017> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18a768000 - 0x18a773fff DCIMServices arm64 <96eaef36adfc3a14abb3dd88d7283e24> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18a774000 - 0x18a7c3fff DataAccess arm64 <d2d1f37282c83e50a4fb5c0a567dbaab> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18aa20000 - 0x18aa46fff DataAccessExpress arm64 <7b5f84edb62d3b728a6e3b675b55516b> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18aa98000 - 0x18aa9ffff DataMigration arm64 <dcddd4a050b03a1f81f5c8470b10fcb3> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18aabc000 - 0x18aabdfff DiagnosticLogCollection arm64 <8164ef005b523408bc36fe106a826b82> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18aac0000 - 0x18aae0fff DictionaryServices arm64 <4cf0f22bffc53cbaaae198304e2c1c01> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18ab08000 - 0x18ab2efff EAP8021X arm64 <47b785937a5731bd9c180155c687d27a> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18ac50000 - 0x18ac67fff FTAWD arm64 <c6c5850139d131e594be966eb1215220> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18ac68000 - 0x18ac6afff FTClientServices arm64 <d480140f19af36b390a3dd67d7b6c038> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18ac6c000 - 0x18ac9efff FTServices arm64 <65dc293c37e0360398f50ba64bf57a76> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18aca0000 - 0x18b0cdfff FaceCore arm64 <8265a6108e133082b64bb0e112f7eddd> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18b0ec000 - 0x18b0f9fff FindMyDevice arm64 <1f4df4aba2093f7a9212e89e6c80bafa> /System/Library/PrivateFrameworks/FindMyDevice.framework/FindMyDevice
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18b154000 - 0x18b154fff FontServices arm64 <e0d278c866da3401894c517958b428bb> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18b158000 - 0x18b239fff libFontParser.dylib arm64 <21130ff6a7c93157ba82794a919e344d> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18b23c000 - 0x18b24bfff libGSFontCache.dylib arm64 <91f4757370473041a7642b2eab99ec37> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18b358000 - 0x18b378fff FrontBoardServices arm64 <23e7f159422933539c304f3ef39c89af> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18bd2c000 - 0x18bd36fff libGPUSupportMercury.dylib arm64 <907f17ce24953a96b92835bb002cf133> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18bd38000 - 0x18bdd7fff GameCenterFoundation arm64 <22aed163b9ff3d2a866f82823d1e064d> /System/Library/PrivateFrameworks/GameCenterFoundation.framework/GameCenterFoundation
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18be8c000 - 0x18bee0fff GameCenterUI arm64 <129d4e44878a3c10aa72f7b8e7427f0d> /System/Library/PrivateFrameworks/GameCenterUI.framework/GameCenterUI
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18bee4000 - 0x18c045fff AVConference arm64 <04efca16325837bf807a153f8bf93e7e> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/AVConference.framework/AVConference
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c05c000 - 0x18c086fff ICE arm64 <1ca4c1ec411f36c88c2cb8cfb28f4036> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/ICE.framework/ICE
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c088000 - 0x18c089fff LegacyHandle arm64 <c7cc1e6fc8d33ffeaca9a10391caa68a> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/LegacyHandle.framework/LegacyHandle
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c08c000 - 0x18c097fff SimpleKeyExchange arm64 <e9eaf54a6a40311c8280a0e6ce3c3dfa> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/SimpleKeyExchange.framework/SimpleKeyExchange
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c098000 - 0x18c0a5fff ViceroyTrace arm64 <672c99725af83b188d2cb63c3ebbf55c> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/ViceroyTrace.framework/ViceroyTrace
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c0a8000 - 0x18c0a9fff snatmap arm64 <1fddff0779eb328da58cc9a1a9d3c7dc> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/snatmap.framework/snatmap
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c0ac000 - 0x18c133fff GameKitServices arm64 <ee7742f7c9873689bfda733002669244> /System/Library/PrivateFrameworks/GameKitServices.framework/GameKitServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c134000 - 0x18c14dfff GenerationalStorage arm64 <1c81a67fcf743b10aadd0733602b0f55> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c150000 - 0x18c465fff GeoServices arm64 <6860a0d7b14735088498b6e1fdd85cf7> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c468000 - 0x18c47bfff GraphicsServices arm64 <c8e71b1f19133b91b8df13682f1e1aab> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c5d8000 - 0x18c640fff Heimdal arm64 <7fcb4673b34b3574bfd2d91bca5922c1> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c754000 - 0x18c7f0fff HomeSharing arm64 <a0d3695ac0ec383a904d6e4687c441e6> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c85c000 - 0x18c8c7fff IDS arm64 <ed9d405a985a3941af3e6db253748a99> /System/Library/PrivateFrameworks/IDS.framework/IDS
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c8c8000 - 0x18c8f6fff IDSFoundation arm64 <4ee95c5666f632958590c215981008df> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c8f8000 - 0x18c964fff IMAVCore arm64 <a9cdd455056a3b168b73d9af310e6821> /System/Library/PrivateFrameworks/IMAVCore.framework/IMAVCore
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18c968000 - 0x18ca2bfff IMCore arm64 <ee357545c0303fe1915c7381005c8892> /System/Library/PrivateFrameworks/IMCore.framework/IMCore
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18cadc000 - 0x18cb4dfff IMFoundation arm64 <f7757641510e335da816531dc45ed180> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18cb58000 - 0x18cb5ffff IOAccelerator arm64 <72a565cafaa03093b7d1037e40726131> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18cb64000 - 0x18cb6afff IOMobileFramebuffer arm64 <d1a0df802b7e39188c80cb58faac1657> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18cb6c000 - 0x18cb72fff IOSurface arm64 <91774664a18c36c281b2eb9e81d3de52> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18cb74000 - 0x18cb76fff IOSurfaceAccelerator arm64 <a1add5bb860e3f7990a12b6cda2a613f> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18cee8000 - 0x18ceeefff IncomingCallFilter arm64 <0c5aaba5e793382cbc4431b8ad3c8944> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18cef0000 - 0x18cef7fff IntlPreferences arm64 <49e13271cda633d5b42be71851781fe1> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18cef8000 - 0x18cf3dfff LanguageModeling arm64 <edc3b2d6626032c7890be3bd92246d7d> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18cfb0000 - 0x18cfbffff LegacyGameKit arm64 <7ed025f7f1e3316d87bf6dc5f09d87d4> /System/Library/PrivateFrameworks/LegacyGameKit.framework/LegacyGameKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18cfd0000 - 0x18d018fff MIME arm64 <dc59c38efcbe31e69d23d8fa39d8465a> /System/Library/PrivateFrameworks/MIME.framework/MIME
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d01c000 - 0x18d088fff MMCS arm64 <62e1b270e848396a9534959d02d2a831> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d10c000 - 0x18d11afff MailServices arm64 <0045602e038136bd9a5bda4edf7b5503> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d158000 - 0x18d216fff ManagedConfiguration arm64 <93da14baa11933b8b537ff385904f386> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d228000 - 0x18d229fff Marco arm64 <00d09b5750ef3bcabda1998c67f34c42> /System/Library/PrivateFrameworks/Marco.framework/Marco
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d22c000 - 0x18d29ffff MediaControlSender arm64 <920b4e2117943c928b224e776fdc9946> /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSender
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d3d4000 - 0x18d3edfff MediaRemote arm64 <900ee198a2c63702a370cb393e136d0b> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d3f0000 - 0x18d407fff MediaServices arm64 <bd7e16db517c33d9b78704c8f36613c5> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d470000 - 0x18d48cfff MediaStream arm64 <0696ce97c60c36619b579a94f6a696a7> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d490000 - 0x18d4f8fff IMAP arm64 <1712e429d8533d109fbc05d34ed1ded8> /System/Library/PrivateFrameworks/Message.framework/MailServices/IMAP.framework/IMAP
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d50c000 - 0x18d609fff Message arm64 <5bfe4514a10f3eed9b45b9dc6a78b278> /System/Library/PrivateFrameworks/Message.framework/Message
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d614000 - 0x18d617fff MessageSupport arm64 <c2f4cf9d10a63573b45c9d4338aa1870> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d628000 - 0x18d637fff MobileAsset arm64 <8c34f7f4f4a1304293f423b1821e82f8> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d63c000 - 0x18d663fff MobileBackup arm64 <0c8e81ae2a8c31a5be100cf9d11233fa> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d664000 - 0x18d670fff MobileBluetooth arm64 <a0b0c1f79ebf3dd9af04744fd02d4e81> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d684000 - 0x18d696fff MobileDeviceLink arm64 <59ee38d6292639eaab423a497e61ccc4> /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d698000 - 0x18d6a1fff MobileIcons arm64 <bb54a504e0d1378dbb9044f6897e2afb> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d6a4000 - 0x18d6adfff MobileInstallation arm64 <5d4e4da83c8a3db2ab5f034e86403fb1> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d6b0000 - 0x18d6bffff MobileKeyBag arm64 <7f5bc53f5b5e3a4ba3d6f2187f9843b2> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d6fc000 - 0x18d6fffff MobileSystemServices arm64 <a66207328c91314ca8f5b5673c6886ae> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d728000 - 0x18d739fff MobileWiFi arm64 <49f8a19209ff3cf3bdcf3dabd54e0d32> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18d790000 - 0x18d9dcfff MusicLibrary arm64 <3f86c743dd68364da1194cc31d497179> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18db28000 - 0x18db41fff NanoRegistry arm64 <a4a6106d619d3ee79ba7ea38c472759a> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18db80000 - 0x18db86fff Netrb arm64 <4f48a3b90e7d3c43b2b79eab35431a9b> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18db88000 - 0x18db8ffff NetworkStatistics arm64 <ab85cfc6d943348faa5371ddc58fd1c0> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18db90000 - 0x18dbb2fff Notes arm64 <d52e49d1b4c43d13b42f4d90be3e7824> /System/Library/PrivateFrameworks/Notes.framework/Notes
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18dbbc000 - 0x18dbbffff OAuth arm64 <44d58e7860d43fb3be3fc4abbf61cee4> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18e388000 - 0x18e3d6fff OpenCL arm64 <1ab5694101233c949f4d1331dc698adc> /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18e5a0000 - 0x18e5c9fff PersistentConnection arm64 <8541bccb3f863f30adaa71090a91a0b3> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18e758000 - 0x18ea52fff PhotoLibraryServices arm64 <29434c6f5c693d59bdef874adc9b36c4> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18ea54000 - 0x18ea5dfff PhotosFormats arm64 <e4866c9b635d3dc68e045f7b769bedb8> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18ea60000 - 0x18eaadfff PhysicsKit arm64 <e79d438071203039b4ceca6fce968a1f> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18eab0000 - 0x18eacafff PlugInKit arm64 <c7ae82e096863a53b37af11fc2d77502> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18eacc000 - 0x18ead4fff PowerLog arm64 <ac4aa03cdcc632adab5800f2d97899b7> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18ed34000 - 0x18edfcfff Preferences arm64 <b84e044cd3093a25ad8a279d4f208463> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18ee4c000 - 0x18ef0dfff ProofReader arm64 <7af89c527b71341c8e685166ac38bccb> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18ef10000 - 0x18ef3dfff ProtectedCloudStorage arm64 <abbfc40cda2a3ac1b76dde12dcaf1cb1> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18ef40000 - 0x18ef4efff ProtocolBuffer arm64 <56d48177aa50371383e63388a8e01c21> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18ef90000 - 0x18f00efff Quagga arm64 <94ee5acdbe7d3967ba6dfff002cd9e54> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18f010000 - 0x18f019fff QuickLookThumbnailing arm64 <b0d2bbc1d9023fe1af9da4ffcf6fb2e3> /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18f280000 - 0x18f2c4fff RemoteUI arm64 <b335c109b396371b84c4b9304a781250> /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18f374000 - 0x18f41cfff SAObjects arm64 <e584cebb3cc73116afbde110dde1510d> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18f430000 - 0x18f454fff ScreenReaderCore arm64 <5c0c60ca352a36489f9d398af759acf3> /System/Library/PrivateFrameworks/ScreenReaderCore.framework/ScreenReaderCore
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18f614000 - 0x18f634fff SpringBoardServices arm64 <661f2b6deb433542bd0d28682940442a> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18fb00000 - 0x18fcbefff StoreServices arm64 <83dff8ec37a639298ca926de7d8b2e82> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18fdbc000 - 0x18fdbffff TCC arm64 <eb2b7f13d58e34da87f0045be28c0534> /System/Library/PrivateFrameworks/TCC.framework/TCC
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x18fe94000 - 0x190c4dfff KBLayouts_iPhone.dylib arm64 <07b583f2e7053adb9381a737703778af> /System/Library/PrivateFrameworks/TextInput.framework/KBLayouts_iPhone.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x190c50000 - 0x190c7efff TextInput arm64 <1baafa7df6253019a0cc222397bee33c> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x190c80000 - 0x190c96fff TextToSpeech arm64 <8a30d1174ea9341f8ec84e56c7b1e428> /System/Library/PrivateFrameworks/TextToSpeech.framework/TextToSpeech
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x190d64000 - 0x190e3efff UIFoundation arm64 <c1787a92cfc234a0ac65ed9c7ac20508> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x190e70000 - 0x190e73fff UserFS arm64 <a0c74beff2a930d3b200e04cf822c03e> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x190e94000 - 0x191451fff VectorKit arm64 <e8167da795d73dccaeea11fd8c2c4977> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x191454000 - 0x1915a0fff VideoProcessing arm64 <2e33c870529831b88b437acd3331f07b> /System/Library/PrivateFrameworks/VideoProcessing.framework/VideoProcessing
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1916cc000 - 0x1916f0fff VoiceServices arm64 <534afa02be9f3fcc8c4929078a2ef8f5> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1917a4000 - 0x1917ccfff WebBookmarks arm64 <20dcb2682185313392a2430caa9f8586> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1917ec000 - 0x192725fff WebCore arm64 <2cafc73629b63314bb9cf3d59cd422a4> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x192728000 - 0x1927fafff WebKitLegacy arm64 <05808f603d3536b9a0a909d4993af62e> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x19299c000 - 0x19299dfff WirelessCoexManager arm64 <20179ac97ff43684aea9dec4317ebda2> /System/Library/PrivateFrameworks/WirelessCoexManager.framework/WirelessCoexManager
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1929a0000 - 0x1929d4fff WirelessDiagnostics arm64 <df454ac62af436e0b945b6bbd372a525> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1929f0000 - 0x1929f7fff XPCKit arm64 <70fdd30db3db3938838513b021c9927a> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1929f8000 - 0x192a01fff XPCObjects arm64 <f786286f7d14397d8a69a9a72960f9e0> /System/Library/PrivateFrameworks/XPCObjects.framework/XPCObjects
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x192c40000 - 0x192c6bfff iCalendar arm64 <bcbcc6b595d837ecbc49763b204a9069> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x192c98000 - 0x192cdefff iTunesStore arm64 <f4e658b0cd8a3a6e82c12f636c3f6c57> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1934d8000 - 0x1934f2fff libAWDProtobufFacetimeiMessage.dylib arm64 <88f43096a61136199efb498db67d9376> /usr/lib/libAWDProtobufFacetimeiMessage.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193678000 - 0x19369cfff libAWDSupportConfig.dylib arm64 <bd12281ac35d3edaa7dbfdf3bc848d22> /usr/lib/libAWDSupportConfig.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1936a0000 - 0x193832fff libAWDSupportFramework.dylib arm64 <e4ab68c95f523abaa42a4006e11f13f5> /usr/lib/libAWDSupportFramework.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193834000 - 0x193837fff libAWDSupportInfo.dylib arm64 <24a25f8c4a493812940ee10d09066adb> /usr/lib/libAWDSupportInfo.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193838000 - 0x19383afff libAXSafeCategoryBundle.dylib arm64 <bf9f62c2edbd39669aef7c98daae8270> /usr/lib/libAXSafeCategoryBundle.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x19383c000 - 0x193843fff libAXSpeechManager.dylib arm64 <1c11589dd20a301899628e423219f785> /usr/lib/libAXSpeechManager.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193844000 - 0x19384dfff libAccessibility.dylib arm64 <7ba92c39223036a486fd792666cf62b9> /usr/lib/libAccessibility.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193ae4000 - 0x193afffff libCRFSuite.dylib arm64 <5f450ea89bdc3d1eb2000a5671b0b5b9> /usr/lib/libCRFSuite.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193b44000 - 0x193c7bfff libFosl_dynamic.dylib arm64 <ebeb0a53a1d43d5b91765bb1ce416d07> /usr/lib/libFosl_dynamic.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193ca0000 - 0x193cbafff libMobileGestalt.dylib arm64 <95aecd87670331078a0a0c4df241af01> /usr/lib/libMobileGestalt.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193cbc000 - 0x193cc5fff libMobileGestaltExtensions.dylib arm64 <b0554dd008c83c9ca7ee73081ec534e0> /usr/lib/libMobileGestaltExtensions.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193cec000 - 0x193cedfff libSystem.B.dylib arm64 <c8f384fcfb6030eab8a9801af2699c9a> /usr/lib/libSystem.B.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193d70000 - 0x193dbefff libTelephonyUtilDynamic.dylib arm64 <804c43a06d2c39cba39cfb4a58ff93d0> /usr/lib/libTelephonyUtilDynamic.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193ee8000 - 0x193f12fff libarchive.2.dylib arm64 <4f80675864fc33049be3044502d3cd96> /usr/lib/libarchive.2.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193f14000 - 0x193f14fff libassertion_extension.dylib arm64 <07271aab0d6d324f99ae7d47a64d20bb> /usr/lib/libassertion_extension.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193f54000 - 0x193f64fff libbsm.0.dylib arm64 <7a4012e91967351ea55f4cb6fad6a2e9> /usr/lib/libbsm.0.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193f68000 - 0x193f78fff libbz2.1.0.dylib arm64 <3efd86b180f7329e8ea1e515fadb35c8> /usr/lib/libbz2.1.0.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193f7c000 - 0x193fd2fff libc++.1.dylib arm64 <69e62bc31eba32e591fa49ae45064642> /usr/lib/libc++.1.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193fd4000 - 0x193ff6fff libc++abi.dylib arm64 <37e33decd1ee3219bc23680232b92729> /usr/lib/libc++abi.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x193ffc000 - 0x19400dfff libcmph.dylib arm64 <e9467fae1dd53a148c5c151109e5266a> /usr/lib/libcmph.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194010000 - 0x194018fff libcupolicy.dylib arm64 <f27f8eb226cd352f8c3b2cec2feb62f6> /usr/lib/libcupolicy.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194054000 - 0x194071fff libextension.dylib arm64 <d9c9d65b303f37e6a2bd3992c215f5f4> /usr/lib/libextension.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1940a0000 - 0x1940a5fff libheimdal-asn1.dylib arm64 <bd14b00086bd3bfb9770b3fb9d5a4e69> /usr/lib/libheimdal-asn1.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1940a8000 - 0x19419bfff libiconv.2.dylib arm64 <d3d3af911e6f3360b85b36fe4eb85b9d> /usr/lib/libiconv.2.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x19419c000 - 0x194383fff libicucore.A.dylib arm64 <0865e2749f213f1ca36e9d2645f8b29a> /usr/lib/libicucore.A.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194398000 - 0x194399fff liblangid.dylib arm64 <beb1b98c290835998ee303e5f51e1647> /usr/lib/liblangid.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x19439c000 - 0x1943a8fff liblockdown.dylib arm64 <d9b9965640023baabcc79d8756b60537> /usr/lib/liblockdown.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x1943ac000 - 0x1943c5fff liblzma.5.dylib arm64 <b8e2d8c335b73e9b929efb2dbf9e3fa8> /usr/lib/liblzma.5.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x19479c000 - 0x1947b4fff libmis.dylib arm64 <856c30bc0897353b83beecf2bb98cda5> /usr/lib/libmis.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194800000 - 0x1949fcfff libobjc.A.dylib arm64 <7ffbdd0399053da98cabd7c7737a12bf> /usr/lib/libobjc.A.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194aa0000 - 0x194b09fff libprotobuf.dylib arm64 <7ea7a5503d9c392683a551101fc90e9b> /usr/lib/libprotobuf.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194b0c000 - 0x194b29fff libresolv.9.dylib arm64 <26dac143258831bc86f20a832eb157de> /usr/lib/libresolv.9.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194b5c000 - 0x194c3afff libsqlite3.dylib arm64 <f396c1e038653515ac519fd5f06cced2> /usr/lib/libsqlite3.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194c3c000 - 0x194c8efff libstdc++.6.dylib arm64 <52e4464418d639369d0c2bf4af8e3213> /usr/lib/libstdc++.6.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194c90000 - 0x194cc2fff libtidy.A.dylib arm64 <af2cf8953b393509820a8d68dc370cd7> /usr/lib/libtidy.A.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194cc4000 - 0x194ccdfff libtzupdate.dylib arm64 <7c282d8fb5f43733ac1161a5a63508d8> /usr/lib/libtzupdate.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194cd4000 - 0x194dc2fff libxml2.2.dylib arm64 <df52bf63916d3eacba12226725afa860> /usr/lib/libxml2.2.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194dc4000 - 0x194dedfff libxslt.1.dylib arm64 <3cff904bb0fc3b5980ddc5c746ede270> /usr/lib/libxslt.1.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194df0000 - 0x194e01fff libz.1.dylib arm64 <fe4d22c005983c9182d08fbdd35da43b> /usr/lib/libz.1.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194e04000 - 0x194e08fff libcache.dylib arm64 <99b0e521cc4b39aa846c3a364d3ef53b> /usr/lib/system/libcache.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194e0c000 - 0x194e18fff libcommonCrypto.dylib arm64 <9115f30c02b73d67b8b7606b3461a51e> /usr/lib/system/libcommonCrypto.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194e1c000 - 0x194e1ffff libcompiler_rt.dylib arm64 <18cf33250509384591474406ab5775e2> /usr/lib/system/libcompiler_rt.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194e20000 - 0x194e27fff libcopyfile.dylib arm64 <f906ee12512230f49ff254f8bc2ac6e8> /usr/lib/system/libcopyfile.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194e28000 - 0x194e82fff libcorecrypto.dylib arm64 <6ad40e2907ad3485abdf0cd7e256fb2d> /usr/lib/system/libcorecrypto.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194e84000 - 0x194eacfff libdispatch.dylib arm64 <d71cea387505363e97275b4106c771a6> /usr/lib/system/libdispatch.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194eb0000 - 0x194eb2fff libdyld.dylib arm64 <8a1a5fbff16b35998764bbcc85da4300> /usr/lib/system/libdyld.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194eb4000 - 0x194eb4fff liblaunch.dylib arm64 <3e2f385d96603a07a072d2a36c8d13aa> /usr/lib/system/liblaunch.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194eb8000 - 0x194ebdfff libmacho.dylib arm64 <6dc400b009e834719534acddc6ea4e6f> /usr/lib/system/libmacho.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194ec0000 - 0x194ec1fff libremovefile.dylib arm64 <97b4b3a0ceda34eba0381166e144d6b0> /usr/lib/system/libremovefile.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194ec4000 - 0x194ed9fff libsystem_asl.dylib arm64 <0b8c9605e76330f8a09cb0c07a6f48a7> /usr/lib/system/libsystem_asl.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194edc000 - 0x194eddfff libsystem_blocks.dylib arm64 <897a97cc50d33fb78932c91785615e6b> /usr/lib/system/libsystem_blocks.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194ee0000 - 0x194f60fff libsystem_c.dylib arm64 <f771fa3fb6c53d0b973d5f23d9f074f3> /usr/lib/system/libsystem_c.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194f64000 - 0x194f66fff libsystem_configuration.dylib arm64 <ca93ae6f1d0a34aa90989c804813312f> /usr/lib/system/libsystem_configuration.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194f68000 - 0x194f69fff libsystem_coreservices.dylib arm64 <cd7ac3a518883c388d6180aca4f00c1e> /usr/lib/system/libsystem_coreservices.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194f6c000 - 0x194f7cfff libsystem_coretls.dylib arm64 <67cce27ba556375c9783f51dc9b72060> /usr/lib/system/libsystem_coretls.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194f80000 - 0x194f88fff libsystem_dnssd.dylib arm64 <9a4f31aff83a3047b6153730b5c9520c> /usr/lib/system/libsystem_dnssd.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194f8c000 - 0x194fadfff libsystem_info.dylib arm64 <4ea83ee1bbcc33768e97512e3e993902> /usr/lib/system/libsystem_info.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194fb0000 - 0x194fd0fff libsystem_kernel.dylib arm64 <7cf1497db6fc3183a0a1727c91f6b2ed> /usr/lib/system/libsystem_kernel.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194fd4000 - 0x194ff0fff libsystem_m.dylib arm64 <cf62c29de6f03c7da503cb29a773a91e> /usr/lib/system/libsystem_m.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x194ff4000 - 0x19500dfff libsystem_malloc.dylib arm64 <17c1054b47713b468db7660b20a7e56d> /usr/lib/system/libsystem_malloc.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x195010000 - 0x195047fff libsystem_network.dylib arm64 <c534ddf64b3d3c38ad39eb64bcfa2345> /usr/lib/system/libsystem_network.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x195048000 - 0x19504efff libsystem_networkextension.dylib arm64 <c15cfb4c42f63f849d72a3bdaa6d9af5> /usr/lib/system/libsystem_networkextension.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x195050000 - 0x19505afff libsystem_notify.dylib arm64 <f0228fae1f2e3bfcaeaaaba371da25c7> /usr/lib/system/libsystem_notify.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x19505c000 - 0x195060fff libsystem_platform.dylib arm64 <1a17d7e559c83b0a8059e81c2978eef2> /usr/lib/system/libsystem_platform.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x195064000 - 0x19506cfff libsystem_pthread.dylib arm64 <763451c05a4c32399f3295b04ff2de35> /usr/lib/system/libsystem_pthread.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x195070000 - 0x195072fff libsystem_sandbox.dylib arm64 <ff3a96b469e23dc485e14bf4c35b61dc> /usr/lib/system/libsystem_sandbox.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x195074000 - 0x195077fff libsystem_stats.dylib arm64 <fc1f75dbe19b32a682edd3d4ff71146b> /usr/lib/system/libsystem_stats.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x195078000 - 0x19507efff libsystem_trace.dylib arm64 <9040ad96fea73033b74de4dbb4846020> /usr/lib/system/libsystem_trace.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x195080000 - 0x195085fff libunwind.dylib arm64 <8b87982b31ad3569a95e75457cadba3e> /usr/lib/system/libunwind.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone ReportCrash[2293] <Error>: 0x195088000 - 0x1950abfff libxpc.dylib arm64 <c9f3c08a8a3b3849a905d24911240853> /usr/lib/system/libxpc.dylib
Aug 18 13:32:00 Fredrik-sin-iPhone SpringBoard[54] <Warning>: Application ‘UIKitApplication:com.fredrik.typeworld[0x5481]’ crashed.
Aug 18 13:32:00 Fredrik-sin-iPhone assertiond[64] <Warning>: pid_suspend failed for <BKNewProcess: 0x14fe51ab0; com.fredrik.typeworld; pid: 2290; hostpid: -1>: Unknown error: -1, Unknown error: -1
Aug 18 13:32:00 Fredrik-sin-iPhone assertiond[64] <Warning>: Could not set priority of <BKNewProcess: 0x14fe51ab0; com.fredrik.typeworld; pid: 2290; hostpid: -1> to 2, priority: No such process
Aug 18 13:32:00 Fredrik-sin-iPhone assertiond[64] <Warning>: Could not set priority of <BKNewProcess: 0x14fe51ab0; com.fredrik.typeworld; pid: 2290; hostpid: -1> to 4096, priority: No such process
Aug 18 13:32:00 Fredrik-sin-iPhone profiled[120] <Error>: MKBDeviceGetGracePeriod: MKBDeviceGetGracePeriod() => (0,0,0)
Aug 18 13:32:00 Fredrik-sin-iPhone limitadtrackingd[1623] <Warning>: Not scheduling a new BTA job; keeping previously scheduled job should run after 1s from now when the network is available.
Aug 18 13:32:13 Fredrik-sin-iPhone assistant_service[729] <Warning>: the local store doesn’t allow tasks and we have no default calendar
Aug 18 13:32:13 Fredrik-sin-iPhone assistant_service[729] <Warning>: Error getting NanoAppRegistry workspace info: Error Domain=NSCocoaErrorDomain Code=4099 “Handlingen kunne ikke fullføres. (Cocoa-feil 4099)” (The connection to service named com.apple.nanoappregistry.workspace was invalidated.) UserInfo=0x13570b570 {NSDebugDescription=The connection to service named com.apple.nanoappregistry.workspace was invalidated.}
Aug 18 13:32:17 Fredrik-sin-iPhone kernel[0] <Notice>: IOReturn IOAsynchronousScheduler::checkAndQueueArgument(IOAsynchronousScheduler::ArgumentEntry *): max argument count (128) reached. Notify a few first.
Aug 18 13:32:19 Fredrik-sin-iPhone kernel[0] <Notice>: IOReturn IOAsynchronousScheduler::checkAndQueueArgument(IOAsynchronousScheduler::ArgumentEntry *): max argument count (128) reached. Notify a few first.
Aug 18 13:32:22 Fredrik-sin-iPhone kernel[0] <Notice>: IOReturn IOAsynchronousScheduler::checkAndQueueArgument(IOAsynchronousScheduler::ArgumentEntry *): max argument count (128) reached. Notify a few first.
Aug 18 13:32:23 Fredrik-sin-iPhone kernel[0] <Notice>: AppleARMPMUCharger: limiting USB input current to 1400 mA (measured 1060 mA)
Aug 18 13:32:23 Fredrik-sin-iPhone kernel[0] <Notice>: AppleARMPMUCharger: limiting USB input current to 1300 mA (measured 1068 mA)
Aug 18 13:32:26 Fredrik-sin-iPhone kernel[0] <Notice>: IOReturn IOAsynchronousScheduler::checkAndQueueArgument(IOAsynchronousScheduler::ArgumentEntry *): max argument count (128) reached. Notify a few first.
Aug 18 13:32:28 Fredrik-sin-iPhone kernel[0] <Notice>: IOReturn IOAsynchronousScheduler::checkAndQueueArgument(IOAsynchronousScheduler::ArgumentEntry *): max argument count (128) reached. Notify a few first.
Aug 18 13:32:29 Fredrik-sin-iPhone locationd[61] <Notice>: Gesture EnabledForTopCLient: 0, EnabledInDaemonSettings: 0
Aug 18 13:32:40 Fredrik-sin-iPhone syncdefaultsd[2283] <Notice>: (Note ) marked “com.me.keyvalueservice” topic as “opportunistic” on <APSConnection: 0x13ce24960>
Aug 18 13:32:46 Fredrik-sin-iPhone locationd[61] <Notice>: Gesture EnabledForTopCLient: 0, EnabledInDaemonSettings: 0
Aug 18 13:32:47 Fredrik-sin-iPhone kernel[0] <Notice>: IOReturn IOAsynchronousScheduler::checkAndQueueArgument(IOAsynchronousScheduler::ArgumentEntry *): max argument count (128) reached. Notify a few first.
Aug 18 13:32:47 Fredrik-sin-iPhone locationd[61] <Notice>: Gesture EnabledForTopCLient: 0, EnabledInDaemonSettings: 0
Aug 18 13:32:47 Fredrik-sin-iPhone limitadtrackingd[1623] <Warning>: Lost connection from Limit Ad Tracking client.
Aug 18 13:32:47 Fredrik-sin-iPhone limitadtrackingd[1623] <Warning>: Lost connection from Limit Ad Tracking client.
Aug 18 13:32:48 Fredrik-sin-iPhone SpringBoard[54] <Warning>: Application ‘UIKitApplication:com.apple.AdSheetPhone[0x9bde]’ exited voluntarily.
Aug 18 13:32:48 Fredrik-sin-iPhone assertiond[64] <Warning>: pid_suspend failed for <BKNewProcess: 0x14fd50840; com.apple.AdSheetPhone; pid: 2291; hostpid: -1>: Unknown error: -1, Unknown error: -1
Aug 18 13:32:48 Fredrik-sin-iPhone assertiond[64] <Warning>: Could not set priority of <BKNewProcess: 0x14fd50840; com.apple.AdSheetPhone; pid: 2291; hostpid: -1> to 2, priority: No such process
Aug 18 13:32:48 Fredrik-sin-iPhone assertiond[64] <Warning>: Could not set priority of <BKNewProcess: 0x14fd50840; com.apple.AdSheetPhone; pid: 2291; hostpid: -1> to 4096, priority: No such process
Aug 18 13:32:51 Fredrik-sin-iPhone wirelessproxd[55] <Notice>: (Error) updateScanner - central is not powered on: 4
Aug 18 13:33:00 Fredrik-sin-iPhone kernel[0] <Notice>: AppleMultitouchN1SPI: updating power statistics
Aug 18 13:33:00 Fredrik-sin-iPhone SpringBoard[54] <Warning>: [MPUSystemMediaControls] Disabling lock screen media controls updates for screen turning off.
Aug 18 13:33:00 Fredrik-sin-iPhone backboardd[57] <Notice>: MultitouchHID: detection mode: 3->255
Aug 18 13:33:01 Fredrik-sin-iPhone SpringBoard[54] <Notice>: (Note ) MC: Locking device.
Aug 18 13:33:01 Fredrik-sin-iPhone wirelessproxd[55] <Notice>: (Error) updateScanner - central is not powered on: 4
Aug 18 13:33:01 Fredrik-sin-iPhone SpringBoard[54] <Warning>: [MPUSystemMediaControls] Updating supported commands for now playing application.
Aug 18 13:33:01 Fredrik-sin-iPhone UserEventAgent[20] <Error>: LockStateNotifier aksNotificationCallback posting notification: com.apple.mobile.keybagd.lock_status
Aug 18 13:33:01 Fredrik-sin-iPhone SpringBoard[54] <Notice>: (Note ) MC: Locking device.
Aug 18 13:33:01 Fredrik-sin-iPhone UserEventAgent[20] <Notice>: (Note ) PIH: Lock status changed.
Aug 18 13:33:01 Fredrik-sin-iPhone locationd[61] <Warning>: notify name “com.apple.locationd.DumpDiagnostics” has been registered 40 times - this may be a leak
Aug 18 13:33:01 Fredrik-sin-iPhone SpringBoard[54] <Warning>: Telling backboard to enable secure lock screen.
Aug 18 13:33:01 Fredrik-sin-iPhone cloudd[163] <Notice>: (Note ) MC: User has completed cloud configuration. Not showing UI again.
Aug 18 13:33:01 Fredrik-sin-iPhone backupd[2294] <Warning>: INFO: Exporting keychain
Aug 18 13:33:07 Fredrik-sin-iPhone cloudd[163] <Notice>: (Note ) MC: User has completed cloud configuration. Not showing UI again.
Aug 18 13:33:11 Fredrik-sin-iPhone kernel[0] <Notice>: AppleKeyStore:Sending lock change 1 for handle 0
Aug 18 13:33:11 Fredrik-sin-iPhone UserEventAgent[20] <Error>: LockStateNotifier aksNotificationCallback posting notification: com.apple.mobile.keybagd.lock_status
Aug 18 13:33:11 Fredrik-sin-iPhone SpringBoard[54] <Warning>: Telling backboard to enable secure lock screen.
Aug 18 13:33:11 Fredrik-sin-iPhone UserEventAgent[20] <Notice>: (Note ) PIH: Lock status changed.
Aug 18 13:33:11 Fredrik-sin-iPhone cloudd[163] <Notice>: (Note ) MC: User has completed cloud configuration. Not showing UI again.
Aug 18 13:33:17 Fredrik-sin-iPhone cloudd[163] <Notice>: (Note ) MC: User has completed cloud configuration. Not showing UI again.
Hi Fredrik,
What device are you testing on? I just ran your exact code in “main.lua” and it works perfectly on my iPhone 5. The new contact is added to my contacts app, and the app does not crash.
The only “change” I made was that I didn’t use your entire “build.settings” file… I just included the Address Book plugin within an existing (and extremely basic) “build.settings” file.
Brent
Hello again, im testing on my Iphone 6. Can i have your build.settings file so that i can test exactly what you tested?
I used basically the most simple “build.settings” possible, as posted below.
By the way, what version of iOS is your phone running? Mine is using 8.4.
[lua]
settings =
{
orientation =
{
default = “portrait”,
supported = { “portrait”, “portraitUpsideDown” }
},
plugins = {
[“CoronaProvider.native.popup.addressbook”] =
{
publisherId = “com.coronalabs”,
supportedPlatforms = { iphone=true, [“iphone-sim”]=true },
}
},
}
[/lua]
Okey this is weird, I asked my buddy to test the same application, and for him it is working. Im using 8.4 not 8.4.1.
Even the version with the “simplified” build settings is still crashing for you?
I’m also using 8.4, not 8.4.1…
Best regards,
Brent