bucky0970

Results 9 comments of bucky0970

Thanks for your reply~ I use [CPAProxy](https://github.com/ursachec/CPAProxy) , after proxy start up, you can get a socks5 proxy ip and port. And I found in (Project Navigator)Antidote/Pods/Pods/toxcore/tox_api.m line:67 ``` void...

0. pod 'CPAProxy', :git => 'https://github.com/ursachec/CPAProxy.git' 1. Modify GCDAsyncSocket+CPAProxy.h line 9: from **@import CocoaAsyncSocket;** to **#import "GCDAsyncSocket.h"** 2. Set SOCKS Port , in CPAConfiguration.m line 137: **NSInteger port = (arc4random()...

I try to add objctox manually, but can't build. here is my step 1. drag classes folder. (check copy if needed) 2. add pod:toxcore,Realm,TPCircularBuffer. (cocoalumberjack already have) when I build...

My project is iOS project. I already add `NSCameraUsageDescription` in my project info.plist. I will keep trying today~ thanks for your reply! UPDATE: Maybe I do not have a self...

Actually I use the same version as Antidote `pod 'objcTox', :git => 'https://github.com/Antidote-for-Tox/objcTox.git', :commit => 'bf0097c5a98d7be24672f801a6a9e5031e6b0c21'` I am not sure if this cause my crash, but I will update immediately....

I run it on my devices(SE,5s,iPad), it can't run on my simulator. Look like vpx framework not include x86_64 architecture. ``` Undefined symbols for architecture x86_64: "_vp8_copy32xn", referenced from: _vp8_create_compressor...

Yes, receiving Video work well. When I ``` do { try self.submanagerCalls.enableVideoSending(true, for: self.actCall) } catch { print("fail enableVideo") } ``` or ``` do { self.actCall = try self.submanagerCalls.call(to: chat!,...

it works perfectly well... I modify the demo to make a call to the other demo, it can send video well. I will do more research for my project.(I will...

Answer is coming.. Finally, it seems that some where in toxcore conflict with MobileVLCKit, when I remove VLC pod, it work well...