React Native Error: 'Permission Denial: starting Intent" React Native Error: 'Permission Denial: starting Intent" reactjs reactjs

React Native Error: 'Permission Denial: starting Intent"


In the manifest, Just copy <action android:name="android.intent.action.MAIN" /> for the <intent-filter> in the Splash Activity tag:

<activity  android:name=".SplashActivity"  android:label="@string/app_name"  android:configChanges="keyboard|keyboardHidden|orientation|screenSize"  android:windowSoftInputMode="adjustResize"  android:theme="@style/SplashTheme">  <intent-filter>    <action android:name="android.intent.action.MAIN" />     <category android:name="android.intent.category.LAUNCHER" />  </intent-filter></activity>

and paste inside of <activity android:name=".MainActivity" /> tag like this:

<activity android:name=".MainActivity">  <intent-filter>    <action android:name="android.intent.action.MAIN" />  </intent-filter></activity>