summaryrefslogtreecommitdiff
authorXiaoliang Wang <xiaoliang.wang@amlogic.com>2017-08-03 04:55:01 (GMT)
committer Xiaoliang Wang <xiaoliang.wang@amlogic.com>2017-08-03 04:55:01 (GMT)
commit7f7cfce8975a05664669b3fe8014c1b2bd4f1b40 (patch)
tree83913e423bcf767ff60d544a84c56b23afcd5a60
parentbdd1a91c640797dd0e01e3d22a1f09418653eb48 (diff)
downloadAppInstaller-7f7cfce8975a05664669b3fe8014c1b2bd4f1b40.zip
AppInstaller-7f7cfce8975a05664669b3fe8014c1b2bd4f1b40.tar.gz
AppInstaller-7f7cfce8975a05664669b3fe8014c1b2bd4f1b40.tar.bz2
AppInstaller: supplement to add permission on o [1/1]
PD# 147186 add new REQUEST_INSTALL_PACKAGES permission on android o when start activity Change-Id: I42addbb6728cc46f0fb6992afba9835640f81753
Diffstat
-rw-r--r--AndroidManifest.xml16
1 files changed, 2 insertions, 14 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 46c0a5d..c5bcaba 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -1,27 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2012 Amlogic, Inc.
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
--->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:sharedUserId="android.uid.system"
android:versionCode="1"
android:versionName="1.0" package="com.droidlogic.appinstall">
+
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="23"/>
<supports-screens android:largeScreens="true" android:smallScreens="true" android:resizeable="true" android:normalScreens="true"></supports-screens>
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.INSTALL_PACKAGES"></uses-permission>
+ <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"></uses-permission>
<uses-permission android:name="android.permission.DELETE_PACKAGES"></uses-permission>
<uses-permission android:name="android.permission.CLEAR_APP_USER_DATA"></uses-permission>
<uses-permission android:name="android.permission.CLEAR_APP_CACHE"></uses-permission>