Suyash Srijan
Suyash Srijan
The commits needs some fixing as it seems that this whitelist fix PR includes other unrelated commits. This is same for other PRs that you have submitted.
You can follow the steps here to create a new PR with only specific commits, you should do that with other PRs as well: http://blog.asquareb.com/blog/2014/06/19/making-a-git-pull-request-for-specific-commits/ You can also create a...
A couple of things that needs changes before I merge this: 1) Strings in prefs.xml needs to be in strings.xml 2) WiFi timeout shouldn't be an option, as I think...
@lorentey Are you planning to update this? I was also unable to build this with Xcode 10.2.1, but it works when building with Xcode 10. Seems like the issue is...
I did some work on an app where I created a `Device` struct and an extension function so I could verify snapshots on specific device sizes, like `verifyWithFixedLayoutStyle(myView, forDevice: .iPhoneSE)`....
Maybe `drawHierarchy(in:afterScreenUpdates:)` could be used (with `afterScreenUpdates` set to `true`) According to the [docs](https://developer.apple.com/documentation/uikit/uiview/1622589-drawhierarchy): > Use this method when you want to apply a graphical effect, such as a blur,...
Oh, in that case we can wait till the next runloop (although `.asyncAfter` doesn't guarantee that it will run on the next runloop tick): ``` DispatchQueue.main.asyncAfter(deadline: .now() + 0.0) {...
Does Xcode provide you with any more information about the problem? The above does not include any information about what's going on (it just lists the flags passed to the...
If you dig into it you should be able to find some more information about the error. Have you checked the Xcode build log? (sometimes the info is hidden and...
> Is there any restriction that I have to have in mind in the Podfile? Any minimum platform ? You need to be on iOS 12.4 or higher, and Swift...