diff options
author | Sol Boucher <solb@google.com> | 2014-06-11 23:26:00 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-06-11 23:10:23 +0000 |
commit | 8d336682d47df82c9a61af89fe7fc3e0e9daf358 (patch) | |
tree | 14aed605c5334729824ffef748ee3fb3a5c01bc5 /tests/Camera2Tests/CameraToo/AndroidManifest.xml | |
parent | 84ecb7e1aad92598cc675bf4dfb8516b70daa5e1 (diff) | |
parent | b84fdffad40226ca642680c7d1eec7c7799f07aa (diff) | |
download | frameworks_base-8d336682d47df82c9a61af89fe7fc3e0e9daf358.zip frameworks_base-8d336682d47df82c9a61af89fe7fc3e0e9daf358.tar.gz frameworks_base-8d336682d47df82c9a61af89fe7fc3e0e9daf358.tar.bz2 |
Merge "Add CameraToo, a sample point-and-shoot camera app"
Diffstat (limited to 'tests/Camera2Tests/CameraToo/AndroidManifest.xml')
-rw-r--r-- | tests/Camera2Tests/CameraToo/AndroidManifest.xml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/Camera2Tests/CameraToo/AndroidManifest.xml b/tests/Camera2Tests/CameraToo/AndroidManifest.xml new file mode 100644 index 0000000..a92b5d8 --- /dev/null +++ b/tests/Camera2Tests/CameraToo/AndroidManifest.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> + +<!-- + Copyright (C) 2014 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.example.android.camera2.cameratoo"> + <uses-permission android:name="android.permission.CAMERA" /> + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> + <application android:label="CameraToo"> + <activity + android:name=".CameraTooActivity" + android:screenOrientation="portrait"> + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + <category android:name="android.intent.category.LAUNCHER" /> + </intent-filter> + </activity> + </application> +</manifest> |