blob: 472667089781f8e754fd41b49831136e34e0528e [file] [log] [blame]
Scott Main67203cc2009-11-30 23:20:55 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2009 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<manifest xmlns:android="http://schemas.android.com/apk/res/android"
17 package="com.example.android.BluetoothChat"
18 android:versionCode="1"
19 android:versionName="1.0">
Vince Harron611cfde2014-04-13 12:17:28 -070020 <uses-sdk android:minSdkVersion="11" />
Scott Main67203cc2009-11-30 23:20:55 -080021 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
22 <uses-permission android:name="android.permission.BLUETOOTH" />
23
24 <application android:label="@string/app_name"
25 android:icon="@drawable/app_icon" >
26 <activity android:name=".BluetoothChat"
27 android:label="@string/app_name"
28 android:configChanges="orientation|keyboardHidden">
29 <intent-filter>
30 <action android:name="android.intent.action.MAIN" />
31 <category android:name="android.intent.category.LAUNCHER" />
32 </intent-filter>
33 </activity>
34 <activity android:name=".DeviceListActivity"
35 android:label="@string/select_device"
Jake Hamby3695fe32011-01-13 16:59:47 -080036 android:theme="@android:style/Theme.Holo.Dialog"
Scott Main67203cc2009-11-30 23:20:55 -080037 android:configChanges="orientation|keyboardHidden" />
38 </application>
39</manifest>