author | dasilvj |
Tue, 26 May 2009 19:56:38 +0200 | |
changeset 212 | bbc0b169cdf0 |
parent 184 | e9d73490be9b |
child 213 | 9bdff6cbd120 |
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" |
212 | 6 |
android:icon="@drawable/signal" |
7 |
android:theme="@style/Theme.BEEM.Default"> |
|
8 |
<activity android:name=".ui.Login" android:label="@string/app_name"> |
|
22
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
9 |
<intent-filter> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
10 |
<action android:name="android.intent.action.MAIN" /> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
11 |
<category android:name="android.intent.category.LAUNCHER" /> |
120 | 12 |
<category android:name="android.intent.category.ACCOUNT_CREATE" /> |
22
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
13 |
</intent-filter> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
14 |
</activity> |
114 | 15 |
<activity android:name=".ui.ContactListSettings" |
16 |
android:label="@string/app_name" /> |
|
42
a0baf41c24a1
Ajout de la partie de barbu. Mais c'est en dur.
marseille@KungFuh
parents:
33
diff
changeset
|
17 |
<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
|
18 |
<activity android:name=".ui.ChangeStatus" android:label="@string/app_name" /> |
120 | 19 |
<activity android:name=".ui.AccountCreation" android:label="@string/app_name" /> |
132 | 20 |
<activity android:name=".ui.AddContact" android:label="@string/app_name" /> |
179 | 21 |
<activity android:name=".ui.Subscription" android:label="@string/app_name" /> |
212 | 22 |
<activity android:name=".ui.EditSettings" android:label="@string/edit_settings_name"> |
23 |
</activity> |
|
24 |
<activity android:name=".ui.CreateAccount" android:label="@string/create_account_name"> |
|
25 |
</activity> |
|
26 |
<activity android:name=".ui.ContactList" android:label="@string/app_name"> |
|
27 |
</activity> |
|
22
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
28 |
<service android:name="BeemService" android:enabled="true" |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
29 |
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
|
30 |
<intent-filter> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
31 |
<action android:name="com.beem.project.beem.BeemService"></action> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
32 |
</intent-filter> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
33 |
</service> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
34 |
</application> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
35 |
<permission android:permissionGroup="android.permission-group.NETWORK" |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
36 |
android:label="BeemService" android:description="@string/BeemServiceDescription" |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
37 |
android:name="com.beem.project.beem.BEEM_SERVICE"></permission> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
38 |
<uses-permission android:name="android.permission.INTERNET"></uses-permission> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
39 |
<uses-permission android:name="android.permission.VIBRATE"></uses-permission> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
40 |
<uses-permission android:name="com.beem.project.beem.BEEM_SERVICE"></uses-permission> |
52 | 41 |
<uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS"></uses-permission> |
212 | 42 |
<uses-sdk android:minSdkVersion="3"></uses-sdk> |
0 | 43 |
</manifest> |