# HG changeset patch # User Da Risk # Date 1235769325 -3600 # Node ID ea84f930b04a4dbb18013d03f39ca7ec03db8c55 Initial import diff -r 000000000000 -r ea84f930b04a AndroidManifest.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/AndroidManifest.xml Fri Feb 27 22:15:25 2009 +0100 @@ -0,0 +1,15 @@ + + + + + + + + + + + diff -r 000000000000 -r ea84f930b04a INSTALL --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/INSTALL Fri Feb 27 22:15:25 2009 +0100 @@ -0,0 +1,15 @@ +Howto Install Beem ? + +1. Dependencies + First you will need the Android SDK. + +2. ActivityCreator + Use the script provides by the SDK to set the Android platform directory. + > $SDK_DIR/tools/activitycreator --out beem com.beem.project.beem.Beem + +3. Compile and install + Use ant to compile and install the application on the Android emulator + > ant install + + + diff -r 000000000000 -r ea84f930b04a README --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README Fri Feb 27 22:15:25 2009 +0100 @@ -0,0 +1,3 @@ +Thanks you for downloading BEEM + +http://www.beem-project.com diff -r 000000000000 -r ea84f930b04a build.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/build.xml Fri Feb 27 22:15:25 2009 +0100 @@ -0,0 +1,293 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Creating output directories if needed... + + + + + + + Generating R.java / Manifest.java from the resources... + + + + + + + + + + + + + + + + + Compiling aidl files into Java classes... + + + + + + + + + + + + + + + + + + + + + Converting compiled files and external libraries into ${outdir}/${dex-file}... + + + + + + + + + + + Packaging resources and assets... + + + + + + + + + + + + + + + + + + + Packaging resources... + + + + + + + + + + + + + + + + + + + + + + + + + + Packaging ${out-debug-package}, and signing it with a debug key... + + + + + + + + + + + + + + + + + + Packaging ${out-unsigned-package} for release... + + + + + + + + + + + + + + + It will need to be signed with jarsigner before being published. + + + + + Installing ${out-debug-package} onto default emulator... + + + + + + + + Installing ${out-debug-package} onto default emulator... + + + + + + + + + + Uninstalling ${application-package} from the default emulator... + + + + + + + diff -r 000000000000 -r ea84f930b04a doc/.what --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/doc/.what Fri Feb 27 22:15:25 2009 +0100 @@ -0,0 +1,1 @@ +This directory will contains some documentation about the project. The generated javadoc will be here (but not versionned). diff -r 000000000000 -r ea84f930b04a libs/.what --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libs/.what Fri Feb 27 22:15:25 2009 +0100 @@ -0,0 +1,1 @@ +This directory will contains the differents jar needs by the project diff -r 000000000000 -r ea84f930b04a res/layout/main.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/res/layout/main.xml Fri Feb 27 22:15:25 2009 +0100 @@ -0,0 +1,13 @@ + + + + + diff -r 000000000000 -r ea84f930b04a res/values/strings.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/res/values/strings.xml Fri Feb 27 22:15:25 2009 +0100 @@ -0,0 +1,4 @@ + + + Beem + diff -r 000000000000 -r ea84f930b04a src/.what --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/.what Fri Feb 27 22:15:25 2009 +0100 @@ -0,0 +1,1 @@ +This directory will contains the src of the project diff -r 000000000000 -r ea84f930b04a src/com/beem/project/beem/Beem.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/com/beem/project/beem/Beem.java Fri Feb 27 22:15:25 2009 +0100 @@ -0,0 +1,15 @@ +package com.beem.project.beem; + +import android.app.Activity; +import android.os.Bundle; + +public class Beem extends Activity +{ + /** Called when the activity is first created. */ + @Override + public void onCreate(Bundle savedInstanceState) + { + super.onCreate(savedInstanceState); + setContentView(R.layout.main); + } +}