mirror of
https://github.com/moparisthebest/Yaaic
synced 2024-11-05 00:45:01 -05:00
54 lines
2.0 KiB
XML
54 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
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/>.
|
|
-->
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.yaaic.client"
|
|
android:versionCode="1" android:versionName="0.1.0">
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name" android:name="YaaicApplication">
|
|
<activity
|
|
android:name=".view.ServerListActivity"
|
|
android:label="@string/app_name">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".view.ServerAddActivity"
|
|
android:label="@string/server_add_title">
|
|
</activity>
|
|
<activity
|
|
android:name=".view.SettingsActivity"
|
|
android:label="@string/settings_title">
|
|
</activity>
|
|
<activity
|
|
android:name=".view.AboutActivity"
|
|
android:label="@string/about_title"
|
|
android:theme="@android:style/Theme.Dialog" >
|
|
</activity>
|
|
<activity
|
|
android:name=".view.ServerActivity"
|
|
android:label="">
|
|
</activity>
|
|
<service android:name=".irc.IrcService"/>
|
|
</application>
|
|
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
|
|
</manifest> |