background preloader

To review

Facebook Twitter

Dedexer user's manual. AndroidSU.com. Android Platform Developer's Guide | Android Open Source. Welcome to the Android Platform Dev Guide! This guide provides an under-the-hood introduction to the Android platform, and is designed for platform developers and manufacturers building Android-powered devices. If you're a software developer interested in developing applications for Android, please visit the Android Developers site. About this Guide This guide is divided into sections by logical platform component (see the table of contents on the left). Intended Audience This guide is intended for engineers who are proficient with building and running Linux on embedded devices. Getting Started with Android If you are new to Android, start with the platform documentation on the following sites: Android Developers site: This site offers high-level platform documentation and architecture concepts.Android Open Source Project site: This site provides instructions on how to get the source code, establish a development environment, and perform a simple build. ↑ Go to top.

Otto - An event bus by Square, Inc. Introduction Otto is an event bus designed to decouple different parts of your application while still allowing them to communicate efficiently. Forked from Guava, Otto adds unique functionality to an already refined event bus as well as specializing it to the Android platform. Usage Otto is designed with Android-specific use cases in mind and is intended for use as a singleton (though that is not required). Create an instance of an event bus with Bus bus = new Bus(); Because a bus is only effective if it is shared, we recommend obtaining the instance through injection or another appropriate mechanism. Publishing Event publishing is the most important part of the bus as it allows you to tell subscribers that an action has occurred.

To publish a new event, call the post method: bus.post(new AnswerAvailableEvent(42)); Posting to the bus is a synchronous action so when program execution continues it is guaranteed that all subscribers have been called. Subscribing bus.register(this); Producing Download. CommonsWare. Maven-android-plugin - (renamed to android-maven-plugin) Easy to use Maven plugin for Androidâ„¢!