diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2021-03-22 11:48:47 +0100 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2021-03-23 06:55:38 +0100 |
commit | 76a30ac646faf1c638736c10e834bb7b0ed243ef (patch) | |
tree | 229b4f74ef78c153587306a72595204fef6460f4 /android | |
parent | 17965775f80f6beb7a88286a8127f5f9c78ef8e1 (diff) |
Related tdf#129833 android: Drop android.permission.INTERNET
The permission was requested since ownCloud support was added
in commit 69773f54bbac08953f0fbce16eecea0816e04338
("Android: initial implementation of ownCloud provider.",
2015-01-21).
Since the custom ownCloud support has been dropped in commit
6012599e17206ee7be9a83477654e7bd194079c3
("tdf#129833 android: Drop non-working ownCloud/nextCloud support"),
there should no longer be any need to require Internet access,
so drop the permission again.
Access to ownCloud and other Internet services providing file
access now goes via DocumentProviders, and the corresponding
apps providing those should take care of
being allowed to access the internet by themselves.
I tested that opening and editing a file located
on a NextCloud share still works OK when the NextCloud
app is installed and set up.
Change-Id: Id8425e7afcd5ecc26d14ba9f42018f536d0a6a6e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112879
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'android')
-rw-r--r-- | android/source/AndroidManifest.xml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/android/source/AndroidManifest.xml b/android/source/AndroidManifest.xml index 58da19119828..ae37c4fe8054 100644 --- a/android/source/AndroidManifest.xml +++ b/android/source/AndroidManifest.xml @@ -9,7 +9,6 @@ <uses-feature android:name="android.hardware.usb.host" android:required="false"/> <uses-feature android:name="android.hardware.camera" android:required="false"/> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> - <uses-permission android:name="android.permission.INTERNET" /> <!-- extractNativeLibs="true" needed e.g. for NSS to load modules at runtime --> <application |