mirror of
https://github.com/moparisthebest/Yaaic
synced 2024-11-22 08:52:18 -05:00
29 lines
1.3 KiB
XML
29 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<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=".ServerList"
|
|
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=".ServerAdd"
|
|
android:label="@string/server_add_title">
|
|
</activity>
|
|
<activity android:name=".Settings"
|
|
android:label="@string/settings_title">
|
|
</activity>
|
|
<activity android:name=".About"
|
|
android:label="@string/about_title"
|
|
android:theme="@android:style/Theme.Dialog" >
|
|
</activity>
|
|
<activity android:name=".ServerWindow"
|
|
android:label="ServerWindow">
|
|
</activity>
|
|
<service android:name=".irc.IrcService"/>
|
|
</application>
|
|
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
|
|
</manifest> |