AndroidManifest.xml revision 1c9454b217a7c470dc8b8bf3940679a222ed9ced
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16
17<!-- Declare the contents of this Android application.  The namespace
18     attribute brings in the Android platform namespace, and the package
19     supplies a unique name for the application.  When writing your
20     own application, the package name must be changed from "com.example.*"
21     to come from a domain that you own or have control over. -->
22<manifest xmlns:android="http://schemas.android.com/apk/res/android"
23    package="com.example.android.videochatcameratest">
24
25    <uses-sdk
26        android:minSdkVersion="8"
27        android:targetSdkVersion="8"
28        />
29    <uses-permission android:name="android.permission.CAMERA" />
30    <uses-feature android:name="android.hardware.camera" />
31    <uses-feature android:name="android.hardware.camera.autofocus" />
32
33    <!-- This package contains an application...  The 'label' is the name
34         to display to the user for the overall application, and provides
35         a default label for all following components.  The syntax here is a
36         reference to one of our string resources.-->
37    <application android:label="@string/videochatcameratest_app">
38
39        <!-- An Activity in the application - this is something the user
40             can launch and interact with.  The "name" attribute is the
41             name of the class within your package that implements this
42             activity. -->
43        <activity android:name="VideoChatTestActivity">
44
45            <!-- An IntentFilter tells the system when it should use your
46                 activity.  This allows the user to get to your activity
47                 without someone having to explicitly know to launch your
48                 class "com.example.android.videochatcameratest.VideoChatTestActivity". -->
49            <intent-filter>
50                <!-- The MAIN action describes a main entry point into an
51                     activity, without any associated data. -->
52                <action android:name="android.intent.action.MAIN" />
53
54                <!-- This places this activity into the main app list. -->
55                <category android:name="android.intent.category.LAUNCHER" />
56            </intent-filter>
57
58        </activity>
59
60    </application>
61
62</manifest>
63