aboutsummaryrefslogtreecommitdiff
path: root/apps/CameraITS/service/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'apps/CameraITS/service/AndroidManifest.xml')
-rw-r--r--apps/CameraITS/service/AndroidManifest.xml52
1 files changed, 0 insertions, 52 deletions
diff --git a/apps/CameraITS/service/AndroidManifest.xml b/apps/CameraITS/service/AndroidManifest.xml
deleted file mode 100644
index 1dcadd5..0000000
--- a/apps/CameraITS/service/AndroidManifest.xml
+++ /dev/null
@@ -1,52 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-
-<!-- Copyright (C) 2013 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.camera2.its">
- <uses-feature android:name="android.hardware.camera" android:required="true"/>
- <uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />
- <uses-feature android:name="android.hardware.camera.flash" android:required="false"/>
- <uses-feature android:name="android.hardware.camera.front" android:required="false"/>
- <uses-feature android:name="android.hardware.sensor.accelerometer" android:required="true" />
- <uses-feature android:name="android.hardware.sensor.compass" android:required="true" />
- <uses-feature android:name="android.hardware.sensor.gyroscope" android:required="true" />
- <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
- <uses-permission android:name="android.permission.CAMERA" />
- <uses-permission android:name="android.permission.INTERNET" />
- <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
- <uses-permission android:name="android.permission.WAKE_LOCK" />
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
- <uses-permission android:name="android.permission.VIBRATE" />
- <application
- android:label="@string/app_name"
- android:largeHeap="true"
- android:theme="@android:style/Theme.Holo"
- >
- <service
- android:name=".ItsService"
- android:label="@string/app_name"
- >
- <intent-filter>
- <action android:name="com.android.camera2.its.START"/>
- <category android:name="android.intent.category.DEFAULT" />
- <data android:mimeType="text/plain" />
- </intent-filter>
- </service>
- </application>
-</manifest>
-