react-native-invoke-app icon indicating copy to clipboard operation
react-native-invoke-app copied to clipboard

Android 9 Issues

Open ikazmi opened this issue 5 years ago • 6 comments

Hi

First of all, thank you for writing this plugin and sharing it with everyone.

The plugin does not seem to work with Android 9, I have tested with Android 8 and the plugin works without any issues but with Android 9, nothing happens. Any ideas as to what's going on?

ikazmi avatar Mar 10 '19 13:03 ikazmi

same here

fastmanu avatar May 09 '19 10:05 fastmanu

Have you found a solution on android 9.0 yet? can you help me run on android 9.0?

tienviip avatar May 29 '19 17:05 tienviip

Hi

First of all, thank you for writing this plugin and sharing it with everyone.

The plugin does not seem to work with Android 9, I have tested with Android 8 and the plugin works without any issues but with Android 9, nothing happens. Any ideas as to what's going on?

Hello! I am running on Samsung S8 (Android 9) and everything works as it should. Also running on a Samsung S6 (Android 7) and working fine. On emulator (Android 8) works fine too. But unfortunatelly, running on a Galaxy Tab A6 (Android 5.1.1) and not working.

But I don't get any error message on try catch function too.

Any thoughts?


janakact solution fix the problems. Thanks!

tassoruas avatar Jul 19 '19 13:07 tassoruas

I cannot get invokeApp working on Android versions > 8. Is there a fix?

I have tried this but doesn't seem to make a difference:

Screenshot 2019-11-03 at 16 38 53

Thanks!

whenmoon avatar Nov 03 '19 15:11 whenmoon

I think to change in the manifest file would do the job like this android:launchMode="standard">

rizwan92 avatar Jan 23 '20 04:01 rizwan92

I found a solution for my Xiaomi mi9T with MIUI and Android 9 , adding

activityIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)

adding to AndroidManifest for MainActivity:

    android:showWhenLocked="true"
    android:turnScreenOn="true"

and permitting starting in background for my RN app in MIUI app optimization settings

DrSchmurge avatar Apr 24 '20 12:04 DrSchmurge