AndroidManifest.xml
author Da Risk <darisk972@gmail.com>
Fri, 16 Oct 2009 17:21:42 +0200
changeset 463 fbb5d00cb7ee
parent 451 63cffd88721d
child 467 04e6c855e58e
permissions -rw-r--r--
On va rester en version minimum 3 pour l'instant

<?xml version="1.0" encoding="UTF-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
	package="com.beem.project.beem" android:versionCode="1"
	android:versionName="1.0">
	<application android:label="@string/app_name" android:icon="@drawable/signal"
		android:theme="@style/Theme.BEEM.Default" android:debuggable="true">
		<activity android:name=".ui.Login" android:label="@string/app_name"
			android:launchMode="singleTask">
			<intent-filter>
				<action android:name="android.intent.action.MAIN" />
				<category android:name="android.intent.category.LAUNCHER" />
			</intent-filter>
			<intent-filter android:label="Beem Connection">
				<action
					android:name="com.beem.project.beem.service.XmppConnectionAdapter.CONNECTION_CLOSED" />
			</intent-filter>
		</activity>
		<activity android:name=".ui.Settings" android:label="@string/edit_settings_name">
			<intent-filter android:label="Beem Connection">
				<action
					android:name="com.beem.project.beem.service.XmppConnectionAdapter.CONNECTION_CLOSED" />
			</intent-filter>
		</activity>
		<activity android:name=".ui.SendIM" android:label="@string/SendIMActTitle"
			android:launchMode="singleTop">
			<intent-filter android:label="Beem Connection">
				<action
					android:name="com.beem.project.beem.service.XmppConnectionAdapter.CONNECTION_CLOSED" />
			</intent-filter>
		</activity>
		<activity android:name=".ui.ChangeStatus" android:label="@string/ChangeStatusActTitle">
			<intent-filter android:label="Beem Connection">
				<action
					android:name="com.beem.project.beem.service.XmppConnectionAdapter.CONNECTION_CLOSED" />
			</intent-filter>
		</activity>
		<activity android:name=".ui.AddContact" android:label="@string/AddCActTitle">
			<intent-filter android:label="Beem Connection">
				<action
					android:name="com.beem.project.beem.service.XmppConnectionAdapter.CONNECTION_CLOSED" />
			</intent-filter>
		</activity>
		<activity android:name=".ui.Subscription" android:label="@string/app_name">
			<intent-filter android:label="Beem Connection">
				<action
					android:name="com.beem.project.beem.service.XmppConnectionAdapter.CONNECTION_CLOSED" />
			</intent-filter>
		</activity>
		<activity android:name=".ui.CreateAccount" android:label="@string/create_account_name" />
		<activity android:name=".ui.ContactList" android:label="@string/contact_list_name"
			android:launchMode="singleTask">
			<intent-filter android:label="Beem Connection">
				<action
					android:name="com.beem.project.beem.service.XmppConnectionAdapter.CONNECTION_CLOSED" />
			</intent-filter>
		</activity>
		<activity android:name=".ui.UserInfo" android:label="@string/user_info_name">
			<intent-filter android:label="Beem Connection">
				<action
					android:name="com.beem.project.beem.service.XmppConnectionAdapter.CONNECTION_CLOSED" />
			</intent-filter>
		</activity>
		<activity android:name=".jingle.demo.JingleCallActivity"
			android:label="JingleDemoCall">
			<intent-filter>
				<action android:name="android.intent.action.MAIN" />
				<category android:name="android.intent.category.LAUNCHER" />
			</intent-filter>
		</activity>
		<activity android:name=".ui.GroupList" android:label="GroupList">
			<intent-filter android:label="Beem Connection">
				<action
					android:name="com.beem.project.beem.service.XmppConnectionAdapter.CONNECTION_CLOSED" />
			</intent-filter>
		</activity>
		<service android:name="BeemService" android:enabled="true"
			android:label="Beem Service" android:permission="com.beem.project.beem.BEEM_SERVICE">
			<intent-filter>
				<action android:name="com.beem.project.beem.BeemService"></action>
			</intent-filter>
		</service>
	</application>
	<permission android:permissionGroup="android.permission-group.NETWORK"
		android:label="BeemService" android:description="@string/BeemServiceDescription"
		android:name="com.beem.project.beem.BEEM_SERVICE"></permission>
	<uses-permission android:name="android.permission.INTERNET"></uses-permission>
	<uses-permission android:name="android.permission.VIBRATE"></uses-permission>
	<uses-permission android:name="com.beem.project.beem.BEEM_SERVICE"></uses-permission>
	<uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS"></uses-permission>
	<uses-sdk android:minSdkVersion="3"></uses-sdk>

</manifest>