coded. is an Android application designed to teach children programming by building programs from blocks of code.
The goal of the project is to make an application that allows a child to build basic algorithms without knowledge of programming languages.
Please check CONTRIBUTING page if you want to help.
This project takes advantage of best practices, many popular libraries and tools in the Android ecosystem.
- Tech-stack
- 100% Kotlin
- Hilt - dependency injection
- Firebase - analytics and crash tracking
- Coroutines - background operations processing
- Flow - data changes observing in business-logic application part
- Jetpack
- ViewPager2 - displaying Views and Fragments in a swipeable format
- LiveData - data changes observing in UI application part
- Lifecycle - event handling based on lifecycle
- ViewModel - store and manage UI-related data in a lifecycle conscious way
- Android KTX - set of Kotlin extensions
- Fragment - displaying multiple screens inside activity
- ViewBinding - getting links to interface elements
- Modern Architecture
- Clean architecture
- MVVM
- CI
- GitHub Actions
- Automatic commits and PR analyzing by 3rd party online tools
- UI
The entire application follows clean architecture
.
It contains non-layer components and layers with distinct set of responsibilities.
MIT License
Copyright (c) 2022 Igor Efimov
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.