AndroidManifest.xml
author Da Risk <darisk972@gmail.com>
Sat, 21 Mar 2009 02:09:05 +0100
changeset 33 0e65d5f55d2f
parent 31 85faac00d92c
parent 22 280112cd9602
child 42 a0baf41c24a1
permissions -rw-r--r--
Merge with ui. Synchronous connection worked. Add some checkstyle xml rules to use with the checkstyle plugin for eclipse and also a formatter for eclipse. Still work needs on asynchrounous connect

<?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">
		<activity android:name=".ui.Beem" android:label="@string/app_name">
			<intent-filter>
				<action android:name="android.intent.action.MAIN" />
				<category android:name="android.intent.category.LAUNCHER" />
			</intent-filter>
		</activity>
		<activity android:name=".ui.ContactList" android:label="@string/app_name" />
		<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>
</manifest>