author | marseille@marseille-desktop |
Tue, 02 Jun 2009 17:49:09 +0200 | |
changeset 233 | 3e59c9dd8929 |
parent 227 | 586bbd6b647d |
child 234 | b539dc53b9c7 |
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"> |
|
227
586bbd6b647d
Bug #149 -- Rectification de l'empilement des activités de settings, en terminant l'activité lors du retour sur l'activité Login.
dasilvj@jean-manuel-da-silvas-macbook.local
parents:
224
diff
changeset
|
8 |
<activity android:name=".ui.Login" android:label="@string/app_name" |
586bbd6b647d
Bug #149 -- Rectification de l'empilement des activités de settings, en terminant l'activité lors du retour sur l'activité Login.
dasilvj@jean-manuel-da-silvas-macbook.local
parents:
224
diff
changeset
|
9 |
android:launchMode="singleTop"> |
22
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
10 |
<intent-filter> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
11 |
<action android:name="android.intent.action.MAIN" /> |
280112cd9602
Reorganisation des fichiers de linterface.
marseille@marseille-desktop
parents:
21
diff
changeset
|
12 |
<category android:name="android.intent.category.LAUNCHER" /> |
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" /> |
|
233
3e59c9dd8929
correction bug notification, pas de ticket ouvert + quelques strings pour les titres d'activite
marseille@marseille-desktop
parents:
227
diff
changeset
|
17 |
<activity android:name=".ui.SendIM" android:label="@string/SendIMActTitle" android:launchMode="singleTop" /> |
3e59c9dd8929
correction bug notification, pas de ticket ouvert + quelques strings pour les titres d'activite
marseille@marseille-desktop
parents:
227
diff
changeset
|
18 |
<activity android:name=".ui.ChangeStatus" android:label="@string/ChangeStatusActTitle" /> |
120 | 19 |
<activity android:name=".ui.AccountCreation" android:label="@string/app_name" /> |
233
3e59c9dd8929
correction bug notification, pas de ticket ouvert + quelques strings pour les titres d'activite
marseille@marseille-desktop
parents:
227
diff
changeset
|
20 |
<activity android:name=".ui.AddContact" android:label="@string/AddCActTitle" /> |
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> |
|
213
9bdff6cbd120
Changement du menu de l'activité ContactList ainsi que de son titre.
dasilvj
parents:
212
diff
changeset
|
26 |
<activity android:name=".ui.ContactList" android:label="@string/contact_list_name"> |
212 | 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> |