mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-07-15 17:02:58 +01:00
Fixed android location settings for wifi network connections as didn't exist Added some better wording to assist Signed-off-by: Lance Chant <13349722+lancechant@users.noreply.github.com>
10 lines
609 B
XML
10 lines
609 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<!-- Reading the connected Wi-Fi SSID requires ACCESS_WIFI_STATE, and (since
|
|
Android 8) ACCESS_FINE_LOCATION granted at runtime. Location is requested
|
|
at runtime by the app via expo-location; the manifest declares the
|
|
Wi-Fi/network permissions this module needs directly. -->
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
</manifest>
|