'react native app can't open from background state

I have developed an app using React Native. It not opening, when try to open from recent apps(background state). This issue is not found in all phone only in some phones like OPPO 13+

Please help someone to solve this.



Solution 1:[1]

I also faced the same problems. and you should check your device's android version. after android 7.4 you should configure AndroidManifest.xml more something like below

 <receiver
    android:name=".AutoRun"
    android:enabled="true"
    android:exported="false">
    <intent-filter>
        <action android:name="android.intent.action.BOOT_COMPLETED"/>
    </intent-filter>
</receiver>

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 whereJERRY