ANSWERED

oneSignalPushOpened

Hi I'm trying to use oneSignalPushOpened but it doesn't work I've followed the instructions of this ticket <https://median.co/discuss/65c11214ef50a6002afc7a46> and the documentation using the bridge without the NPM package and I can't see the data sent, I've tried again but implementing median_library_ready() and the same. After trying everything I decided to install the NPM package, I'll leave my code here but it doesn't work. The last time that I rebuilt the app was 3 weeks ago. ```Text react useEffect(() => { Median.onReady(() => { setIsMedianReady(true); Median.oneSignalPushOpened.addListener(data => { setIsListenerEnabled(true); setData(data); if ("title" in data) { setData2(data.title); } }); }); }, [isNativeApp]); ``` It's hard to find how to implement this because I couldn't find an example in the documentation but finally, I think I'm implementing it correctly. As you can see my code is quite simple and isNativeApp returns true, isMedianReady returns true, but Median.oneSignalPushOpened.addListener() is false so it looks like the addListener is not working. I hope you can help me with this. Thanks
ANSWERED

If my app is based on a wordpress website - will updates to the wordpress website also be live in the app

Essentially - will content updates to a wordpress be immediately live in the app, or would I have to push an update to the app store. Stuff like posts, calendar updates etc. I know this is a basic question, and I apologize it it's in FAQ somewhere, but I haven't been searching the site for the answer.
ANSWERED

Why is my published app on Google Play Store refusing to open

Hello there, Please i publish my mobile app using median.co as a website tp mobile app converter. My mobile app on the Google Play Store has been reviewed and published on the store. However, when a user opens the mobile application to run on their mobile device, the application opens a link (<https://us-central1-gonative-demos.cloudfunctions.net/splash>) on the browser and the mobile app crashes and refuses to open. Please, i am writing to know why this is happening and what are the steps to resolve the issue. Thank you for your assistance in advance and i look forward to a response.
ANSWERED

We need to get our Google Play going again

Can you please publish the Google Play / Android version again? We are getting reports that it isn't visible on the Play store
ANSWERED

I just have a problem I have in the application external download links I want it to go from the application to the browser to download for example Please look into the topic and thank you

I just have a problem I have in the application external download links I want it to go from the application to the browser to download for example Please look into the topic and thank you
ANSWERED

IOS Apps Publishing

Hello, Our application converts website to apps but apple has rejected our submission because lack of native features, can you assists?
ANSWERED

GoNativeCore.framework" failed: No such file or directory

When trying to build our app (which has long worked in local Xcode) we not see the following: <br> ``` rsync error: some files could not be transferred (code 23) at /AppleInternal/Library/BuildRoots/4e1473ee-9f66-11ee-8daf-cedaeb4cabe2/Library/Caches/com.apple.xbs/Sources/rsync/rsync/main.c(996) [sender=2.6.9] Command PhaseScriptExecution failed with a nonzero exit code ``` <br> We can provide any information needed to address the issue, but everyone at our company experiences this same issue when trying to build
ANSWERED

Demo Page working but can't get my own code to work.

If I open my app and then go to <https://median.dev/library-ready/> it seems to work fine. But If I add this to my start page it does nothing. // Set screen brightness and statusbar styling as soon as page loads function median_library_ready(){ // Set screen brightness to 80% median.screen.setBrightness(0.8); // Set status bar to light mode, red color, with overlay median.statusbar.set({ 'style':'light', 'color':'80ff0000', 'overlay':true }); } This is just copied off of the example pages so I figured it would work.
ANSWERED

Screenshots is disabled

How to prevent user from taking screenshot/ screen record in my app
ANSWERED

Keep screen on functionality throwing an error on Android

We're using median.screen.keepScreenOn() and median.screen.keepScreenNormal() to control the screen backlight ([doc](https://median.co/docs/keep-screen-on)) and on iOS it works fine, however on Android when calling these functions via the JS bridge, it throws an error: Uncaught TypeError: median.screen.keepScreenOn is not a function Why is that please?