This repository contains sample code. Its purpose being, to quickly demonstrate Android and software development in general, clean code, best practices, testing and all those other must know goodies.
The below listed skills are the main focus:
- Android Support
- Constraint Layout
(A ViewGroup which allows you to position and size widgets in a flexible way)
- Recycler View
(A flexible view for providing a limited window into a large data set)
- Card View
(A FrameLayout with a rounded corner background and shadow)
- Multi Dex
(Patches the application context class loader in order to load classes from more than one dex file)
- Vector Drawables
(In Android 5.0 (API Level 21) and above, you can define vector drawables, which scale without losing definition)
- Constraint Layout
- Firebase
- Firebase Database
(Store and sync data with our NoSQL cloud database. Data is synced across all clients in realtime, and remains available when your app goes offline)
- Firebase Database
- Database
- Realm
(Realm is a mobile database: a replacement for SQLite & ORMs)
- Realm
- Architectural Pattern
- Mosby MVP
(Helper MVP library)
- Mosby MVP
- Libraries
- Dagger
(A fast dependency injector for Android and Java)
- Butter Knife
(Bind Android views and callbacks to fields and methods)
- RxJava
(A library for composing asynchronous and event-based programs using observable sequences for the Java VM)
- Event Bus
(EventBus is a publish/subscribe event bus optimized for Android)
- Timber
(A logger with a small, extensible API which provides utility on top of Android's normal Log class)
- Glide
(A fast and efficient open source media management and image loading framework for Android)
- Lottie
(A library that parses Adobe After Effects animations exported as json with Bodymovin and renders them natively on mobile)
- Joda
(A version of Joda-Time built with Android in mind)
- Dagger
- Code Quality
- Android Lint
(The lint tool checks your Android project source files for potential bugs and optimization improvements for correctness, security, performance, usability, accessibility, and internationalization)
- Checkstyle
(Checkstyle is a development tool to help programmers write Java code that adheres to a coding standard. By default it supports the Google Java Style Guide and Sun Code Conventions, but is highly configurable. It can be invoked with an ANT task and a command line program.)
- PMD
(PMD is a source code analyzer)
- Findbugs
(A program which uses static analysis to look for bugs in Java code)
- Jacoco
(JaCoCo - Java Code Coverage Library)
- Android Lint
- Tests
- Mockito
(Most popular Mocking framework for unit tests written in Java)
- JUnit
(A programmer-oriented testing framework for Java)
- AssertJ
(A library providing easy to use rich typed assertions)
- Robolectric
(Android Unit Testing Framework)
- Espresso
(To write concise, beautiful, and reliable Android UI tests)
- Mockito
In order to build and experiment with this project you first have to create (or get) a google-services json file that will allow you to connect to the Firebase instance of your choice.
add google-services.json to app module
Use the below command to build the project in order to install it on an Android device for demonstration:
gradlew clean build -x check
Open an emulator or connect a physical device to experiment with the sample app, use the below command, which first uninstalls and then installs the sample app:
gradlew uninstallDebug | gradlew installDebug
Or faster yet and targeting a specific device (in our case an emulator)!
adb -s emulator-5554 uninstall com.hubrickchallenge.android | adb -s emulator-5554 install app\build\outputs\apk\debug\app-debug.apk
Use this command in order to run the static code analysis for the project:
gradlew check -x test
Or even run the below commands to run a specific code quality tool in isolation:
gradlew lint
gradlew checkstyle
gradlew pmd
gradlew findbugs
Run the project unit tests using this command, Jacoco is included:
gradlew test
gradlew testDebugUnitTestCoverage
Open an emulator or connect a physical device to run the instrumentation tests using this command:
gradlew connectedAndroidTest
I also hope this project will help others to quick understand and grasp all the listed technologies...
ENJOY YOU