Ios app crash after install background mode(latest version) - ionic-framework

ionic app crash in ios version 12.2 after install background mode(latest version). i am also updated background Mode from git but app crash initially.
Below Exception when app initialized
*** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]
: this class is not key value coding-compliant for the key _alwaysRunsAtForegroundPriority.'
My confilg.xml below
<plugin name="cordova-plugin-background-mode" spec="https://github.com/tushe/cordova-plugin-background-mode.git" />
My package.json below
"cordova-plugin-background-mode": "git+https://github.com/tushe/cordova-plugin-background-mode.git",
I am also try to different solution
1- forKey:#"requiresUserActionForMediaPlayback"];
2-

Related

cordova iosrtc app crash on iphone device - 'NSInternalInconsistencyException

i have an app crash issue on ios real device
libc++abi: terminating with uncaught exception of type NSException
dyld4 config: DYLD_LIBRARY_PATH=/usr/lib/system/introspection DYLD_INSERT_LIBRARIES=/Developer/usr/lib/libBacktraceRecording.dylib:/Developer/usr/lib/libMainThreadChecker.dylib:/Developer/Library/PrivateFrameworks/GPUTools.framework/libglInterpose.dylib:/Developer/Library/PrivateFrameworks/DTDDISupport.framework/libViewDebuggerSupport.dylib
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Call must be made on main thread'
terminating with uncaught exception of type NSException
Apple macOS: 11.6.6 Big Sur Xcode: 13.2.1 ios-deploy: 1.11.4
CocoaPods: 1.11.3 cordova : 11.0.0 cordova-platform-ios : 6.2.0
webrtc-adapter-version : 8.1.1
This issue was created by using some deprecated plugins, so remove the deprecated plugin and find alternative sources.

FLutter A/libc: Fatal signal 4 (SIGILL) at 0x8c80cf16 (code=1), thread 4219 (flutter-worker-)

I am facing an error when trying to run my flutter app on android 4.4 to 5.0 devices. When app opens it crashes and shows "Unfortunatelly, app has stopped". Logcat is showing
11-12 12:03:57.826 4203-4219/com.agent.agent_report A/libc: Fatal signal 4 (SIGILL) at 0x8c80cf16 (code=1), thread 4219 (flutter-worker-)
Ok, the problem was that I builded the app using flutter run --release
When I built it with flutter build apk it worked succesfully.

When building in xcode12 release mode, a crash occurs when opening the app with a universal link

When building in xcode12 release mode,
a crash occurs when opening the app with a universal link.
like
myApp://
The problem does not occur in xcode11.
Exception Subtype: KERN_INVALID_ADDRESS at 0x005b07d01caaf670 -> 0x000000501caaf670 (possible pointer authentication failure)
VM Region Info: 0x501caaf670 is in 0x1000000000-0x7000000000; bytes after start: 275358873200 bytes before end: 136957987215
this is a bug report in the testflight bug report

XCode 12 Preview Crashes when adding Firebase SDK Swift UI 2.0

Since the last Xcode update to 12.0.1 SwiftUI previews crashes when is added to the project.
The crash log hints that the problem is located in the firebase sdk, more specific the
GoogleDataTransport/GDTCORLibrary
System Integrity Protection: enabled
Crashed Thread: 3 Dispatch queue: com.google.GDTCORFlatFileStorage
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Application Specific Information:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSFileManager enumeratorAtURL:includingPropertiesForKeys:options:errorHandler:]: URL is nil'
terminating with uncaught exception of type NSException
Firebase (6.33) is integrated via cocoapods (1.10.0.rc.1) with
Xcode 12.0.1 on Catalina 10.15.7
There is an open issue on github
Someone found a solution or workaround for this?
Downgrading GoogleDataTransport from 7.4.0 to 7.3.0 does the trick however If you use Firebase 6.33.0 downgrading will not work because version GoogleDataTransport 7.4 version was locked in Firebase Core podspec. According to crash report Preview crashes in AppDelegate FirebaseApp.configure(), so if Firebase functionality isn't required in DEBUG it might be excluded with macros:
#if RELEASE
FirebaseApp.configure()
#endif
Downgrading GoogleDataTransport from 7.4.0 to 7.3.0 fixes the problem
=> pod 'GoogleDataTransport', '7.3.0'

Unity Ads Xcode 6.3.1 setUnityVersion crash

I'm using the last version of UnityAds 1.1.4 with Unity 4.6.4f1. I have upgraded to Xcode 6.3.1 and I can build IOS version but when I'm running the game on the device I get the error:
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UnityAds setUnityVersion:]: unrecognized selector sent to instance 0x1c19f6d0'
This appears in UnityAdsUnityWrapper.m at line : [[UnityAds sharedInstance] setUnityVersion:unityVersion];
Everything was working before Xcode update and Unityads update
Unity Ads dev here. This is probably caused by a problem when upgrading the asset store package. You should remove all Unity Ads related files from your Unity project and reimport the package.
I had the same issue, this worked for me:
Search project with 'UnityAds' and delete every asset that is found
Delete Plugins/iOS/DeviceInfo.framework
Delete Editor/PostprocessBuildPlayer_DeviceInfo
Re-import newest version of UnityAds
I'm using XCode 6.3.1 & Unity 4.6.3f1