Bagel
Bagel copied to clipboard
iOS14 EXC_BAD_ACCESS
In order to fit iOS14,you need add some key-values to info.plist,such as:
Same issue here.
@trc19930224 Tried to add: NSBonjourServices with 1 item: _Bagel._tcp NSLocalNetworkUsageDescription with value "Network access required"
Still crashes
Not a bad idea to check this out: https://developer.apple.com/news/?id=0oi77447
same here
has been solved and dispatch it in the main thread
how can i fix this crash?
i suggest to use this tool instead: https://github.com/pmusolino/Wormholy just needs to shake your device to show your traffic
There is an alternative that fully supports iOS 14, macOS, Catalyst, and TVOS. Check out Atlantis (https://github.com/ProxymanApp/atlantis)
dispatch_async(dispatch_get_main_queue(), ^{ [self.serviceBrowser searchForServicesOfType:self.configuration.netserviceType inDomain:self.configuration.netserviceDomain]; });
There is an alternative that fully supports iOS 14, macOS, Catalyst, and TVOS. Check out Atlantis (https://github.com/ProxymanApp/atlantis)
great alternative! thanks
In order to fit iOS14,you need add some key-values to info.plist,such as:
NSBonjourServices
_Bagel._tcp
NSLocalNetworkUsageDescription
NSLocalNetworkUsageDescription Network access required
<key>NSLocalNetworkUsageDescription</key>
<string>Network access required.</string>
<key>NSBonjourServices</key>
<array>
<string>_Bagel._tcp</string>
</array>