AndroidManifest.xml
changeset 156 26442a8a7669
parent 148 c169121bd07e
child 163 52e96a8a743d
equal deleted inserted replaced
155:7919a49cd5c6 156:26442a8a7669
     1 <?xml version="1.0" encoding="utf-8"?>
     1 <?xml version="1.0" encoding="utf-8"?>
     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="1" android:versionName="1.0">
     3 	package="com.beem.project.beem" android:versionCode="1"
     4 	<application android:label="@string/app_name" android:name="BeemApplication" android:theme="@style/customtheme.contactList" android:icon="@drawable/signal">
     4 	android:versionName="1.0">
       
     5 	<application android:label="@string/app_name" android:name="BeemApplication" android:icon="@drawable/signal">
     5 		<activity android:name=".ui.ContactList" android:label="@string/app_name">
     6 		<activity android:name=".ui.ContactList" android:label="@string/app_name">
     6 			<intent-filter>
     7 			<intent-filter>
     7 				<action android:name="android.intent.action.MAIN" />
     8 				<action android:name="android.intent.action.MAIN" />
     8 				<category android:name="android.intent.category.LAUNCHER" />
     9 				<category android:name="android.intent.category.LAUNCHER" />
     9 				<category android:name="android.intent.category.ACCOUNT_CREATE" />
    10 				<category android:name="android.intent.category.ACCOUNT_CREATE" />
    13 			android:label="@string/app_name" />
    14 			android:label="@string/app_name" />
    14 		<activity android:name=".ui.SendIM" android:label="@string/app_name" />
    15 		<activity android:name=".ui.SendIM" android:label="@string/app_name" />
    15 		<activity android:name=".ui.ChangeStatus" android:label="@string/app_name" />
    16 		<activity android:name=".ui.ChangeStatus" android:label="@string/app_name" />
    16 		<activity android:name=".ui.AccountCreation" android:label="@string/app_name" />
    17 		<activity android:name=".ui.AccountCreation" android:label="@string/app_name" />
    17 		<activity android:name=".ui.AddContact" android:label="@string/app_name" />
    18 		<activity android:name=".ui.AddContact" android:label="@string/app_name" />
    18 		<activity android:name=".ui.Subscription" android:label="@string/app_name" />
       
    19 		<service android:name="BeemService" android:enabled="true"
    19 		<service android:name="BeemService" android:enabled="true"
    20 			android:label="Beem Service" android:permission="com.beem.project.beem.BEEM_SERVICE">
    20 			android:label="Beem Service" android:permission="com.beem.project.beem.BEEM_SERVICE">
    21 			<intent-filter>
    21 			<intent-filter>
    22 				<action android:name="com.beem.project.beem.BeemService"></action>
    22 				<action android:name="com.beem.project.beem.BeemService"></action>
    23 			</intent-filter>
    23 			</intent-filter>