Yaaic/AndroidManifest.xml

92 lines
3.4 KiB
XML
Raw Permalink Normal View History

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-27 12:30:23 -04:00
android:versionCode="5"
android:versionName="0.4.1">
<application
android:icon="@drawable/icon"
android:label="Yaaic">
2009-11-20 11:08:57 -05:00
<activity
android:name=".activity.ServersActivity"
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
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
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
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
android:name=".activity.SettingsActivity"
2010-03-13 13:56:32 -05:00
android:label="@string/settings_label">
</activity>
<activity
android:name=".activity.JoinActivity"
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>
<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
<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>