author | marseille |
Fri, 24 Apr 2009 21:41:32 +0200 | |
changeset 184 | e9d73490be9b |
parent 166 | d076437706a4 |
parent 179 | af8a3d0917cc |
child 212 | bbc0b169cdf0 |
child 219 | 79ccbe331695 |
permissions | -rw-r--r-- |
0 | 1 |
<?xml version="1.0" encoding="utf-8"?> |
2 |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
|
22
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
3 |
package="com.beem.project.beem" android:versionCode="1" |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
4 |
android:versionName="1.0"> |
166 | 5 |
<application android:label="@string/app_name" android:name="BeemApplication" |
6 |
android:icon="@drawable/signal"> |
|
52 | 7 |
<activity android:name=".ui.ContactList" android:label="@string/app_name"> |
22
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
8 |
<intent-filter> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
9 |
<action android:name="android.intent.action.MAIN" /> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
10 |
<category android:name="android.intent.category.LAUNCHER" /> |
120 | 11 |
<category android:name="android.intent.category.ACCOUNT_CREATE" /> |
22
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
12 |
</intent-filter> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
13 |
</activity> |
114 | 14 |
<activity android:name=".ui.ContactListSettings" |
15 |
android:label="@string/app_name" /> |
|
42
a0baf41c24a1
Ajout de la partie de barbu. Mais c'est en dur.
marseille@KungFuh
parents:
33
diff
changeset
|
16 |
<activity android:name=".ui.SendIM" android:label="@string/app_name" /> |
110
f9be2a11c4c1
Ajout de l'activité changement de status
Philippe Lago <lago_p@epitech.net>
parents:
109
diff
changeset
|
17 |
<activity android:name=".ui.ChangeStatus" android:label="@string/app_name" /> |
120 | 18 |
<activity android:name=".ui.AccountCreation" android:label="@string/app_name" /> |
132 | 19 |
<activity android:name=".ui.AddContact" android:label="@string/app_name" /> |
179 | 20 |
<activity android:name=".ui.Subscription" android:label="@string/app_name" /> |
22
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
21 |
<service android:name="BeemService" android:enabled="true" |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
22 |
android:label="Beem Service" android:permission="com.beem.project.beem.BEEM_SERVICE"> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
23 |
<intent-filter> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
24 |
<action android:name="com.beem.project.beem.BeemService"></action> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
25 |
</intent-filter> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
26 |
</service> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
27 |
</application> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
28 |
<permission android:permissionGroup="android.permission-group.NETWORK" |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
29 |
android:label="BeemService" android:description="@string/BeemServiceDescription" |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
30 |
android:name="com.beem.project.beem.BEEM_SERVICE"></permission> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
31 |
<uses-permission android:name="android.permission.INTERNET"></uses-permission> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
32 |
<uses-permission android:name="android.permission.VIBRATE"></uses-permission> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
33 |
<uses-permission android:name="com.beem.project.beem.BEEM_SERVICE"></uses-permission> |
52 | 34 |
<uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS"></uses-permission> |
166 | 35 |
<uses-sdk android:minSdkVersion="2"></uses-sdk> |
0 | 36 |
</manifest> |