All Questions
538 questions
1
vote
0
answers
96
views
Flutter: PlatformException(channel-error, Unable to establish connection on channel, null, null) during Firebase Initialization on iOS
I'm encountering an issue with Firebase initialization in my Flutter app specifically on iOS. The app throws the following error when trying to run await Firebase.initializeApp(options: ...
12
votes
4
answers
9k
views
ERROR encountered only below iOS 17 devices "Thread 1: EXC_BAD_ACCESS (code=1, address=0x0)"
I've just updated my XCode to version 15, and I encountered this error (only iOS versions below 17)
Thread 1: EXC_BAD_ACCESS (code=1, address=0x0)
code that shows this error (...
0
votes
1
answer
13
views
AWSS3TransferManager defaultS3TransferManager exception SIGABRT not caught
My iOS app crashes when I execute following code:
- (UIImage *)getImageAndSaveInDBWithKey:(NSString *)imageKey withKeyPath:(NSString *)keyPath inBucket:(NSString *)bucketName scanhistoryRecord:(...
0
votes
1
answer
28
views
How to find the cause code of exception in a sub-threads? (iOS)
I'm a webapp developer but not an iOS developer. Recently I got an iOS project from party A that needs to insert my page into. When they run my page on their app, their app crashed. Here's the ...
0
votes
0
answers
345
views
FrontBoardServices framework crashes at iOS app launch
I have multiple end users experiencing the same crash with my last version uploaded to the appstore.
Here is the crash log:
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, ...
0
votes
2
answers
1k
views
Error message "Thread 10: EXC_BREAKPOINT (code=1, subcode=0x10515fd44)" in Xcode
I have been getting these error messages in debug window in Xcode:
2023-06-06 07:46:15.412684-0500 Courier[8456:442818] [LayoutConstraints] Unsupported layout off the main thread for ...
0
votes
1
answer
140
views
InvalidProgramException in TypedBinding when running on iPad
My MAUI app runs fine on the iOS Simulator in Debug mode, but when I run it on an iPad in Release mode, I get the following cryptic error when opening a certain screen:
System.Reflection....
0
votes
1
answer
317
views
What does that code mean in exception error "Thread 3: EXC_BAD_ACCESS (code=2, address=0x16dbc7ff0)"?
I got a run time error during a debug run of my Xcode project for iOS. The project was running on an iPhone 8 device running iOS 15.5. I am using Xcode version 13.4.1 on a Mac Pro running macOS ...
0
votes
1
answer
3k
views
iOS app crash when fetcing the IP address
In my application, I am suing for getting the IP address. Below is the code for getting IP.
func getUrlIPAddress(){
let url = URL(string: "https://api.ipify.org")
do {
...
0
votes
1
answer
198
views
Trying to load non-existing image using NetworkImage will crash
This is new in Flutter 3.0, and just on iOS:
If I try to loading an image from a URL, which does not exists, using NetworkImage, app will fatally crash, without any reasonable log, this is log :
-[...
1
vote
1
answer
1k
views
How to manually log errors/crashes to appcenter in react native application?
I am creating an application with the use of react native and I want to handle exceptions in some cases when an application can get crashed. I want to show that exception in appcenter and also not ...
1
vote
1
answer
305
views
Flutter: ImagePicker UIApplicationInvalidInterfaceOrientation Exception
I'm using the image_picker and running into the error below on an iPad running iOS 10.4 when I execute this call ImagePicker().pickImage(source: ImageSource.gallery) on an app with a landscape (both ...
1
vote
1
answer
594
views
Objective C, Correct way to "Call from Main Thread"?
I am aware most people do dispatchqueue.main.async or dispatch_async(dispatch_get_main_queue(), ^{ but what would be the correct way to call from main thread for Objective C?
Specifically I wanna call ...
1
vote
1
answer
72
views
CodenameOne - filesystem access problems on iOS for Library folder
My CodenameOne app is being tested on the iOS simulator (iPad 8th iOS 14).
It writes some files in the private folder by means of this method:
public void writeFile() throws IOException {
try(...
-1
votes
1
answer
118
views
Invalid conversion from throwing function. When use decoder class
I am using decoder class for parsing the json response of firebase firestore.
This is extension which I am using for parsing:
extension DocumentSnapshot {
func toObject<T: Decodable>() ...