1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-11-10 19:25:06 -05:00
Yaaic/AndroidManifest.xml

55 lines
2.0 KiB
XML
Raw Normal View History

2009-05-15 11:32:49 -04:00
<?xml version="1.0" encoding="utf-8"?>
2009-05-28 16:08:46 -04:00
<!--
Yaaic - Yet Another Android IRC Client
Copyright 2009 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"
2009-11-20 12:45:30 -05:00
package="org.yaaic.client"
android:versionCode="1"
android:versionName="0.1.0">
2009-05-15 11:32:49 -04:00
<application android:icon="@drawable/icon" android:label="@string/app_name" android:name="YaaicApplication">
2009-11-20 11:08:57 -05:00
<activity
android:name=".view.ServerListActivity"
android:label="@string/app_name">
<intent-filter>
2009-11-20 12:45:30 -05:00
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
2009-11-20 11:08:57 -05:00
</intent-filter>
2009-05-15 11:32:49 -04:00
</activity>
2009-11-20 11:08:57 -05:00
<activity
android:name=".view.ServerAddActivity"
android:label="@string/server_add_title">
2009-05-15 11:32:49 -04:00
</activity>
2009-11-20 11:08:57 -05:00
<activity
android:name=".view.SettingsActivity"
android:label="@string/settings_title">
2009-05-15 11:32:49 -04:00
</activity>
2009-11-20 11:08:57 -05:00
<activity
android:name=".view.AboutActivity"
android:label="@string/about_title"
android:theme="@android:style/Theme.Dialog" >
2009-05-15 11:32:49 -04:00
</activity>
2009-11-20 11:08:57 -05:00
<activity
android:name=".view.ServerActivity"
android:label="">
2009-05-15 11:32:49 -04:00
</activity>
2009-05-28 14:06:04 -04:00
<service android:name=".irc.IrcService"/>
2009-05-15 11:32:49 -04:00
</application>
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
</manifest>