Siemens M50

How to enable Java

required software:

How to recover fucked up siemens m50 mobile phones

just upload an EEPROM image from another mobile phone device (6MB+) afterwards your mobile phone will show up "Wrong Software".. just unlock it with a siemens m50/mt50 unlocker and it will work again... or just be smart enough to make a backup of your own mobile phone before you start some experiments with it.

Java Programming

required sdk:

Die Entwicklungsumgebung startet man mit ktoolbar

  1. New Project
  2. Projektname: HelloMIDlet
  3. es gibt ein Verzeichnis apps in denen sich die Sourcen sowie das endgültige Binary befinden wird. Die Verzeichnisstruktur ist wie folgt aufgebaut: "bin lib res src". In src muss man anschließend seine java source-file erstellen.

Source Beispiel:

import javax.microedition.midlet.MIDlet;
import javax.microedition.lcdui.*;

public class test extends MIDlet {

private TextBox textbox;

public test()
{
textbox = new TextBox("", "Hello World!!!", 20, 0);
}

public void startApp()
{
Display.getDisplay(this).setCurrent(textbox);
}

public void pauseApp() {}

public void destroyApp(boolean unconditional) {}
}
  1. finally - build and run

Midlets

alarmclock:

MarkusRechberger/M50 (zuletzt geändert am 2007-12-23 22:49:46 durch localhost)