mirror of
https://github.com/moparisthebest/Yaaic
synced 2024-11-04 16:35:05 -05:00
27 lines
1.0 KiB
XML
27 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.yaaic"
|
|
android:versionCode="1"
|
|
android:versionName="0.1">
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name">
|
|
<activity
|
|
android:name=".view.ServersActivity"
|
|
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.AddServerActivity"
|
|
android:label="@string/add_server_label">
|
|
</activity>
|
|
<activity
|
|
android:name=".view.ServerActivity">
|
|
</activity>
|
|
<service android:name=".irc.IRCService"></service>
|
|
</application>
|
|
|
|
<uses-sdk android:minSdkVersion="4" />
|
|
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
|
|
</manifest> |