Insider SDK might not be initialized properly. In the Android project, the Insider SDK should be initialized in the Insider onCreate method right after the super.onCreate() call.
If you have multiple callers in the onCreate method, some callers are asynchronous. In this case, the Insider SDK initialization might be experiencing 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.