[Android] Add the install packages permission to the dev builds

Nicolas Pomepuy git at videolan.org
Fri Jul 5 09:45:11 UTC 2024


vlc-android | branch: master | Nicolas Pomepuy <nicolas at videolabs.io> | Fri Jul  5 07:38:54 2024 +0200| [570edbd833a03bad7016c79e3aab56cbd5deddb8] | committer: Duncan McNamara

Add the install packages permission to the dev builds

To make the nightly able to auto update

> https://code.videolan.org/videolan/vlc-android/commit/570edbd833a03bad7016c79e3aab56cbd5deddb8
---

 .../vlc-android/src/dev/AndroidManifest.xml        | 31 ++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/application/vlc-android/src/dev/AndroidManifest.xml b/application/vlc-android/src/dev/AndroidManifest.xml
new file mode 100644
index 0000000000..b476597392
--- /dev/null
+++ b/application/vlc-android/src/dev/AndroidManifest.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  ~ *************************************************************************
+  ~  AndroidManifest.xml
+  ~ **************************************************************************
+  ~ Copyright © 2024 VLC authors and VideoLAN
+  ~ Author: Nicolas POMEPUY
+  ~ This program is free software; you can redistribute it and/or modify
+  ~ it under the terms of the GNU General Public License as published by
+  ~ the Free Software Foundation; either version 2 of the License, or
+  ~ (at your option) any later version.
+  ~
+  ~ This program is distributed in the hope that it will be useful,
+  ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+  ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  ~ GNU General Public License for more details.
+  ~
+  ~ You should have received a copy of the GNU General Public License
+  ~ along with this program; if not, write to the Free Software
+  ~ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+  ~ ***************************************************************************
+  ~
+  ~
+  -->
+
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+        xmlns:tools="http://schemas.android.com/tools"
+        android:installLocation="auto">
+
+    <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
+</manifest>
\ No newline at end of file



More information about the Android mailing list