Open Raenar4k opened 5 months ago
Hello, I'll take a look into this shortly, thanks
@Raenar4k can you check if you have android:name
tag in your Manifest file?
@jakubuid
What do you mean? android:name
attribute can be used in multiple places.
Yes, we use it for our application
, activity
, service
, provider
and other places too.
Im not sure where should i be looking and how it is connected to koin crash
Hey, I meant in AndroidManifest. I was able to reproduce and fix by setting this in AndroidManifest of my sample app
As you can see, we have 23 of these attributes in our AndroidManifest file.
Which xml tag with this attribute affects Koin?
<application
android:name=".App"
<activity
android:windowSoftInputMode="adjustResize"
android:name="com.test.app.AppActivity"
<service
android:name=".feature.push.FirebasePushService"
<provider
android:name="androidx.core.content.FileProvider"
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
There are others but i doubt they are relevant
Describe the bug
Crash when we are calling Web3ModalComponent composable function:
SDK Version
1.31.4
To Reproduce Steps to reproduce the behavior:
Web3ModalComponent
in compose code.Expected behavior Compose function works correctly, we get a WC modal UI