Yaaic/app/src/main/AndroidManifest.xml

107 lines
3.9 KiB
XML
Raw 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
2013-01-21 15:32:43 -05:00
Copyright 2009-2013 Sebastian Kaspari
2010-03-13 11:56:10 -05:00
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-11-18 12:52:19 -05:00
package="org.yaaic"
2015-03-13 19:02:11 -04:00
android:installLocation="auto">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.VIBRATE" />
<application
android:icon="@mipmap/ic_launcher"
android:label="Yaaic"
2013-01-21 15:40:03 -05:00
android:theme="@style/Theme.Yaaic"
android:allowBackup="true">
<activity android:name=".activity.MainActivity"
android:label="@string/app_name"
android:launchMode="standard" >
2009-12-17 15:27:57 -05:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
2009-12-17 15:27:57 -05:00
<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"
android:label="@string/add_server_label" >
2010-11-18 12:52:19 -05:00
<intent-filter>
<action android:name="android.intent.action.VIEW" />
2010-11-18 12:52:19 -05:00
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="irc" />
2010-11-18 12:52:19 -05:00
</intent-filter>
2009-05-15 11:32:49 -04:00
</activity>
2009-11-20 11:08:57 -05:00
<activity
android:name=".activity.ConversationActivity"
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" >
2010-03-13 11:56:10 -05:00
</activity>
2010-03-13 13:56:32 -05:00
<activity
android:name=".activity.SettingsActivity"
android:label="@string/settings_label" >
2010-03-13 13:56:32 -05:00
</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"
2015-03-17 18:37:21 -04:00
android:theme="@android:style/Theme.Material.Dialog" >
2010-04-06 14:32:10 -04:00
</activity>
2010-09-06 22:07:40 -04:00
<activity
2010-11-18 12:52:19 -05:00
android:name=".activity.AddAliasActivity"
android:theme="@android:style/Theme.Dialog" >
2010-09-06 22:07:40 -04:00
</activity>
2010-04-25 04:19:09 -04:00
<activity
2010-11-18 12:52:19 -05:00
android:name=".activity.AddChannelActivity"
2015-03-17 18:37:21 -04:00
android:theme="@android:style/Theme.Material.Dialog" >
</activity>
2010-04-25 06:30:03 -04:00
<activity
2010-11-18 12:52:19 -05:00
android:name=".activity.AddCommandsActivity"
2015-03-17 18:37:21 -04:00
android:theme="@android:style/Theme.Material.Dialog" >
</activity>
<activity
2010-11-18 12:52:19 -05:00
android:name=".activity.MessageActivity"
2015-03-17 18:37:21 -04:00
android:theme="@android:style/Theme.Material.Dialog" >
</activity>
2010-04-25 13:31:52 -04:00
<activity
2010-11-18 12:52:19 -05:00
android:name=".activity.UserActivity"
2015-03-17 18:37:21 -04:00
android:theme="@android:style/Theme.Material.Dialog" >
</activity>
<activity
android:name=".activity.AuthenticationActivity"
2015-03-17 18:37:21 -04:00
android:theme="@android:style/Theme.Material.Dialog" >
</activity>
<service android:name=".irc.IRCService" >
</service>
2010-11-18 12:43:04 -05:00
</application>
</manifest>