A development framework for data centric Android apps.
Most current app development is about connecting consumers and employees to back-end systems through their tablet or smartphone. MOBBL aims to make these type of apps easier to develop, port and maintain.
Generic documentation can be found at Mobbl.org. Documentation about how to get started can be here. For Api documentation, see the Android API Reference.
Current version: 3.2.0.16
First add the ItudeMobile repository to your pom.xml
<repository>
<id>itudemobile-github-repository</id>
<name>ItudeMobile Github repository</name>
<url>http://mobbl.org/maven-repository/releases</url>
</repository>
Now add Android Mobbl
<dependency>
<groupId>com.itude.mobile.android.mobbl</groupId>
<artifactId>mobbl-core-lib</artifactId>
<version>${core.lib.version}</version>
<type>apklib</type>
</dependency>
and the Android Util
<dependency>
<groupId>com.itude.mobile.android.util</groupId>
<artifactId>android-util-lib</artifactId>
<version>${util.lib.version}</version>
<type>apklib</type>
</dependency>
to your pom.xml.
If you find a bug or have a new feature you want to add, just create a pull request and submit it to us. You can also file an issue.
Please note, if you have a pull request, make sure to use the develop branch as your base.
For contributors using Eclipse there's a formatter available.
The code in this project is licensed under the Apache Software License 2.0, per the terms of the included LICENSE file.