EspressoExamples
A collection of examples demonstrating different techniques for automated testing with Espresso.
Source link: https://github.com/vgrec/EspressoExamples
Q & A
JavaPoet is a Java API for generating .java
source files.
Source file generation can useful when doing things such as annotation processing or interacting with metadata files (e.g., database schemas, protocol formats). By generating code, you eliminate the need to write boilerplate while also keeping a single source of truth for the metadata.
json2view is a simple library that can convert a compatible JSON file to an Android view so you can load dynamically the view in your Android app without the need to update the APK.
This removes the hassle of updating, re-compiling and uploading the APK to Google Play every time you want to make small or big changes in the UI.
Android-CircleMenu is a pretty circular menu. The library allows to rotate the menu with your fingers.
It's Java library to manage your object transformations between your POJO objects.
android-bind library helps to you on the process related to data binds between your model entities and your application UI, offering a bidirectional data channel.
PluginManager is used to manage android applications like eclipse plugins. you can start an activity from an uninstalled APK placed in SD card, just like it has installed or registered in the application's AndroidManifest.xml.
Q & A