PLAYme is a sample app that shows all the video of your phone.
It is a very straightforward app with a single screen.
The screen displays a list of videos of your phone and even you can bookmark your videos.
Download the latest APK here
- This app follows the Model-View-ViewModel architecture with clean code pattern
- Depending injection is achieved by using Android Hilt
- This app essentially serve the Single responsibility principle
- Using observer pattern data is provide to View
- This app uses a combination of package-by-feature and package-by-layer. The top level packages are feature based. Inside each feature-package, the code is split into different packages based on the layer
- Unit testing is also performed
app
java
com.player.home
application
core
permissions
di
extension
utils
homedi
model
ui
viewmodel
- [Support Library]
- [android Ktx Core]
- [Exoplayer]
- [Hilt]
- [Life Cycle ViewModel]
- [LiveData]
- [Junit]
- [Mockito]
Copyright 2020 Devendra Mehra
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.