I can't connect to the panel with a QR code scan with an Android device

Prev Next

Insider SDK might not be initialized properly. In the Android project, Insider SDK should be initialized with the Insider onCreate method right after the super.onCreate() call.

If you have multiple callers inside the onCreate method, some callers are asynchronous. In this case, Insider SDK initialization might have issues. That’s why you should initialize it right after the super.onCreate() call. 

You should not initialize the SDK before the super.onCreate() call as it will not function due to the lifecycle.

In the app-level build.gradle file, there must be one manifestPlaceholders under the defaultConfig, and this manifestPlaceholders must include the same partner name as the Insider.Instance.init method.