Please download the ambient-x.x.apk file here .
Consult your phone manual on how to install third-party Android applications.
First, download and install the Android SDK .
We need to create a sd card with MP3 files. Go into the Android SDK /tools directory and run mksdcard -l sdcard 2000M sdcard.img .
Go into the Android SDK /tools directory and run
emulator -sdcard sdcard.img
when Android boots up, copy the ambient-x.x.apk file into the Android SDK /tools directory and run (in other shell):
adb install ambient-x.x.apk
The application should now be accessible from the Android menu.
If you want to try bleeding-edge, development unstable version running, read on.
You need to install:
Then, add the Android SDK /tools directory to your PATH.
You need to generate a certificate as it is now required by Android. Just run
keytool -genkeypair -alias ambientcertss
Enter anything you want as your name etc, it doesn't matter. Remember the password you entered, you may use the same password two times.
To setup Maven2, edit the $HOME/.m2/settings.xml (create the file if it is missing):
<?xml version="1.0" encoding="UTF-8"?> <settings> <profiles> <profile> <id>default</id> <activation><activeByDefault>true</activeByDefault></activation> <properties> <cert.keypass>THE KEY PASSWORD HERE</cert.keypass> <cert.storepass>THE KEYSTORE PASSWORD HERE</cert.storepass> </properties> </profile> </profiles> </settings>
Then, checkout the project:
svn co https://ambientmp.svn.sourceforge.net/svnroot/ambientmp/Ambient/trunk
Go into the trunk directory and enter
svn up mvn clean install
The APK file should be located in the target/ directory. If a certificate mismatch error pops up while installing the APK, you'll need to uninstall previous Ambient installation.