See how MobiMap works on your phone

You will find everything you need to add MobiMap library to your development environment here .

You can deploy mobimap-javame to your mobile phone using the JAD file, but make sure that your phone has MIDP-2.0 and CLDC-1.1, because MobiMap is not compatible with MIDP-1.0 and/or CLDC-1.0. If you need support for these environment, feel free to report an issue on our issue tracker and we'll see what we can do.

How to integrate MobiMap in your mobile development environment?

If you're using Netbeans and Sun's WTK on Windows, MobiMap's JAR can be added to your project as a library.

If you're using Maven in coordination with Pyx4Me plugins and microemulator, thanks to which you can have a full-fledged cross-platform JavaME development, you have to add the following dependency to your project:

<dependency>
    <groupId>org.epseelon.mobimap</groupId>
    <artifactId>mobimap-javame</artifactId>
    <version>1.0-RC1</version>
    <qualifier>me</qualifier>
</dependency>

And the following repository, either into your project or into your Maven settings.xml:

<repository>
    <id>epseelon</id>
    <url>http://m2repo.epseelon.org</url>
    <snapshots>
        <enabled>true</enabled>
    </snapshots>
    <releases>
        <enabled>true</enabled>
    </releases>
</repository>

How to build MobiMap from source?

You can check out MobiMap code from our Subversion repository . Then all you have to do to build the library is to run the following command line:

mvn install

If you have any issue setting up your development environment or using MobiMap, please feel free to ask your question on our support forum .