CKC stands for "Clean architecture - Kotlin - Cryptocurrency". This project is just for learning purpose, and still being under development, I was inspired by blockchain technology for initial motivation in doing this project.
- The design of app is mimicked from Blockfolio App.
- The architecture is based on android clean architecture principles which was implemented and shared by Fernando Cejas. A special thanks to Fernando Cejas, he did a great job there, take a look in Architecture Android Reload.
- Written in kotlin, a very powerful and concise progamming language in my opinion.
- Being powered up by Android jetpack and take advantage of android architecture components features, these knowledge I've learned from Android Sunflower App .
Android Jetpack is a set of components, tools and guidance to make great Android apps. They bring together the existing Support Library and Architecture Components and arranges them into four categories:
- Foundation - Components for core system capabilities, Kotlin extensions and support for
multidex and automated testing.
- AppCompat - Degrade gracefully on older versions of Android.
- Android KTX - Write more concise, idiomatic Kotlin code.
- Test - An Android testing framework for unit and runtime UI tests.
- Architecture - A collection of libraries that help design robust, testable, and
maintainable apps. Start with classes for managing UI component lifecycle and handling data
persistence.
- Data Binding - Declaratively bind observable data to UI elements.
- Lifecycles - Create a UI that automatically responds to lifecycle events.
- LiveData - Build data objects that notify views when the underlying database changes.
- Navigation - Handle everything needed for in-app navigation.
- Room - Access app's SQLite database with in-app objects and compile-time checks.
- ViewModel - Store UI-related data that isn't destroyed on app rotations. Easily schedule asynchronous tasks for optimal execution.
- WorkManager - Manage Android background jobs.
- UI - Details on why and how to use UI Components in apps - together or separate
- Third party
- Retrofit for network requests
- Dagger2 for dependency injection
- Firebase for cloud services
- Glide for image loading
- Kotlin Coroutines for managing background threads with simplified code and reducing needs for callbacks
- Mockito for mock test data
- Roboletric for test android components without the need for an emulator device
Architecting Android…The clean way?
Best coding practices, tips and more for Android
Android Development : Some of the best practices
Android Code Convention Guidelines
This project uses the Gradle build system. To build this project, use the
gradlew build
command or use "Import Project" in Android Studio.
Here are some other useful Gradle/adb commands for executing this example:
./gradlew deployDebug
- Builds and install the debug apk on the current connected device../gradlew runUnitTests
- Execute all unit tests.
Refer to the issues section: https://github.com/truongpx396/ckcportfolio/issues
Copyright 2019 truongpx
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.