Hi, recently updated to react native 0.76, so using MainApplication.kt instead of java. The react native docs only have guidance on .java version of react native. This is my stab at initializing the module. In app when I try to present the intercom messenger it errors out with “Content could not be loaded” with no error message or logs.
```
import com.intercom.reactnative.IntercomModule
```
```
override fun onCreate() {
super.onCreate()
SoLoader.init(this, OpenSourceMergedSoMapping) // Initialize SoLoader first
// Initialize Intercom after SoLoader
IntercomModule.initialize(this,
"apikey",
"appkey"
)
if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) {
load()
}
}
```
This setup is unfortunately not working, but works perfectly on iOS. Any ideas?