Beispiel #1
0
        public IOSClient()
        {
            mCloudEncrypter = DummyEncrypter;
            if (Logger.DebugLogEnabled)
            {
                Logger.d("Note: debug logs enabled on IOSClient.");
                GPGSEnableDebugLog(true);
            }
            if (sInstance != null)
            {
                Logger.e("Second instance of IOSClient created. This is not supposed to happen " +
                         "and will likely break things.");
            }
            sInstance = this;

            mRtmpClient = new IOSRtmpClient();
            mTbmpClient = new IOSTbmpClient();
        }
        public IOSClient() {
            mCloudEncrypter = DummyEncrypter;
            if (Logger.DebugLogEnabled) {
                Logger.d("Note: debug logs enabled on IOSClient.");
                GPGSEnableDebugLog(true);
            }
            if (sInstance != null) {
                Logger.e("Second instance of IOSClient created. This is not supposed to happen " +
                    "and will likely break things.");
            }
            sInstance = this;

            mRtmpClient = new IOSRtmpClient();
            mTbmpClient = new IOSTbmpClient();
        }