Android:exported=“true” missing in manifest

Temporary solution is you need to edit AndroidManifest.xml of apk and add android:exported=“true” under activity tag like this

<activity 
android:theme="@style/Theme.MyApplication" 

android:name="com.MyApplication.app.MainActivity"
android:exported="true">

I guess :thinking: this only need when app target to api 31

2 Likes

Ok thanks but how i can edit my androidmanifest file