1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-08-13 16:53:50 -04:00
Yaaic/AndroidManifest.xml
2009-05-15 17:32:49 +02:00

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=".YaaicService"/>
</application>
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
</manifest>