|
8#
楼主 |
发表于 2014-5-22 14:33:39
|
只看该作者
我的意思我自己搭建一个服务器,那肯定得修改ip和prot吧。我在 AnyChatCoreSDK里只找到了 public native int Connect(String serverip, int port);方法。我想问的是如果要用自己的服务器是不是的写成这样 private void InitialSDK() {
if (anychat == null) {
anychat = new AnyChatCoreSDK();
// anychat.Connect(serverip, port);
anychat.SetBaseEvent(this);
if (configEntity.useARMv6Lib != 0)
AnyChatCoreSDK.SetSDKOptionInt(
AnyChatDefine.BRAC_SO_CORESDK_USEARMV6LIB, 1);
anychat.InitSDK(android.os.Build.VERSION.SDK_INT, 0);
bNeedRelease = true;
}
ApplyVideoConfig();
} |
|