AndroidManifest.xml
changeset 895 b2e1b45382a4
parent 875 70ca3ab6e459
child 897 98d8df89c3d2
equal deleted inserted replaced
894:5315a5713dd5 895:b2e1b45382a4
     2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     3 	package="com.beem.project.beem" android:versionCode="7"
     3 	package="com.beem.project.beem" android:versionCode="7"
     4 	android:versionName="0.1.5">
     4 	android:versionName="0.1.5">
     5 	<application android:label="@string/app_name"
     5 	<application android:label="@string/app_name"
     6 		android:icon="@drawable/beem_launcher_icon_silver" android:theme="@style/Theme.BEEM.Default"
     6 		android:icon="@drawable/beem_launcher_icon_silver" android:theme="@style/Theme.BEEM.Default"
     7 		android:name=".BeemApplication">
     7 		android:name="BeemApplication">
     8 		<activity android:name=".ui.Login" android:label="@string/app_name"
     8 		<activity android:name=".ui.Login" android:label="@string/app_name"
     9 			android:launchMode="standard">
     9 			android:launchMode="standard">
    10 			<intent-filter>
    10 			<intent-filter>
    11 				<action android:name="android.intent.action.MAIN" />
    11 				<action android:name="android.intent.action.MAIN" />
    12 				<category android:name="android.intent.category.LAUNCHER" />
    12 				<category android:name="android.intent.category.LAUNCHER" />
    28 
    28 
    29 		<activity android:name=".ui.ContactList" android:label="@string/contact_list_name"
    29 		<activity android:name=".ui.ContactList" android:label="@string/contact_list_name"
    30 		    android:launchMode="singleTask" />
    30 		    android:launchMode="singleTask" />
    31 
    31 
    32 		<activity android:name=".ui.GroupList" android:label="GroupList" />
    32 		<activity android:name=".ui.GroupList" android:label="GroupList" />
    33 		<activity android:name=".ui.PrivacyList" android:label="@string/privacy_list_name" />
    33 		<activity android:name="ui.PrivacyList" android:label="@string/privacy_list_name" />
    34 
    34 
    35 		<!--
    35 		<!--
    36 			Could be interesting if we would launch beem at startup <receiver
    36 			Could be interesting if we would launch beem at startup <receiver
    37 			android:name=".tool.BeemBroadcastReceiver" android:enabled="true">
    37 			android:name=".tool.BeemBroadcastReceiver" android:enabled="true">
    38 			<intent-filter> <action
    38 			<intent-filter> <action
    39 			android:name="android.intent.action.BOOT_COMPLETED" />
    39 			android:name="android.intent.action.BOOT_COMPLETED" />
    40 			</intent-filter> </receiver>
    40 			</intent-filter> </receiver>
    41 		-->
    41 		-->
    42 		<provider android:name=".providers.AvatarProvider"
    42 		<provider android:name="providers.AvatarProvider"
    43 		    android:authorities="com.beem.project.beem.providers.avatarprovider"
    43 		    android:authorities="com.beem.project.beem.providers.avatarprovider"
    44 		    android:exported="false" />
    44 		    android:exported="false" />
    45 
    45 
    46 		<service android:name="BeemService" android:enabled="true"
    46 		<service android:name="BeemService" android:enabled="true"
    47 			android:label="Beem Service" android:permission="com.beem.project.beem.BEEM_SERVICE">
    47 			android:label="Beem Service" android:permission="com.beem.project.beem.BEEM_SERVICE">