Lictionary is a mobile dictionary application for Android devices. It allows users to quickly and easily look up words and their meanings, as well as see related information such as synonyms, antonyms and example sentences. The app features a simple and user-friendly interface, making it easy for users to find the information they need.
Authentication |
---|
Light mode | Dark mode |
---|---|
Light mode | Dark mode |
---|---|
Light mode | Dark mode |
---|---|
- Tech-stack
- Kotlin - a cross-platform, statically typed, general-purpose programming language with type inference.
- Coroutines - perform background operations.
- Flow - handle the stream of data asynchronously that executes sequentially.
- Hilt - Dagger - a pragmatic lightweight dependency injection framework.
- Jetpack
This app uses Android Clean Architecture (MVVM) architecture.
Lictionary-project-structure
├── MainActivity
├── AppApplication
├── core
│ └─── util
│ └── resources
└── feature
└── data
│ ├── local
│ │ └─── entity
│ │ │ ├── dao
│ │ │ └── LictionaryDatabase
│ │ └─── converters
│ │
│ │
│ ├── remote
│ │ ├── dto
│ │ └─── LictionaryApi
│ │
│ └── repository
│ │ └─── wordInfoRepoImpl
│ │
│ └── util
│ │ ├── JsonParse
│ │ └─── GsonParser
└── dl
│ └── AppModule
└── domain
│ ├── model
│ ├── repository
│ │ └─── wordInfoRepo
│ └── usecase
└── presentation
├── wordInfoItem
├── MainActivityViewModel
└── WordInfoState
Drop a mail to:- ibrahimohamed81@outlook.com
- Fonts are from Google fonts
- Api - Free Dictionary API
MIT License
Copyright (c) 2023 Mohamed Ibrahim
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.