Krisid Misso

Results 15 comments of Krisid Misso

@EddyVerbruggen, any update on this? Android 6.0 and 7.1 and 8.0 wont show notifications if the app is close(killed)

I dont know if it is possible but what i am trying to do is to fire local notification after a push notification is received. It works if the app...

@roshangm1 added the solution but its not merged yet. For the moment just modify the file in node_modules: `node_modules/react-native-oauth/android/src/main/java/io/fullstack/oauth/OAuthManagerDialogFragment.java`: ``` ... mWebView.getSettings().setJavaScriptEnabled(true); mWebView.getSettings().setDomStorageEnabled(true); // add this line (112) mWebView.getSettings().setUserAgentString("Mozilla/5.0 (Linux;...

> @roshangm1 added the solution but its not merged yet. For the moment just modify the file in node_modules: `node_modules/react-native-oauth/android/src/main/java/io/fullstack/oauth/OAuthManagerDialogFragment.java`: > > ``` > ... > mWebView.getSettings().setJavaScriptEnabled(true); > mWebView.getSettings().setDomStorageEnabled(true); >...

@lukeramsden you could ty to set **isUserInteractionEnabled**: `````` as described here https://github.com/NativeScript/NativeScript/issues/2892 i had the same issue

> Guys, I managed to find a solution. When I implemented firebase into my project, it requested from me to have `use_frameworks! `in Podfile. That was the time I started...

@mikehardy thank you for the quick reply. Do you suggest any workaround for a specific library (i.e.: VisionCamera) to skip `use_frameworks!`? Below is my Podfile: ``` require_relative '../node_modules/react-native/scripts/react_native_pods' require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'...

@raajnadar use the latest stable version for every lib. This issue is for android in debug mode. In release seems to be working ok. ios debug mode doesnt have any...

@hb-webdev thanks to @bglgwyng and @mikehardy I was able to run my application with Firebae and Camera libs today. Here is my final Podfile: ``` require_relative '../node_modules/react-native/scripts/react_native_pods' require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' $FirebaseSDKVersion...

upgrading to the latest stable version doesnt fix the issue, yet