Archive for the ‘Game Development’ category

Update: Drag and drop install APK script

April 5th, 2011

I updated the Drag and drop install APK script post, such that it works with the latest Android SDK! Hope it helps ;)

AIDL Files: Eclipse Not Generating Source Code?

March 14th, 2011

If you ever wonder why eclispe doesn’t generate a source file for your AIDL file, try installing the latest Eclispe version (currently Helios)! It might be a bit time consuming, since you also have to install the Android Development Tools (ADT) again, but it’s worth it… as it then magically works!

Aeon Racer for iPhone and Android

January 19th, 2011

As part of the Modern Alchemists, I am proud to announce that we just released Aeon Racer for iPhone and Android!

Here’s a quote of the description:
Fly for your life in this classic arcade-style racing game!
Dogde gates, discover mysterious galaxies, train your reflexes and reach maximum velocity to gain the ultimate highscore! The universe is your new playground.

Screenshots & Video

Features at a glance

  • unique galaxies
  • levels per galaxy
  • Infinite mode for endless entertainment
  • Highscore system
  • Smooth space ship controls
  • Neon-styled graphics

Check it out at http://aeon-racer.modern-alchemists.com

iTunes Link:

http://itunes.apple.com/us/app/aeon-racer/id414874725?mt=8

Android Market Link:

market://details?id=com.modernalchemists.aeonracer
http://www.androlib.com/android.application.com-modernalchemists-aeonracer-zijmm.aspx

See ya in outer space ;)

Airship: testers needed!

December 17th, 2010

A new game prototype I am working on needs some testing!
Any feedback is more than welcome, after all, it should become a game which simply makes fun!

Here’s the link: http://modern-alchemists.com/news/airship

Thanks!

Simulate incoming call with Android emulator

September 14th, 2010

First be sure that an emulator is running.
Then open up the console with Start >> Run (or press Windows + ‘r’) and type in ‘cmd‘.
This will bring you to something like:

 

Like shown above, type in ‘telnet‘ and press enter. The result will look like:

 

Here type in ‘o localhost 5554‘ as shown here:

 

This will establish a connection to the emulator.
You can see the port number to be entered in the title bar of the emulator window.
If this succeeds, it will open the Android Console:

 

Here you can use all kinds of commands.
To simulate a call, type ‘gsm call 066712345‘:

 

The result is an incoming call at the emulator:

 

To cancel the call, type ‘gsm cancel 066712345‘.
See http://developer.android.com/guide/developing/tools/emulator.html#telephony for more information about gsm operations.

Use ‘exit‘ to exit the Android Console and ‘quit‘ to quit telnet.
Hope that helps!