admin管理员组文章数量:1287231
I got a problem with my newest react native app. I have implemented @rnmapbox/maps and only use it to show the location of the operator of the app. So I don't use any data from the user. This is the only usage:
<Mapbox.MapView
style={styles.map}
logoEnabled={false}
scaleBarEnabled={false}>
<Camera
centerCoordinate={[
community.address.latitude ?? 0,
community.address.longitude ?? 0,
]}
...
/>
<PointAnnotation
coordinate={[
community.address.latitude ?? 0,
community.address.longitude ?? 0,
]}
id={'location'}>
<Icon
name={'location'}
...
/>
</PointAnnotation>
</Mapbox.MapView>
Since my last update of the app, I got an issue from google/android (in iOS everything is fine)
Issue details
We found an issue in the following area(s):
Version code 26: Policy Declaration - Data Safety Section: Location Data Type - Precise Location
We detected user data transmitted off devices that you have not disclosed in your app’s >data safety form as user data collected.
Can anybody help me? How can I stop mapbox from trying to get the location? I can't find anybody with the same problem...
Thanks for your help Greetings Sim
本文标签: stop mapbox from requestin location on android not possiblegt react nativeStack Overflow
版权声明:本文标题:stop mapbox from requestin location on android not possible-> react native - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741223136a2361351.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论