1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-08-13 16:53:50 -04:00

just some reorganization

This commit is contained in:
Sebastian Kaspari 2009-11-20 18:45:30 +01:00
parent 4733db66f1
commit e58d2cc84b
3 changed files with 6 additions and 6 deletions

View File

@ -20,15 +20,16 @@ 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">
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" />
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity

View File

@ -1,5 +1,5 @@
/*
Yaaic - Yet Another Android IRC Client
Yaaic - Yet Another Android IRC Client
Copyright 2009 Sebastian Kaspari

View File

@ -21,7 +21,6 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
package org.yaaic.client.adapter;
import org.yaaic.client.R;
import org.yaaic.client.R.id;
import org.yaaic.client.irc.IrcBinder;
import android.app.Activity;