Skip to content

This repository contains a FaceTimeClone app that implements mvvm architecture , clean architecture , navigation component , hilt , etc.... using kotlin language

Notifications You must be signed in to change notification settings

adelayman1/AndroidFaceTimeClone

Repository files navigation

FaceTimeClone 📹

LinkedIn Badge

Support Palestine StandWithPalestine

This repository contains the FaceTimeClone app, a real-time video calling application built with Kotlin and Jetpack Compose. The app follows best practices and employs SOLID principles and clean code techniques.it implements Coroutines,Ktor-client for HTTP requests,MVVM architecture,Clean architecture,Hilt,Navigation component,Jitsi Meet and more...

App Overview

Built With 🛠

Server Side API

For the server-side implementation of the FaceTimeClone app, you can find the API built with Ktor here: FaceTimeCloneAPI: You can find docs here.

Project Structure

facetimeclonecompose
 ┃ ┃ ┃ ┣ data
 ┃ ┃ ┃ ┃ ┣ di
 ┃ ┃ ┃ ┃ ┃ ┗ modules
 ┃ ┃ ┃ ┃ ┃ ┃ ┣ CoroutinesModule.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┣ NetworkModule.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┗ RepositoryModule.kt
 ┃ ┃ ┃ ┃ ┣ repositories
 ┃ ┃ ┃ ┃ ┃ ┣ RoomRepositoryImpl.kt
 ┃ ┃ ┃ ┃ ┃ ┗ UserRepositoryImpl.kt
 ┃ ┃ ┃ ┃ ┣ sources
 ┃ ┃ ┃ ┃ ┃ ┣ local
 ┃ ┃ ┃ ┃ ┃ ┃ ┗ dataSources
 ┃ ┃ ┃ ┃ ┃ ┃ ┃ ┗ UserLocalDataSource.kt
 ┃ ┃ ┃ ┃ ┃ ┗ remote
 ┃ ┃ ┃ ┃ ┃ ┃ ┣ dataSources
 ┃ ┃ ┃ ┃ ┃ ┃ ┃ ┣ RoomsRemoteDataSource.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┃ ┗ UserRemoteDataSource.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┣ requestModels
 ┃ ┃ ┃ ┃ ┃ ┃ ┃ ┣ CreateRoomRequestModel.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┃ ┣ EditFcmTokenRequestModel.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┃ ┣ GetUserProfileByEmailRequestModel.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┃ ┣ GetUserProfileByIdRequestModel.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┃ ┣ JoinRoomRequestModel.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┃ ┣ LoginRequestModel.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┃ ┣ RegisterRequestModel.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┃ ┗ RoomTypeEnumRequestModel.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┗ responseModels
 ┃ ┃ ┃ ┃ ┃ ┃ ┃ ┣ BaseApiResponse.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┃ ┣ ParticipantResponseModel.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┃ ┣ RoomResponseModel.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┃ ┣ RoomTypeResponseModel.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┃ ┗ UserResponseModel.kt
 ┃ ┃ ┃ ┃ ┗ utilities
 ┃ ┃ ┃ ┃ ┃ ┣ ApiExtensions.kt
 ┃ ┃ ┃ ┃ ┃ ┣ Constants.kt
 ┃ ┃ ┃ ┃ ┃ ┗ PreferenceDataStoreHelper.kt
 ┃ ┃ ┃ ┣ domain
 ┃ ┃ ┃ ┃ ┣ models
 ┃ ┃ ┃ ┃ ┃ ┣ ParticipantModel.kt
 ┃ ┃ ┃ ┃ ┃ ┣ RoomModel.kt
 ┃ ┃ ┃ ┃ ┃ ┣ RoomTypeModel.kt
 ┃ ┃ ┃ ┃ ┃ ┣ UserModel.kt
 ┃ ┃ ┃ ┃ ┃ ┗ ValidateResult.kt
 ┃ ┃ ┃ ┃ ┣ repositories
 ┃ ┃ ┃ ┃ ┃ ┣ RoomRepository.kt
 ┃ ┃ ┃ ┃ ┃ ┗ UserRepository.kt
 ┃ ┃ ┃ ┃ ┣ usecases
 ┃ ┃ ┃ ┃ ┃ ┣ CheckIsAccountValidUseCase.kt
 ┃ ┃ ┃ ┃ ┃ ┣ CreateAccountUseCase.kt
 ┃ ┃ ┃ ┃ ┃ ┣ CreateAudioRoomUseCase.kt
 ┃ ┃ ┃ ┃ ┃ ┣ CreateLinkRoomUseCase.kt
 ┃ ┃ ┃ ┃ ┃ ┣ CreateVideoRoomUseCase.kt
 ┃ ┃ ┃ ┃ ┃ ┣ DeleteUserAccountUseCase.kt
 ┃ ┃ ┃ ┃ ┃ ┣ GetRoomInfoUseCase.kt
 ┃ ┃ ┃ ┃ ┃ ┣ GetUserProfileUseCase.kt
 ┃ ┃ ┃ ┃ ┃ ┣ GetUserRoomsUseCase.kt
 ┃ ┃ ┃ ┃ ┃ ┣ JoinRoomUseCase.kt
 ┃ ┃ ┃ ┃ ┃ ┣ LaunchJitsiMeetingUseCase.kt
 ┃ ┃ ┃ ┃ ┃ ┣ LoginUseCase.kt
 ┃ ┃ ┃ ┃ ┃ ┣ SendVerificationEmailUseCase.kt
 ┃ ┃ ┃ ┃ ┃ ┣ UpdateUserFcmTokenUseCase.kt
 ┃ ┃ ┃ ┃ ┃ ┣ ValidateConfirmPasswordUseCase.kt
 ┃ ┃ ┃ ┃ ┃ ┣ ValidateEmailUseCase.kt
 ┃ ┃ ┃ ┃ ┃ ┣ ValidateOtpCodeUseCase.kt
 ┃ ┃ ┃ ┃ ┃ ┣ ValidatePasswordUseCase.kt
 ┃ ┃ ┃ ┃ ┃ ┣ ValidateUserNameUseCase.kt
 ┃ ┃ ┃ ┃ ┃ ┗ VerifyOtpCodeUseCase.kt
 ┃ ┃ ┃ ┃ ┗ utilities
 ┃ ┃ ┃ ┃ ┃ ┣ Constants.kt
 ┃ ┃ ┃ ┃ ┃ ┗ Exceptions.kt
 ┃ ┃ ┃ ┣ framework
 ┃ ┃ ┃ ┃ ┗ services
 ┃ ┃ ┃ ┃ ┃ ┣ Constants.kt
 ┃ ┃ ┃ ┃ ┃ ┗ FCMService.kt
 ┃ ┃ ┃ ┣ presentation
 ┃ ┃ ┃ ┃ ┣ createRoomScreen
 ┃ ┃ ┃ ┃ ┃ ┣ components
 ┃ ┃ ┃ ┃ ┃ ┃ ┗ InputFieldChips.kt
 ┃ ┃ ┃ ┃ ┃ ┣ uiStates
 ┃ ┃ ┃ ┃ ┃ ┃ ┣ NewRoomUiEvent.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┣ NewRoomUiState.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┣ ParticipantUserUiState.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┗ ParticipantsInputFieldUiState.kt
 ┃ ┃ ┃ ┃ ┃ ┣ CreateRoomScreen.kt
 ┃ ┃ ┃ ┃ ┃ ┗ CreateRoomViewModel.kt
 ┃ ┃ ┃ ┃ ┣ homeScreen
 ┃ ┃ ┃ ┃ ┃ ┣ components
 ┃ ┃ ┃ ┃ ┃ ┃ ┣ DefaultCard.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┣ RoomCard.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┗ RoomListItem.kt
 ┃ ┃ ┃ ┃ ┃ ┣ uiStates
 ┃ ┃ ┃ ┃ ┃ ┃ ┣ HomeUiEvent.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┣ ItemPosition.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┣ RoomItemUiState.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┗ RoomsUiState.kt
 ┃ ┃ ┃ ┃ ┃ ┣ HomeScreen.kt
 ┃ ┃ ┃ ┃ ┃ ┗ HomeViewModel.kt
 ┃ ┃ ┃ ┃ ┣ incomingCallScreen
 ┃ ┃ ┃ ┃ ┃ ┣ IncomingCallScreen.kt
 ┃ ┃ ┃ ┃ ┃ ┗ IncomingCallViewModel.kt
 ┃ ┃ ┃ ┃ ┣ loginScreen
 ┃ ┃ ┃ ┃ ┃ ┣ components
 ┃ ┃ ┃ ┃ ┃ ┃ ┣ CenterLoadingBar.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┗ TransparentInputField.kt
 ┃ ┃ ┃ ┃ ┃ ┣ uiStates
 ┃ ┃ ┃ ┃ ┃ ┃ ┣ InputFieldUiState.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┣ LoginUiEvent.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┗ LoginUiState.kt
 ┃ ┃ ┃ ┃ ┃ ┣ LoginScreen.kt
 ┃ ┃ ┃ ┃ ┃ ┗ LoginViewModel.kt
 ┃ ┃ ┃ ┃ ┣ mappers
 ┃ ┃ ┃ ┃ ┃ ┗ RoomToUiStateMapper.kt
 ┃ ┃ ┃ ┃ ┣ otpScreen
 ┃ ┃ ┃ ┃ ┃ ┣ components
 ┃ ┃ ┃ ┃ ┃ ┃ ┗ OtpCodeView.kt
 ┃ ┃ ┃ ┃ ┃ ┣ uiStates
 ┃ ┃ ┃ ┃ ┃ ┃ ┣ OtpUiEvent.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┗ OtpUiState.kt
 ┃ ┃ ┃ ┃ ┃ ┣ OtpCodeScreen.kt
 ┃ ┃ ┃ ┃ ┃ ┗ OtpVIewModel.kt
 ┃ ┃ ┃ ┃ ┣ registerScreen
 ┃ ┃ ┃ ┃ ┃ ┣ uiStates
 ┃ ┃ ┃ ┃ ┃ ┃ ┣ RegisterUiEvent.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┗ RegisterUiState.kt
 ┃ ┃ ┃ ┃ ┃ ┣ RegisterScreen.kt
 ┃ ┃ ┃ ┃ ┃ ┗ RegisterViewModel.kt
 ┃ ┃ ┃ ┃ ┣ splashScreen
 ┃ ┃ ┃ ┃ ┃ ┣ uiStates
 ┃ ┃ ┃ ┃ ┃ ┃ ┗ SplashUiState.kt
 ┃ ┃ ┃ ┃ ┃ ┗ SplashViewModel.kt
 ┃ ┃ ┃ ┃ ┣ ui
 ┃ ┃ ┃ ┃ ┃ ┗ theme
 ┃ ┃ ┃ ┃ ┃ ┃ ┣ Color.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┣ Theme.kt
 ┃ ┃ ┃ ┃ ┃ ┃ ┗ Type.kt
 ┃ ┃ ┃ ┃ ┗ utilities
 ┃ ┃ ┃ ┃ ┃ ┣ Constants.kt
 ┃ ┃ ┃ ┃ ┃ ┣ DateAndTimeUtils.kt
 ┃ ┃ ┃ ┃ ┃ ┣ RoomItemPositionUtil.kt
 ┃ ┃ ┃ ┃ ┃ ┗ Screen.kt
 ┃ ┃ ┃ ┣ FaceTimeApp.kt
 ┃ ┃ ┃ ┗ MainActivity.kt

Future Enhancements

  • Implement an Edit button mechanism
  • Develop a room information screen

LICENSE


Copyright (c) 2022 adelayman1

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.```

About

This repository contains a FaceTimeClone app that implements mvvm architecture , clean architecture , navigation component , hilt , etc.... using kotlin language

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages