Removed the message count from the notification icon.
[bliper.git] / AndroidManifest.xml
blobabd8419cf4f14cecd5aa9bc65270f162f81d5478
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3       package="pl.blip.divide.bliper"
4       android:versionCode="1"
5       android:versionName="1.0">
6     <application android:icon="@drawable/icon" android:label="@string/app_name">
7         <activity android:name=".Dashboard"
8                   android:label="@string/app_name"
9         >
10             <intent-filter>
11                 <action android:name="android.intent.action.MAIN" />
12                 <category android:name="android.intent.category.LAUNCHER" />
13             </intent-filter>
14         </activity>
15         <activity android:name=".LoginActivity"
16                 android:label="@string/app_name"
17                 android:noHistory="true">
18         </activity>
19         <provider android:name=".Blip"
20                 android:authorities="blip.pl"/>
21         <receiver android:name=".MessagePoller"/>
22     </application>
23     <uses-sdk android:minSdkVersion="3" />
24         <uses-permission android:name="android.permission.INTERNET"/>
25 </manifest>