Bagel icon indicating copy to clipboard operation
Bagel copied to clipboard

iOS14 EXC_BAD_ACCESS

Open henryhwluk opened this issue 4 years ago • 11 comments

image

henryhwluk avatar Sep 18 '20 08:09 henryhwluk

In order to fit iOS14,you need add some key-values to info.plist,such as:

NSBonjourServices _Bagel._tcp NSLocalNetworkUsageDescription

NSLocalNetworkUsageDescription Network access required

SnowNunu avatar Sep 18 '20 08:09 SnowNunu

Same issue here.

@trc19930224 Tried to add: NSBonjourServices with 1 item: _Bagel._tcp NSLocalNetworkUsageDescription with value "Network access required"

Still crashes

Oleygen avatar Sep 30 '20 14:09 Oleygen

Not a bad idea to check this out: https://developer.apple.com/news/?id=0oi77447

mohpor avatar Oct 06 '20 13:10 mohpor

same here

Erumaru avatar Oct 26 '20 15:10 Erumaru

has been solved and dispatch it in the main thread

henryhwluk avatar Oct 27 '20 09:10 henryhwluk

how can i fix this crash?

Rylaa avatar Nov 30 '20 10:11 Rylaa

i suggest to use this tool instead: https://github.com/pmusolino/Wormholy just needs to shake your device to show your traffic

aarashgoodarzi avatar Dec 06 '20 13:12 aarashgoodarzi

There is an alternative that fully supports iOS 14, macOS, Catalyst, and TVOS. Check out Atlantis (https://github.com/ProxymanApp/atlantis)

NghiaTranUIT avatar Dec 07 '20 01:12 NghiaTranUIT

dispatch_async(dispatch_get_main_queue(), ^{ [self.serviceBrowser searchForServicesOfType:self.configuration.netserviceType inDomain:self.configuration.netserviceDomain]; });

vladburlaciuc avatar Dec 09 '20 10:12 vladburlaciuc

There is an alternative that fully supports iOS 14, macOS, Catalyst, and TVOS. Check out Atlantis (https://github.com/ProxymanApp/atlantis)

great alternative! thanks

aarashgoodarzi avatar Dec 10 '20 18:12 aarashgoodarzi

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>

Davidxiaoshuo avatar Dec 24 '20 04:12 Davidxiaoshuo