I have downloaded meeting sdk “zoom-sdk-android-6.1.10.23878”. In my android app, I imported ‘mobilertc’ as module.
Then I copied all the code of ‘sample’ project in existing app. I’m able to successfully build the project and generated JWT as well. But the problem is
“SDK is not initializing”. The problem is not related to the JWT because when use same JWT in “zoom-sdk-android-6.1.10.23878” sample project, it worked.
Can somebody guide me to troubleshoot the problem?
Hi Shahzad,
Try checking if there’s an issue with your network connection.
Ensure it’s stable and consider switching networks or reconnecting to WiFi.
Also, double-check your app’s permissions for internet access and ensure that any firewalls or network security settings are not blocking SDK initialization
Well currently i’ve declared these permissions:
uses-permission android:name=“android.permission.INTERNET” />
uses-permission android:name=“android.permission.FOREGROUND_SERVICE” />
uses-permission android:name=“android.permission.POST_NOTIFICATIONS” />
But if a there’s permission related problem, then it should show a crash.