Pre release
authorDa Risk <darisk972@gmail.com>
Thu, 23 Apr 2009 12:54:56 +0200
changeset 146 89bbb1c560ad
parent 142 f63bb1a2fa7c
child 147 472d56ba57c6
Pre release
AndroidManifest.xml
src/com/beem/project/beem/ui/ContactList.java
--- a/AndroidManifest.xml	Wed Apr 22 19:53:57 2009 +0200
+++ b/AndroidManifest.xml	Thu Apr 23 12:54:56 2009 +0200
@@ -1,7 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
-	package="com.beem.project.beem" android:versionCode="1"
-	android:versionName="1.0">
+	package="com.beem.project.beem" android:versionCode="1" android:versionName="1.0">
 	<application android:label="@string/app_name" android:name="BeemApplication" android:theme="@style/customtheme.contactList" android:icon="@drawable/signal">
 		<activity android:name=".ui.ContactList" android:label="@string/app_name">
 			<intent-filter>
--- a/src/com/beem/project/beem/ui/ContactList.java	Wed Apr 22 19:53:57 2009 +0200
+++ b/src/com/beem/project/beem/ui/ContactList.java	Thu Apr 23 12:54:56 2009 +0200
@@ -10,6 +10,7 @@
 import android.content.Intent;
 import android.content.SharedPreferences;
 import android.graphics.drawable.Drawable;
+import android.net.Uri;
 import android.os.Bundle;
 import android.os.Handler;
 import android.os.RemoteException;
@@ -153,6 +154,8 @@
 		startActivityForResult(new Intent(this, ContactListSettings.class), PREFERENCECHANGED);
 		return true;
 	    case R.id.account_about:
+		Intent t = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.beem-project.com"));
+		startActivity(t);
 		return true;
 	    case R.id.account_create:
 		startActivity(new Intent(this, AccountCreation.class));