AeroGear's Android libraries are built as jar, apklib and aar (as experimental) using Maven and the android-maven-plugin. The project follows the standard Android project layout so sources will be in /src instead of /src/main/java and can be imported directly into IDE as an Android project.
Please take a look of the step by step on our website
Download apklib from Maven central and follow the Google Android document
<dependency>
<groupId>org.jboss.aerogear</groupId>
<artifactId>aerogear-android</artifactId>
<version>1.3.1</version>
<scope>provided</scope>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.jboss.aerogear</groupId>
<artifactId>aerogear-android</artifactId>
<version>1.3.1</version>
<type>apklib</type>
</dependency>
dependencies {
compile 'org.jboss.aerogear:aerogear-android:1.3.1@aar'
}
Take a look in our example apps and docs about our features
Feature / Doc | Example |
---|---|
Pipe | Cookbook |
Store | Cookbook |
Authentication | Cookbook |
If you are having troubles feel free to contact us via IRC #aerogear or our mailing list [email protected].