ANSWERED

Auto start option on Android Devices

Is there any function to configure the APP as Auto Start? That is, when the Android device restarts, the APP will automatically open
ANSWERED

How can I activate the APP to install it on Android version 10 and 11?

I generated an APP and it works very well on Android version 12, however, on devices with Android v10 and v11 the APP does not work.
ANSWERED

iOS submission issue

Hi :) We're trying to publish our app on iOS, but when we submit it, Apple raises an issue about the App Tracking Transparency permission : **Guideline 2.1 - Information Needed** We're looking forward to completing our review, but we need more information to continue. Your app uses the AppTrackingTransparency framework, but we are unable to locate the App Tracking Transparency permission request when reviewed on iOS 17.4.1. However, we have enabled App Tracking Transparency in our app configuration, as well as Automatic Consent on Load. We have also provided a User Tracking Description. Have we missed something ? Thank you,
ANSWERED

How do I enable iOS badge clearing?

When receiving a notification, the badge count is increased automatically. The badge correctly disappears on opening the app. But with every new notification, the badge count keeps increasing, it is never cleared. I have tried setting OneSignal_disable_badge_clearing to NO in the following two places, but it doesn't change anything LeanIOS > Supporting Files > MedianIos-Info.plist OneSignalNotificationServiceExtension > Info.plist
ANSWERED

SHA-1 signing certificate fingerprint restricts

I need SHA-1 fingerprint restrictions for my app's signing certificate so that my google registration works
ANSWERED

Code to hide the top menu and code to hide the page footer

Please, what is the code you used to hide the top menu and the code to hide the page footer in this explanation video? <https://www.youtube.com/watch?v=ERwkZmwZXwg>
ANSWERED

Problematic application debugging

How do I turn off apk debugging? I have not been able to publish for 2 weeks because of this problem. Please help...
ANSWERED

deep linking confusion

Hey there, <br> I have entered "links.grabmycontact.com" as the domain for Universal Links / Deep Links. I have created <https://links.grabmycontact.com/.well-known/assetlinks.json> I installed the APK on my phone. I have not yet purchased a license -- don't know if that's relevant. When I go to <https://links.grabmycontact.com/1520e27250fdc49b8efe81f84bbaf8e1225ba598>, I end up in the browser and not the app. I'm sure I'm missing something -- I just don't know what. All insight and clues welcome! <br>
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.