| <?xml version="1.0" encoding="utf-8"?> |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| package="org.codeaurora.bluetooth.bttestapp" |
| android:versionCode="1" |
| android:versionName="1.0" > |
| |
| <uses-permission android:name="android.permission.BLUETOOTH" /> |
| <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> |
| <uses-permission android:name="android.permission.BLUETOOTH_STACK" /> |
| <uses-permission android:name="android.permission.RECORD_AUDIO" /> |
| |
| <uses-sdk |
| android:minSdkVersion="17" |
| android:targetSdkVersion="17" /> |
| |
| <application |
| android:allowBackup="true" |
| android:icon="@drawable/ic_launcher" |
| android:label="@string/app_name" |
| android:theme="@style/AppTheme" > |
| |
| <uses-library android:name="javax.obex" /> |
| |
| <activity android:name=".MainActivity" > |
| <intent-filter> |
| <action android:name="android.intent.action.MAIN" /> |
| <category android:name="android.intent.category.LAUNCHER" /> |
| </intent-filter> |
| </activity> |
| |
| <activity android:name=".VcardFilterActivity" /> |
| <!--activity |
| android:name=".HfpTestActivity" |
| android:launchMode="singleTop" /--> |
| <activity |
| android:name=".PbapTestActivity" |
| android:launchMode="singleTop" /> |
| <activity |
| android:name=".MapTestActivity" |
| android:launchMode="singleTop" /> |
| <activity android:name=".MessageFilterActivity" /> |
| |
| <service android:name=".ProfileService" /> |
| <!-- |
| <service android:name=".mapclient.BluetoothMnsService"> |
| <intent-filter> |
| <action android:name="org.codeaurora.bluetooth.mapclient.BluetoothMnsService" /> |
| </intent-filter> |
| </service> |
| --> |
| <activity android:name=".services.PbapAuthActivity" |
| android:excludeFromRecents="true" |
| android:theme="@*android:style/Theme.Holo.Dialog.Alert"> |
| <intent-filter> |
| <category android:name="android.intent.category.DEFAULT" /> |
| </intent-filter> |
| </activity> |
| |
| <receiver android:name=".BluetoothConnectionReceiver" > |
| <intent-filter> |
| <action android:name="org.codeaurora.bluetooth.action.NEW_BLUETOOTH_DEVICE" /> |
| <action android:name="android.bluetooth.device.action.ACL_DISCONNECTED" /> |
| </intent-filter> |
| </receiver> |
| |
| </application> |
| |
| </manifest> |