Chris Ballinger

Results 291 comments of Chris Ballinger

Thank you for the thorough response! I am not too happy with OnionKit's current design (based on Tor.framework and your build scripts) and will want to rewrite it soon to...

@mtigas So from my investigation it seems that WKWebView is impossible to use with a SOCKS proxy. Because it uses a separate process (to do JIT safely) you cannot use...

Time to petition Apple before UIWebView is gone! :)

This is mentioned at the top of the README now: https://github.com/Rightpoint/BonMot#attributedstring Long term we should probably rename ours with a backwards-compatibility shim / deprecation warning to avoid conflict with the...

I hit a similar issue in a project of mine. Here's an ugly workaround/hack: https://bugs.swift.org/browse/SR-4725

Ya I'm interested! I'm currently trying to figure out how to get offline vector mbtiles to work for the 2022 update to [iBurn](https://github.com/iBurnApp/iBurn-iOS) (based on this [reference](https://github.com/roblabs/openmaptiles-ios-demo)) but Catalyst and...

Here is a Podfile hack workaround: ```ruby def fix_config(config) # https://github.com/CocoaPods/CocoaPods/issues/8891 if config.build_settings['DEVELOPMENT_TEAM'].nil? config.build_settings['DEVELOPMENT_TEAM'] = '' end end post_install do |installer| installer.generated_projects.each do |project| project.build_configurations.each do |config| fix_config(config) end project.targets.each...

This workaround might not actually work after all. Although it builds and runs locally after the fix, the binary is not accepted by App Store Connect, and is rejected with...

I submitted a radar FB7425571 because I really don't know how to fix this. It seems that resource bundle targets aren't compatible with Mac Catalyst App Store builds at all....

Another workaround is to create exported archives of the resource bundles and then include that version instead.