ipfs-shipyard / gomobile-ipfs

IPFS and libp2p on Mobile, with Gomobile
Other
324 stars 63 forks source link

Why android bridge module require location permission, I could not find android LocationManager usage in anywhere of project code. #178

Closed ghost closed 6 months ago

ghost commented 1 year ago

Asking a question, not reporting a bug

Is there an existing issue for this?

Question

Android bridge module AndroidManifest.xml has register location permission,Why android bridge module require location permission, I could not find android LocationManager usage in anywhere of project code?

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.BLUETOOTH" />
    <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"/>

Context

Location infomation is sensitive privacy, If user does not granted location permission, Will gomobile-ipfs still work fine?