ios13.3

Library not loaded: @rpath/FBLPromises.framework/FBLPromises iOS 13.3.1 [duplicate]

╄→гoц情女王★ 提交于 2020-03-07 05:27:04
问题 This question already has answers here : After updating iOS, all applications using the framework stopped running on the device, but they run on the simulator (2 answers) Closed yesterday . My app crashes on lunch and getting this error: dyld: Library not loaded: @rpath/FBLPromises.framework/FBLPromises Referenced from: /private/var/containers/Bundle/Application/11X3EC15-5A16-4E27-AC4A-FB0503E6F1E2/Zeta.app/Zeta Reason: no suitable image found. Did find: /private/var/containers/Bundle

iPhone 11 Pro Max with iOS 13 Camera permission issue

社会主义新天地 提交于 2020-03-04 23:10:34
问题 My iOS App need to take photos from camera or need to select from photo library. I have the entries in the plist and do the " AVCaptureDevice.requestAccess " to request permissions. And App is working fine so far in all iPhones except iPhone 11 pro max. in iPhone 11 Pro max It does not prompt user for camera permissions and also in the settings it doesn't show and entry like below. If any one has an Idea to fix this issue you are welcome to answer. iPhone 8 with iOS13.3 shows the camera

iPhone 11 Pro Max with iOS 13 Camera permission issue

ぃ、小莉子 提交于 2020-03-04 23:08:29
问题 My iOS App need to take photos from camera or need to select from photo library. I have the entries in the plist and do the " AVCaptureDevice.requestAccess " to request permissions. And App is working fine so far in all iPhones except iPhone 11 pro max. in iPhone 11 Pro max It does not prompt user for camera permissions and also in the settings it doesn't show and entry like below. If any one has an Idea to fix this issue you are welcome to answer. iPhone 8 with iOS13.3 shows the camera

Is There an Alternative Way to Incorporate Firebase into my iOS App Other Than Cocoapods?

蓝咒 提交于 2020-03-04 19:40:10
问题 My iPhone recently automatically updated to iOS 13.3.1, and unknown to me until it was to late apparently Apple blocked the use of some external frameworks when testing apps on a physical device within Xcode. I can no longer run my app on my iPhone (although the simulator still works but it's SO much more inconvenient). I'm using cocoapods and the one that's causing the issue is Firebase. I need Firebase, so my question is: Is there another way to integrate Firebase into my app without using

Is There an Alternative Way to Incorporate Firebase into my iOS App Other Than Cocoapods?

五迷三道 提交于 2020-03-04 19:40:06
问题 My iPhone recently automatically updated to iOS 13.3.1, and unknown to me until it was to late apparently Apple blocked the use of some external frameworks when testing apps on a physical device within Xcode. I can no longer run my app on my iPhone (although the simulator still works but it's SO much more inconvenient). I'm using cocoapods and the one that's causing the issue is Firebase. I need Firebase, so my question is: Is there another way to integrate Firebase into my app without using

URLSession.shared.dataTaskPublisher not working on IOS 13.3

假装没事ソ 提交于 2019-12-19 10:16:13
问题 When trying to make a network request, I'm getting an error finished with error [-999] Error Domain=NSURLErrorDomain Code=-999 "cancelled" If I use URLSession.shared.dataTask instead of URLSession.shared.dataTaskPublisher it will work on IOS 13.3. Here is my code : return URLSession.shared.dataTaskPublisher(for : request).map{ a in return a.data } .decode(type: MyResponse.self, decoder: JSONDecoder()) .receive(on: DispatchQueue.main) .eraseToAnyPublisher() This code worked on IOS 13.2.3. 回答1: