#AeroGear Android 1.4
Today we have pushed to Maven Central our the AeroGear's Android library version 1.4. Major features include 1) The Authorizer framework with OAuth2 support 2) enhanced Request and Response handlers for Pipe's 3) a dedicated Push messaging module 4) updated docs and sample applications and 5) full aar support for Android Studio. See the New Feature Showcase section for more details.
Fetching is as easy as always:
<dependency>
<groupId>org.jboss.aerogear</groupId>
<artifactId>aerogear-android</artifactId>
<type>apklib</type>
<version>1.4.0</version>
</dependency>
compile 'org.jboss.aerogear:aerogear-android:1.4.0@aar'
git clone https://github.com/aerogear/aerogear-android
cd aerogear-android
git checkout tags/1.4.0
mvn dependency:copy
This is perhaps the biggest change and deserving of a blog post of its own. In the meanwhile, you can view our sample app.
An example of the improved APIs can be found in our cookbook.
Our push module is on [GitHub] (https://github.com/aerogear/aerogear-android-push) with a sample application in our quickstart. The module is also available in Maven Central.
- Download Project
- Maven Dependency
- Fetch with Gradle
compile 'org.jboss.aerogear:aerogear-android-push:0.2@aar'
Our next version of Android will be focused on core API improvements. Specifically we will continue our modularization efforts, remove deprecated methods, and switch from using a Callback style API to using a Promise/Future style API. This release will also mark the beginning of our 2.0 branch.
Additional features will be included as modules. Currently we are planning for or working on the following :
- aerogear-android-sync
- aerogear-android-offline
- aerogear-android-simplepush
Once our planning is finalized, details will be published on our roadmap.
Follow us on Twitter @aerogears, on freenode #aerogear, on the web www.aerogear.org, on GitHub https://github.com/aerogear or subscribe to our mailing list [email protected].
Only my 2 cents, but you can just ignore me and release the Kraken.
An example of the improved APIs can be found in our cookbook >.<