Jason Moore

Results 9 comments of Jason Moore

I've confirmed that it works if you use PhotoKit. For example: ``` PHImageManager *manager = [PHImageManager defaultManager]; PHImageRequestOptions *requestOptions = [[PHImageRequestOptions alloc] init]; requestOptions.resizeMode = PHImageRequestOptionsResizeModeExact; requestOptions.deliveryMode = PHImageRequestOptionsDeliveryModeHighQualityFormat; requestOptions.synchronous...

Note: Only one message is sent to the server. If I restart the `MXKRoomViewController`, I only see each outgoing message a single time (as expected).

Figured it out. Apparently you need to attach a store to your session. You have `MXNoStore`, `MXMemoryStore` or `MXFileStore`. For example: ```swift let session = MXSession(matrixRestClient: authenticatedRestClient)! let store =...

I needed to add the delay somewhere - otherwise you can't see the highlighting before the view is dismissed. Since you provide both the view and the view controller, I...

I've moved the delay to the example app view controller. I generally keep the Example app as simple as possible - so storing the QR view controller instance in the...

Thank you @rpendleton! On my macbook in System settings > General > Date and Time, i turned on "automatically update date and time" and my 401 errors went away.

Hi! Thanks for your comments. I fixed the readme links. You're right, you could put all the redux actions, action creators, reducers and selectors in a single file since they...

I was getting still getting this annoying checksum issue after switching to the static library (https://github.com/AppsFlyerSDK/AppsFlyerFramework-Static). Eventually, I figured out that I also had a dependency to the old AppsFlyer...

Which of these App Store warnings come from AppsFlyer? > ITMS-91053: Missing API declaration - Your app’s code in the “[Redacted]” file references one or more APIs that require reasons,...