stntz / Xamarin.ZoomBinding

Zoom Mobile SDK Binding for Xamarin Android and iOS(device only)
15 stars 13 forks source link

Fails to initialize for Android #19

Closed gjhdigital closed 4 years ago

gjhdigital commented 4 years ago

Hello, I can initialize fine with iOS but Android wont. Any guidance would be greatly appreciated. The OnZoomSDKInitializeResult returns these values. p0 = 3 and p1 = 5003

public void OnZoomSDKInitializeResult(int p0, int p1) { Console.WriteLine($"Authentication Status: {p0} - {p1}"); }

My initParams are var zoomInitParams = new ZoomSDKInitParams { AppKey = appKey, AppSecret = appSecret, EnableLog = true, LogSize = 50, Domain= "zoom.us", VideoRawDataMemoryMode = ZoomSDKRawDataMemoryMode.ZoomSDKRawDataMemoryModeStack }; zoomSDK.Initialize(Android.App.Application.Context, this, zoomInitParams);

stntz commented 4 years ago

HI @gjhdigital

This is the link for zoom error codes, https://marketplace.zoom.us/docs/sdk/native-sdks/android/resource/error-codes

It's saying Zoom server is currently not available..

gjhdigital commented 4 years ago

great thank you!