Do some docs
authorDa Risk <darisk972@gmail.com>
Thu, 18 Feb 2010 19:43:54 +0100
changeset 676 ed7f90128426
parent 675 764eded78962
child 677 b8d5e0378bcb
Do some docs
INSTALL
README
beem_key
build.xml
--- a/INSTALL	Thu Feb 18 18:34:28 2010 +0100
+++ b/INSTALL	Thu Feb 18 19:43:54 2010 +0100
@@ -1,13 +1,26 @@
-Howto Install Beem ?
+Android Market
+--------------
+
+First of all, BEEM is available on the Android market. Just search for 'BEEM'.
+
+Development version
+-------------------
 
 1. Dependencies
-   First you will need the Android SDK-1.5.
+   First you will need the latest Android SDK. You can download it at http://d.android.com. 
+   You will also need the Apache Ant tool to build the project. You can get it at http://ant.apache.org
 
 2. Android project
-   Use the script provides by the SDK to set the Android platform directory.
-   > $SDK_DIR/tools/android update project -t 2 -p $BEEM_DIRECTORY
+   Use the android program provides by the SDK to set the Android platform directory.
+   First get the Target id of the platform you want to build BEEM for.
+   > $SDK_DIR/tools/android list targets
+
+   Then use this id to set up the BEEM project.
+   > $SDK_DIR/tools/android update project -t $TARGET_ID -p $BEEM_DIRECTORY
 
 3. Compile and install
-   Use ant to compile and install the application on the Android emulator
+   Use ant to compile and install the application on the Android device
    > ant install
 
+The development version use a private certificate to sign the package. You will need to uninstall it before installing or upgrading a version of BEEM from the Android market.
+
--- a/README	Thu Feb 18 18:34:28 2010 +0100
+++ b/README	Thu Feb 18 19:43:54 2010 +0100
@@ -1,3 +1,52 @@
+BEEM : Boost Your Eyes, Ears, and Mouth
+---------------------------------------
+
+BEEM is a full featured and easy to use XMPP (formerly named Jabber) client on the Android Platform.
+
+Beem is under constant development. Releases are usually frequent and driven by user contributions, such as bug reports and patches.
+
+Beem is free and contains no ads. All our code is open source and licensed under the GNU General Public License 3 and any later version. This means you can get Beem's code and modify it to suit your needs, as long as you publish the changes you make for everyone to benefit from as well.
+
+
+Features
+--------
+
+- Compatible with any standard XMPP server
+- SASL support
+- Proxy support (SOCKS4 SOCKS5 HTTP)
+- Support of DNS SERV
+
+New in 0.1.2:
+- DNS SERV
+- New options
+- Bug fix
+
+Futur:
+- Geolocation
+- Voip
+- MUC
+- Phone contact list
+
+
+Support & getting help
+----------------------
+
+For getting help or discussing about BEEM, you can join #beem on the freenode IRC network or on XMPP Multi User Chat : beem@conference.elyzion.net.
+We have a mailing list, feel free to subscribe here : http://list.beem-project.com/listinfo/beem-dev
+You can also contact the BEEM Team at beem-dev@list.beem-project.com.
+
+Before submitting a bug report, a patch or a feature request here, please read the Submission guidelines.
+
+
+Contributing and helping out
+----------------------------
+
+Beem is built and maintained by community volunteers. If you enjoy using it and would like to give back to the community, feel free to contact us.
+
+
+
+
 Thanks you for downloading BEEM
 
 http://www.beem-project.com
+
Binary file beem_key has changed
--- a/build.xml	Thu Feb 18 18:34:28 2010 +0100
+++ b/build.xml	Thu Feb 18 19:43:54 2010 +0100
@@ -70,6 +70,7 @@
     <target name="clean"
 	description="Delete old build and dist directories">
 	<delete verbose="false" dir="${out.dir}"/>
+	<delete verbose="false" dir="gen"/>
     </target>
 
     <target name="javadoc">