AndroidManifest.xml
author nikita@nikita-laptop
Mon, 15 Feb 2010 22:37:32 +0100
changeset 671 25f6fded204a
parent 655 a122632f8622
child 678 d1a599ccf879
child 685 bd5bddda04dd
permissions -rw-r--r--
i have temporarly deleted jingle features from the trunk, report you to http://beem-project.com/hg/beem-audio/ if you are interested

<?xml version="1.0" encoding="UTF-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
	package="com.beem.project.beem" android:versionCode="3"
	android:versionName="0.1.2">
	<application android:label="@string/app_name"
		android:icon="@drawable/beem_launcher_icon_silver" android:theme="@style/Theme.BEEM.Default"
		android:debuggable="true" android:name="@string/app_name">
		<activity android:name=".ui.Login" android:label="@string/app_name"
			android:screenOrientation="portrait" android:launchMode="singleTask">
			<intent-filter>
				<action android:name="android.intent.action.MAIN" />
				<category android:name="android.intent.category.LAUNCHER" />
			</intent-filter>
		</activity>
		<activity android:name=".ui.LoginAnim" android:label="@string/login_login_progress"
			android:launchMode="singleTop" />
		<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.Chat" android:label="@string/chat_name"
			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.GroupList" android:label="GroupList">
			<intent-filter android:label="Beem Connection">
				<action
					android:name="com.beem.project.beem.service.XmppConnectionAdapter.CONNECTION_CLOSED" />
			</intent-filter>
		</activity>
		<activity android:name=".ui.PrivacyList" android:label="@string/privacy_list_name">
			<intent-filter android:label="Beem Connection">
				<action
					android:name="com.beem.project.beem.service.XmppConnectionAdapter.CONNECTION_CLOSED" />
			</intent-filter>
		</activity>
		<!--
			Could be interesting if we would launch beem at startup <receiver
			android:name=".tool.BeemBroadcastReceiver" android:enabled="true">
			<intent-filter> <action
			android:name="android.intent.action.BOOT_COMPLETED" />
			</intent-filter> </receiver>
		-->
		<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.ACCESS_NETWORK_STATE"></uses-permission>
	<uses-sdk android:minSdkVersion="3" />
	<supports-screens android:largeScreens="true"
		android:normalScreens="true" android:smallScreens="true" android:anyDensity="true" />
</manifest>