2009-05-15 11:32:49 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2009-12-17 15:27:57 -05:00
|
|
|
package="org.yaaic"
|
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="0.1">
|
|
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name">
|
2009-11-20 11:08:57 -05:00
|
|
|
<activity
|
2009-12-17 15:27:57 -05:00
|
|
|
android:name=".view.ServersActivity"
|
2009-11-20 11:08:57 -05:00
|
|
|
android:label="@string/app_name">
|
2009-12-17 15:27:57 -05:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2009-05-15 11:32:49 -04:00
|
|
|
</activity>
|
2009-11-20 11:08:57 -05:00
|
|
|
<activity
|
2009-12-17 15:27:57 -05:00
|
|
|
android:name=".view.AddServerActivity"
|
|
|
|
android:label="@string/add_server_label">
|
2009-05-15 11:32:49 -04:00
|
|
|
</activity>
|
2009-11-20 11:08:57 -05:00
|
|
|
<activity
|
2009-12-17 15:27:57 -05:00
|
|
|
android:name=".view.ServerActivity">
|
2009-05-15 11:32:49 -04:00
|
|
|
</activity>
|
2010-03-02 13:27:58 -05:00
|
|
|
<service android:name=".irc.IRCService"></service>
|
2009-05-15 11:32:49 -04:00
|
|
|
</application>
|
2010-03-02 13:27:58 -05:00
|
|
|
|
2009-12-17 15:27:57 -05:00
|
|
|
<uses-sdk android:minSdkVersion="4" />
|
2010-03-02 13:27:58 -05:00
|
|
|
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
|
2009-05-15 11:32:49 -04:00
|
|
|
</manifest>
|