2009-05-15 11:32:49 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2010-03-13 11:56:10 -05:00
|
|
|
<!--
|
|
|
|
Yaaic - Yet Another Android IRC Client
|
|
|
|
|
|
|
|
Copyright 2009-2010 Sebastian Kaspari
|
|
|
|
|
|
|
|
This file is part of Yaaic.
|
|
|
|
|
|
|
|
Yaaic is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Yaaic is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
2009-05-15 11:32:49 -04:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2010-03-12 14:35:25 -05:00
|
|
|
package="org.yaaic"
|
2010-04-25 07:44:21 -04:00
|
|
|
android:versionCode="4"
|
|
|
|
android:versionName="0.4">
|
2010-03-21 14:57:30 -04:00
|
|
|
<application
|
|
|
|
android:icon="@drawable/icon"
|
|
|
|
android:label="Yaaic">
|
2009-11-20 11:08:57 -05:00
|
|
|
<activity
|
2010-03-24 13:48:38 -04:00
|
|
|
android:name=".activity.ServersActivity"
|
2010-03-21 14:57:30 -04:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:launchMode="singleTask">
|
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
|
2010-03-24 13:48:38 -04:00
|
|
|
android:name=".activity.AddServerActivity"
|
2009-12-17 15:27:57 -05:00
|
|
|
android:label="@string/add_server_label">
|
2010-03-20 11:32:42 -04:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data android:scheme="irc"/>
|
|
|
|
</intent-filter>
|
2009-05-15 11:32:49 -04:00
|
|
|
</activity>
|
2009-11-20 11:08:57 -05:00
|
|
|
<activity
|
2010-03-24 13:48:38 -04:00
|
|
|
android:name=".activity.ConversationActivity"
|
2010-03-20 18:19:06 -04:00
|
|
|
android:windowSoftInputMode="adjustResize|stateHidden">
|
2009-05-15 11:32:49 -04:00
|
|
|
</activity>
|
2010-03-13 11:56:10 -05:00
|
|
|
<activity
|
2010-03-24 13:48:38 -04:00
|
|
|
android:name=".activity.AboutActivity"
|
2010-03-13 11:56:10 -05:00
|
|
|
android:label="@string/about_label"
|
|
|
|
android:theme="@android:style/Theme.Dialog">
|
|
|
|
</activity>
|
2010-03-13 13:56:32 -05:00
|
|
|
<activity
|
2010-03-24 13:48:38 -04:00
|
|
|
android:name=".activity.SettingsActivity"
|
2010-03-13 13:56:32 -05:00
|
|
|
android:label="@string/settings_label">
|
|
|
|
</activity>
|
2010-03-17 17:43:56 -04:00
|
|
|
<activity
|
2010-03-24 13:48:38 -04:00
|
|
|
android:name=".activity.JoinActivity"
|
2010-03-17 17:43:56 -04:00
|
|
|
android:label="@string/join_label"
|
|
|
|
android:theme="@android:style/Theme.Dialog">
|
|
|
|
</activity>
|
2010-04-06 14:32:10 -04:00
|
|
|
<activity
|
|
|
|
android:name=".activity.UsersActivity"
|
|
|
|
android:label="@string/users"
|
|
|
|
android:theme="@android:style/Theme.Dialog">
|
|
|
|
</activity>
|
2010-04-25 04:19:09 -04:00
|
|
|
<activity
|
|
|
|
android:name=".activity.AddChannelActivity"
|
2010-04-25 06:30:03 -04:00
|
|
|
android:theme="@android:style/Theme.Dialog">
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.AddCommandsActivity"
|
2010-04-25 04:19:09 -04:00
|
|
|
android:theme="@android:style/Theme.Dialog">
|
|
|
|
</activity>
|
2010-04-25 09:27:55 -04:00
|
|
|
<activity
|
|
|
|
android:name=".activity.MessageActivity"
|
|
|
|
android:theme="@android:style/Theme.Dialog">
|
|
|
|
</activity>
|
2010-04-25 13:31:52 -04:00
|
|
|
<activity
|
|
|
|
android:name=".activity.UserActivity"
|
|
|
|
android:theme="@android:style/Theme.Dialog">
|
|
|
|
</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
|
|
|
|
2010-03-13 07:31:31 -05:00
|
|
|
<uses-sdk android:minSdkVersion="3" />
|
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>
|