Converta is an Android app aimed at helping deaf and mute people to interact with others.
The goal of the project is to create a easy to access application that can convert speech to text and text to speech, save phrases by category for quick use.
Please check CONTRIBUTING page if you want to help.
- Tech-stack
- 100% Kotlin + Coroutines - perform background operations
- Flow - background-receiving data from database
- Jetpack
- Navigation - navigation inside Activity
- LiveData - notify observers about database changes
- Lifecycle - event handling based on lifecycle
- ViewModel - store and manage UI-related data in a lifecycle conscious way
- Room - store shortcuts data
- Android KTX - set of Kotlin extensions
- Fragment - using multiple screens inside activity
- ViewBinding - getting links to interface elements
- Firebase Crashlytics - crash tracking
- Google Speech Services - text recognition and pronunciation
- Modern Architecture
- Layers architecture
- MVVM
- CI
- GitHub Actions
- Automatic code analyzing by 3rd party online tools
- UI
The entire application follows layers architecture
.
It contains components that strictly fulfill their functions, as well as parts that are not part of them.
The architecture of interaction between presentation and lower layers in both activities is similar.
All interaction occurs through the ViewModel
of each Activity
/ Fragment
, which then receives data from the repositories and notifies the view of the change.
Repositories, in turn, interact with the data services and broadcast receivers layer
In fact, everything works through the
AndroidViewModel
, but this method differs only in that it can receive theApplication
inside itself. This is used when aContext
is needed.
MIT License
Copyright (c) 2021 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.