We are trying to get our Android app to Apple store, we corrected everything and while archiving the app in Xcode I get this error, maybe any solutions here … we have no idea at this point.
imagePicker.delegate = self;
And I get this error: Incompatible pointer types assigning to id<UINavigationControllerDelegate,UIImagePickerControllerDelegate> _Nullable’ from ‘Class’
Thanks for any help with this, we are stuck with that some time now.
Try imagePicker.delegate = (id) self;
2 Likes
Tried (id) self; one error goes away, but the other stays, so I need something that deals with all 4 errors.
image01: Dropbox - File Deleted - Simplify your life
image01: Dropbox - File Deleted - Simplify your life

The easiest solution is to update the plugin to its latest version (you are missing a large number of important releases). The hardest solution is to ignore my suggestion and replace all problematic assignments with (id) self.
Do you maybe know how to fix that, we are in dark here … here is what happens when (id) is in
image01: https://www.dropbox.com/s/b0fc6k2cxfp33b7/03.png?dl=0
image02: https://www.dropbox.com/s/upzvh8vl811e5bs/04.png?dl=0
I honestly don’t know. NativeGallery’s up-to-date code also has (id) self lines and I haven’t heard anyone having issues with it. So you should try updating the plugin and see how it goes.