summaryrefslogtreecommitdiffstats
path: root/TvProvision/AndroidManifest.xml
diff options
context:
space:
mode:
authorXin Li <delphij@google.com>2018-08-06 16:50:08 -0700
committerXin Li <delphij@google.com>2018-08-06 16:50:08 -0700
commit482122268ed4df781014cbdeefd29a8c804904f3 (patch)
tree5b2ae5d18d369c884c129a008c0d46c09199a2f0 /TvProvision/AndroidManifest.xml
parent0be683f290141610b055a5b2a1edfebd8843885d (diff)
parent454d6a1e4ffecbd1a3b8b17413a4d798a845ca4b (diff)
downloaddevice_google_atv-master-cuttlefish-testing-release.tar.gz
device_google_atv-master-cuttlefish-testing-release.tar.bz2
device_google_atv-master-cuttlefish-testing-release.zip
Bug: 112104996 Change-Id: I53eab9cd8b5e6203f6d03e4c7471221ce2504fdb
Diffstat (limited to 'TvProvision/AndroidManifest.xml')
-rw-r--r--TvProvision/AndroidManifest.xml39
1 files changed, 39 insertions, 0 deletions
diff --git a/TvProvision/AndroidManifest.xml b/TvProvision/AndroidManifest.xml
new file mode 100644
index 0000000..389939e
--- /dev/null
+++ b/TvProvision/AndroidManifest.xml
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (C) 2018 The Android Open Source Project
+
+ 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"
+ package="com.android.tv.provision">
+
+ <original-package android:name="com.android.tv.provision" />
+
+ <!-- For miscellaneous settings -->
+ <uses-permission android:name="android.permission.WRITE_SETTINGS" />
+ <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
+ <uses-permission android:name="android.permission.MANAGE_USERS" />
+
+ <application>
+ <activity android:name="DefaultActivity"
+ android:excludeFromRecents="true">
+ <intent-filter android:priority="3">
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.HOME" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.SETUP_WIZARD" />
+ </intent-filter>
+ </activity>
+ </application>
+</manifest>
+