How to disable background location access in webview - react-native

I have built a webview apk from expo(React native) and i am not taking location from user but Applying my app to playstore getting rejected since they are saying you are using location is there any way to disable background location in webview.
I have no idea,since i am newbie to react native

Related

React native deep link , app architecture issue

I am using branch io to implement deep linking in our react native app. I am able to navigate to different screens using the deep link from push notification when the app is in background state .
The issue occurs when app is started from fresh state. We have a Splash screen that is the default screen that loads after app starts and some logic is written in it like initializing app location ,verifying the jwt token is valid. Setting app localizations.
After these actions we navigate user to the home screen. In case of using deep link to fresh start the app it skips the Splash screen and navigates straight to the specific screen and in the result the actions we have to perform on Splash screen get skipped.
Please suggest a way to deal with this issue.

How to stop opening React Native app on Link(website link) access or click

I have a React Native application for both Android and iOS. Along with a React web application. Now temporarily I need to stop opening React Native app upon clicking our web application routing link either in email or chat messages or etc.
Tried doing so by commenting out RCTLinkingManager references and Linking react native code. But no luck.

How to know which app is getting used in background in your react native app?

I wanted to build an app which can send notifications to the user if he uses a particular app for more than 15 minutes...for this I need to trace which app the user is using even when my react native app is not being used(i.e. it is present in the background). Is there any react native library which can help me to know the app which the user is using in the present?
There's no way to do this. Your app would have to be running in the background at all times, and even then the OS would have to support such a feature.

How to fetch location even when the app is minimised in react-native?

A react native app that tracks location once user allows permmission to the app. The location should be tracked when the app is minimised also and with the location change every 5min a post request to Backend server with the location updates.
In order to enable geolocation in the background, you need to include the NSLocationAlwaysUsageDescription key in Info.plist and add location as a background mode in the 'Capabilities' tab in Xcode.
react-native-geolocation-service
Have a look at this library that allows you to do background task
https://github.com/jamesisaac/react-native-background-task

Acessing the dynamic link when the App is in the Background React Native FIrebase

getInitialLink() works when the app is closed and onLink works while the app is running but when the app is backgrounded clicking on the dynamic link is opening the app but when I execute the getInitialLink() once the app becomes active the link with which the app is opened initially is shown not the current one.
EDIT:
I'm currently implementing the App only for iOS