├── .gitignore ├── LICENSE ├── README.md ├── changes.md ├── data ├── .editorconfig ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── sesameware │ │ └── data │ │ └── ExampleInstrumentedTest.kt │ ├── google │ ├── AndroidManifest.xml │ └── java │ │ └── com │ │ └── sesameware │ │ └── smartyard_oem │ │ └── Crashlytics.kt │ ├── huawei │ ├── AndroidManifest.xml │ └── java │ │ └── com │ │ └── sesameware │ │ └── smartyard_oem │ │ └── Crashlytics.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── sesameware │ │ │ └── data │ │ │ ├── DataModule.kt │ │ │ ├── interceptors │ │ │ ├── CommonInterceptor.kt │ │ │ └── SessionInterceptor.kt │ │ │ ├── local │ │ │ ├── dao │ │ │ │ └── AddressDao.kt │ │ │ ├── db │ │ │ │ └── ItemsDatabase.kt │ │ │ ├── entity │ │ │ │ ├── AddressDoorEntity.kt │ │ │ │ └── Converters.kt │ │ │ └── mapper │ │ │ │ └── Mapper.kt │ │ │ ├── prefs │ │ │ ├── SharedPreferenceStorage.kt │ │ │ └── common.kt │ │ │ ├── remote │ │ │ └── TeledomApi.kt │ │ │ └── repository │ │ │ ├── AddressRepositoryImpl.kt │ │ │ ├── AuthRepositoryImpl.kt │ │ │ ├── BaseRepository.kt │ │ │ ├── CCTVRepositoryImpl.kt │ │ │ ├── DatabaseRepositoryImpl.kt │ │ │ ├── ExtRepositoryImpl.kt │ │ │ ├── FRSRepositoryImpl.kt │ │ │ ├── GeoRepositoryImpl.kt │ │ │ ├── InboxRepositoryImpl.kt │ │ │ ├── IssueRepositoryImpl.kt │ │ │ ├── PayRepositroyImpl.kt │ │ │ └── SipRepositoryImpl.kt │ └── res │ │ └── values │ │ ├── feature_flags.xml │ │ └── strings.xml │ ├── rustore │ ├── AndroidManifest.xml │ └── java │ │ └── com │ │ └── sesameware │ │ └── smartyard_oem │ │ └── Crashlytics.kt │ └── test │ └── java │ └── com │ └── sesameware │ └── data │ └── ExampleUnitTest.kt ├── domain ├── .editorconfig ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── sesameware │ │ └── domain │ │ ├── DomainModule.kt │ │ ├── interactors │ │ ├── AddressInteractor.kt │ │ ├── AuthInteractor.kt │ │ ├── CCTVInteractor.kt │ │ ├── DatabaseInteractor.kt │ │ ├── ExtInteractor.kt │ │ ├── FRSInteractor.kt │ │ ├── GeoInteractor.kt │ │ ├── InboxInteractor.kt │ │ ├── IssueInteractor.kt │ │ ├── PayInteractor.kt │ │ └── SipInteractor.kt │ │ ├── interfaces │ │ ├── AddressRepository.kt │ │ ├── AuthRepository.kt │ │ ├── CCTVRepository.kt │ │ ├── DatabaseRepository.kt │ │ ├── ExtRepository.kt │ │ ├── FRSRepository.kt │ │ ├── GeoRepository.kt │ │ ├── InboxRepository.kt │ │ ├── IssueRepository.kt │ │ ├── PayRepository.kt │ │ └── SipRepository.kt │ │ ├── model │ │ ├── AddressItem.kt │ │ ├── PushCallData.kt │ │ ├── ResultWrapper.kt │ │ ├── Services.kt │ │ ├── common.kt │ │ ├── request │ │ │ ├── AccessRequest.kt │ │ │ ├── ActionIssueRequest.kt │ │ │ ├── AddMyPhoneRequest.kt │ │ │ ├── AppVersionRequest.kt │ │ │ ├── CCTVAllRequest.kt │ │ │ ├── CCTVRangesRequest.kt │ │ │ ├── CCTVRecDownloadRequest.kt │ │ │ ├── CCTVRecPrepareRequest.kt │ │ │ ├── CCTVYoutubeRequest.kt │ │ │ ├── CommentRequest.kt │ │ │ ├── ConfirmCodeRecoveryRequest.kt │ │ │ ├── ConfirmCodeRequest.kt │ │ │ ├── CreateIssuesRequest.kt │ │ │ ├── DeliveryChangeRequest.kt │ │ │ ├── DisLikeRequest.kt │ │ │ ├── ExtRequest.kt │ │ │ ├── GetAddressRequest.kt │ │ │ ├── GetCoderRequest.kt │ │ │ ├── GetHousesRequest.kt │ │ │ ├── GetIntercomRequest.kt │ │ │ ├── GetServicesRequest.kt │ │ │ ├── GetStreetsRequest.kt │ │ │ ├── LikeRequest.kt │ │ │ ├── ListFacesRequest.kt │ │ │ ├── OpenDoorRequest.kt │ │ │ ├── PayPrepareRequest.kt │ │ │ ├── PayRegisterRequest.kt │ │ │ ├── PlogDaysRequest.kt │ │ │ ├── PlogRequest.kt │ │ │ ├── PutIntercomRequest.kt │ │ │ ├── QRRequest.kt │ │ │ ├── RecoveryOptionsRequest.kt │ │ │ ├── RegisterPushTokenRequest.kt │ │ │ ├── RequestCodeRequest.kt │ │ │ ├── ResendRequest.kt │ │ │ ├── ResetCodeRequest.kt │ │ │ ├── SendNameRequest.kt │ │ │ ├── SentCodeRecoveryRequest.kt │ │ │ └── UserNotificationRequest.kt │ │ └── response │ │ │ ├── AccessResponse.kt │ │ │ ├── ActionIssueResponse.kt │ │ │ ├── AddMyPhoneResponse.kt │ │ │ ├── ApiResult.kt │ │ │ ├── AppVersionResponse.kt │ │ │ ├── CCTVRecDownloadResponse.kt │ │ │ ├── CCTVRecPrepareResponse.kt │ │ │ ├── CamMapResponse.kt │ │ │ ├── CommentResponse.kt │ │ │ ├── ConfirmCodeRecoveryResponse.kt │ │ │ ├── ConfirmCodeResponse.kt │ │ │ ├── CreateIssuesResponse.kt │ │ │ ├── DeliveryChangeResponse.kt │ │ │ ├── DisLikeResponse.kt │ │ │ ├── ExtListResponse.kt │ │ │ ├── ExtResponse.kt │ │ │ ├── GetAddressListResponse.kt │ │ │ ├── GetAddressResponse.kt │ │ │ ├── GetAllLocationsResponse.kt │ │ │ ├── GetCCTVResponse.kt │ │ │ ├── GetCoderResponse.kt │ │ │ ├── GetHousesResponse.kt │ │ │ ├── GetServicesResponse.kt │ │ │ ├── GetSettingsListResponse.kt │ │ │ ├── GetStreetsResponse.kt │ │ │ ├── InboxResponse.kt │ │ │ ├── IntercomResponse.kt │ │ │ ├── LikeResponse.kt │ │ │ ├── ListConnectIssueResponse.kt │ │ │ ├── ListFacesResponse.kt │ │ │ ├── OfficesResponse.kt │ │ │ ├── OpenDoorResponse.kt │ │ │ ├── PayPrepareResponse.kt │ │ │ ├── PayRegisterResponse.kt │ │ │ ├── PaymentsListResponse.kt │ │ │ ├── PlogDaysResponse.kt │ │ │ ├── PlogResponse.kt │ │ │ ├── ProviderConfigResponse.kt │ │ │ ├── ProvidersResponse.kt │ │ │ ├── QRResponse.kt │ │ │ ├── RangeObject.kt │ │ │ ├── RecoveryOptionsResponse.kt │ │ │ ├── RegisterPushTokenResponse.kt │ │ │ ├── RequestCodeResponse.kt │ │ │ ├── ResendResponse.kt │ │ │ ├── ResetCodeResponse.kt │ │ │ ├── RoommateResponse.kt │ │ │ ├── SendNameResponse.kt │ │ │ ├── SentCodeRecoveryResponse.kt │ │ │ ├── SipHelpMeResponse.kt │ │ │ ├── UnreadedResponse.kt │ │ │ └── UserNotificationResponse.kt │ │ └── utils │ │ └── common.kt │ └── res │ ├── values-en │ └── strings.xml │ ├── values-hy │ └── strings.xml │ ├── values-kk │ └── strings.xml │ ├── values-uz │ └── strings.xml │ └── values │ └── strings.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── ktlint.gradle ├── lib ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── sesameware │ │ └── lib │ │ ├── ArchiveIntervalsBar.kt │ │ ├── BubbleView.kt │ │ ├── Extensions.kt │ │ ├── MaskedEditText.kt │ │ ├── OverlayView.kt │ │ ├── Range.kt │ │ ├── RangeSlider.kt │ │ ├── RangeSliderView.kt │ │ ├── RawText.kt │ │ ├── ThumbView.kt │ │ └── data.kt │ └── res │ ├── drawable │ ├── background_round.xml │ ├── background_stroke.xml │ └── bg_bubble.xml │ ├── layout │ ├── bubble_view.xml │ └── range_slider.xml │ └── values │ ├── attrs.xml │ ├── colors.xml │ └── dimens.xml ├── presentation ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── sesameware │ │ └── smartyard_oem │ │ ├── AuthScreenTest.kt │ │ └── screen │ │ ├── AddressScreen.kt │ │ ├── AppealScreen.kt │ │ ├── BasicSettingsScreen.kt │ │ ├── MainScreen.kt │ │ ├── NumberRegScreen.kt │ │ ├── SettingsScreen.kt │ │ └── SmsRegScreen.kt │ ├── google │ ├── AndroidManifest.xml │ └── java │ │ └── com │ │ └── sesameware │ │ └── smartyard_oem │ │ ├── Market.kt │ │ └── MessagingService.kt │ ├── huawei │ ├── AndroidManifest.xml │ └── java │ │ └── com │ │ └── sesameware │ │ └── smartyard_oem │ │ ├── Market.kt │ │ └── MessagingService.kt │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ │ └── com │ │ │ └── sesameware │ │ │ └── smartyard_oem │ │ │ ├── .editorconfig │ │ │ ├── App.kt │ │ │ ├── CommonActivity.kt │ │ │ ├── Event.kt │ │ │ ├── Extensions.kt │ │ │ ├── GenericViewModel.kt │ │ │ ├── GlobalDataSource.kt │ │ │ ├── LinphoneProvider.kt │ │ │ ├── LinphoneService.kt │ │ │ ├── MapFragment.kt │ │ │ ├── di │ │ │ ├── Modules.kt │ │ │ └── PresentationModule.kt │ │ │ └── ui │ │ │ ├── DividerItemDecorator.java │ │ │ ├── NavigationExtensions.kt │ │ │ ├── call │ │ │ ├── IncomingButtonView.kt │ │ │ ├── IncomingCallActivity.kt │ │ │ └── IncomingCallActivityViewModel.kt │ │ │ ├── common.kt │ │ │ ├── common │ │ │ ├── AppealForm.kt │ │ │ └── AppealFormViewModel.kt │ │ │ ├── custom_web_view │ │ │ ├── CustomWebBottomFragment.kt │ │ │ ├── CustomWebChromeClient.kt │ │ │ ├── CustomWebInterface.kt │ │ │ ├── CustomWebViewClient.kt │ │ │ └── CustomWebViewFragment.kt │ │ │ ├── launcher │ │ │ ├── LauncherActivity.kt │ │ │ └── LauncherViewModel.kt │ │ │ ├── main │ │ │ ├── BaseIssueViewModel.kt │ │ │ ├── GeometryUtils.kt │ │ │ ├── MagicShapePath.kt │ │ │ ├── MainActivity.kt │ │ │ ├── MainActivityViewModel.kt │ │ │ ├── MorphBottomNavigationView.kt │ │ │ ├── MorphBottomNavigationViewTopEdgeTreatment.kt │ │ │ ├── address │ │ │ │ ├── adapters │ │ │ │ │ └── AddressListAdapter.kt │ │ │ │ ├── addressVerification │ │ │ │ │ ├── AddressVerificationFragment.kt │ │ │ │ │ ├── TabAdapter.kt │ │ │ │ │ ├── courier │ │ │ │ │ │ ├── CourierFragment.kt │ │ │ │ │ │ └── CourierViewModel.kt │ │ │ │ │ └── office │ │ │ │ │ │ ├── OfficeFragment.kt │ │ │ │ │ │ └── OfficeViewModel.kt │ │ │ │ ├── auth │ │ │ │ │ ├── AuthFragment.kt │ │ │ │ │ ├── AuthViewModel.kt │ │ │ │ │ └── restoreAccess │ │ │ │ │ │ ├── RecoveryModel.kt │ │ │ │ │ │ ├── RestoreAccessFragment.kt │ │ │ │ │ │ ├── RestoreAccessViewModel.kt │ │ │ │ │ │ ├── RestoreAdapter.kt │ │ │ │ │ │ ├── RestoreAdapterDelegate.kt │ │ │ │ │ │ └── codeSmsRestore │ │ │ │ │ │ ├── CodeSmsRestoreFragment.kt │ │ │ │ │ │ └── CodeSmsRestoreViewModel.kt │ │ │ │ ├── availableServices │ │ │ │ │ ├── AvailableAdapter.kt │ │ │ │ │ ├── AvailableAdapterDelegate.kt │ │ │ │ │ └── AvailableModel.kt │ │ │ │ ├── cctv_video │ │ │ │ │ ├── CCTVArchivePlayerViewModel.kt │ │ │ │ │ ├── CCTVDetailFragment.kt │ │ │ │ │ ├── CCTVMapFragment.kt │ │ │ │ │ ├── CCTVPlayer.kt │ │ │ │ │ ├── CCTVTreeFragment.kt │ │ │ │ │ ├── CCTVViewModel.kt │ │ │ │ │ ├── ZoomLayout.kt │ │ │ │ │ ├── adapters │ │ │ │ │ │ ├── DetailButtonsAdapter.kt │ │ │ │ │ │ └── TimeFragmentButtonsAdapter.kt │ │ │ │ │ └── detail │ │ │ │ │ │ ├── CCTVOnlineTabFragment.kt │ │ │ │ │ │ ├── DayBinder.kt │ │ │ │ │ │ └── arhive │ │ │ │ │ │ └── CCTVArchiveTabCalendarFragment.kt │ │ │ │ ├── event_log │ │ │ │ │ ├── EventLogDetailFragment.kt │ │ │ │ │ ├── EventLogFragment.kt │ │ │ │ │ ├── EventLogViewModel.kt │ │ │ │ │ ├── FaceImageView.kt │ │ │ │ │ ├── SnapScrolling.kt │ │ │ │ │ └── adapters │ │ │ │ │ │ ├── EventLogChildAdapter.kt │ │ │ │ │ │ ├── EventLogDetailAdapter.kt │ │ │ │ │ │ ├── EventLogDetailItemAction.kt │ │ │ │ │ │ ├── EventLogDetailVH.kt │ │ │ │ │ │ └── EventLogParentAdapter.kt │ │ │ │ ├── guestAccessDialog │ │ │ │ │ ├── GuestAccessDelegates.kt │ │ │ │ │ ├── GuestAccessDialogFragment.kt │ │ │ │ │ └── GuestAccessModel.kt │ │ │ │ ├── helpers │ │ │ │ │ ├── CombinedLiveData.kt │ │ │ │ │ └── DragToSortCallback.kt │ │ │ │ ├── inputAdress │ │ │ │ │ ├── CityAdapter.kt │ │ │ │ │ ├── HousesAdapter.kt │ │ │ │ │ ├── InputAddressFragment.kt │ │ │ │ │ ├── InputAddressViewModel.kt │ │ │ │ │ └── StreetAdapter.kt │ │ │ │ ├── models │ │ │ │ │ ├── AddresListAction.kt │ │ │ │ │ ├── AddressUiModel.kt │ │ │ │ │ ├── EntranceId.kt │ │ │ │ │ ├── EntranceState.kt │ │ │ │ │ ├── HouseUiModel.kt │ │ │ │ │ ├── IssueAction.kt │ │ │ │ │ ├── IssueModel.kt │ │ │ │ │ ├── ParentModel.kt │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── DisplayableItem.kt │ │ │ │ │ │ ├── EventLogModel.kt │ │ │ │ │ │ ├── ObjectItem.kt │ │ │ │ │ │ ├── VideoCameraModel.kt │ │ │ │ │ │ └── Yard.kt │ │ │ │ ├── noNetwork │ │ │ │ │ └── ServicesAdapterDelegate.kt │ │ │ │ ├── qrCode │ │ │ │ │ ├── QrCodeFragment.kt │ │ │ │ │ └── QrCodeViewModel.kt │ │ │ │ └── workSoon │ │ │ │ │ ├── courier │ │ │ │ │ ├── WorkSoonCourierFragment.kt │ │ │ │ │ └── WorkSoonCourierViewModel.kt │ │ │ │ │ └── office │ │ │ │ │ ├── WorkSoonOfficeFragment.kt │ │ │ │ │ └── WorkSoonOfficeViewModel.kt │ │ │ ├── burger │ │ │ │ ├── BurgerDelegate.kt │ │ │ │ ├── BurgerFragment.kt │ │ │ │ ├── BurgerModel.kt │ │ │ │ ├── BurgerViewModel.kt │ │ │ │ ├── CallToSupportFragment.kt │ │ │ │ └── cityCameras │ │ │ │ │ ├── CityCameraFragment.kt │ │ │ │ │ ├── CityCamerasMapFragment.kt │ │ │ │ │ ├── CityCamerasViewModel.kt │ │ │ │ │ ├── RequestRecordFragment.kt │ │ │ │ │ └── adapters │ │ │ │ │ └── CityCameraEventAdapter.kt │ │ │ ├── chat │ │ │ │ ├── ChatFragment.kt │ │ │ │ └── ChatViewModel.kt │ │ │ ├── notification │ │ │ │ ├── NotificationFragment.kt │ │ │ │ └── NotificationViewModel.kt │ │ │ ├── pay │ │ │ │ ├── PayAddressDelegate.kt │ │ │ │ ├── PayAddressFragment.kt │ │ │ │ ├── PayAddressModel.kt │ │ │ │ ├── PayAddressViewModel.kt │ │ │ │ └── contract │ │ │ │ │ ├── PayContractFragment.kt │ │ │ │ │ ├── PayContractPagerAdapter.kt │ │ │ │ │ ├── PayContractViewModel.kt │ │ │ │ │ ├── dialogError │ │ │ │ │ └── ErrorBottomSheetDialogFragment.kt │ │ │ │ │ ├── dialogPay │ │ │ │ │ ├── PayBottomSheetDialogFragment.kt │ │ │ │ │ └── PayBottomSheetDialogViewModel.kt │ │ │ │ │ ├── dialogSuccessfully │ │ │ │ │ └── SuccessBottomSheetDialogFragment.kt │ │ │ │ │ └── webview │ │ │ │ │ ├── PayWebViewFragment.kt │ │ │ │ │ └── PayWebViewViewModel.kt │ │ │ └── settings │ │ │ │ ├── SettingsAddressModel.kt │ │ │ │ ├── SettingsViewModel.kt │ │ │ │ ├── accessAddress │ │ │ │ ├── AccessAddressFragment.kt │ │ │ │ ├── AccessAddressViewModel.kt │ │ │ │ ├── adapterdelegates │ │ │ │ │ └── ContactAdapterDelegate.kt │ │ │ │ ├── dialogDeleteReason │ │ │ │ │ ├── DialogDeleteReasonFragment.kt │ │ │ │ │ ├── DialogDeleteReasonViewModel.kt │ │ │ │ │ ├── ReasonDelegateAdapter.kt │ │ │ │ │ └── ReasonModel.kt │ │ │ │ ├── dialogShareAccess │ │ │ │ │ └── DialogShareAccessDialog.kt │ │ │ │ └── models │ │ │ │ │ └── ContactModel.kt │ │ │ │ ├── addressSettings │ │ │ │ └── AddressSettingsViewModel.kt │ │ │ │ ├── basicSettings │ │ │ │ ├── BasicSettingsFragment.kt │ │ │ │ └── BasicSettingsViewModel.kt │ │ │ │ ├── dialog │ │ │ │ ├── DialogChangeName.kt │ │ │ │ ├── DialogServiceFragment.kt │ │ │ │ └── SelectThemeBottomSheetFragment.kt │ │ │ │ └── faceSettings │ │ │ │ ├── FaceSettingsFragment.kt │ │ │ │ ├── FaceSettingsViewModel.kt │ │ │ │ ├── adapters │ │ │ │ └── FaceSettingsAdapter.kt │ │ │ │ ├── dialogAddPhoto │ │ │ │ └── DialogAddPhotoFragment.kt │ │ │ │ ├── dialogRemovePhoto │ │ │ │ └── DialogRemovePhotoFragment.kt │ │ │ │ └── dialogViewPhoto │ │ │ │ └── DialogViewPhotoFragment.kt │ │ │ ├── map │ │ │ ├── MapProvider.kt │ │ │ ├── OSMMap.kt │ │ │ └── SimpleMap.kt │ │ │ ├── onboarding │ │ │ ├── OnboardingPageAdapter.kt │ │ │ ├── OnboardingPageModel.kt │ │ │ └── OnboardingViewModel.kt │ │ │ ├── reg │ │ │ ├── RegistrationActivity.kt │ │ │ ├── RegistrationViewModel.kt │ │ │ ├── outgoing_call │ │ │ │ ├── OutgoingCallFragment.kt │ │ │ │ └── OutgoingCallViewModel.kt │ │ │ ├── providers │ │ │ │ ├── ProviderModel.kt │ │ │ │ ├── ProvidersAdapter.kt │ │ │ │ ├── ProvidersAdapterDelegate.kt │ │ │ │ ├── ProvidersFragment.kt │ │ │ │ └── ProvidersViewModel.kt │ │ │ ├── sms │ │ │ │ └── SmsRegFragment.kt │ │ │ └── tel │ │ │ │ ├── NumberRegFragment.kt │ │ │ │ └── NumberRegViewModel.kt │ │ │ ├── show_event │ │ │ └── ShowEventActivity.kt │ │ │ ├── viewPager2 │ │ │ ├── DepthPageTransformer.kt │ │ │ └── ZoomOutPageTransformer.kt │ │ │ ├── webview_dialog │ │ │ └── WebViewDialogFragment.kt │ │ │ └── widget │ │ │ ├── WidgetActivity.kt │ │ │ ├── WidgetFactory.kt │ │ │ ├── WidgetProvider.kt │ │ │ └── WidgetService.java │ └── res │ │ ├── color │ │ ├── button_text_flooded.xml │ │ ├── button_text_no_flooded.xml │ │ ├── calendar_bg.xml │ │ ├── color_bottom_nav_item.xml │ │ ├── color_cctv_button_text.xml │ │ ├── textview_colors.xml │ │ └── toggle_color_text.xml │ │ ├── drawable-hdpi │ │ ├── ic_map_oval.png │ │ ├── ic_notification.png │ │ └── widget_preview.png │ │ ├── drawable-mdpi │ │ ├── ic_map_oval.png │ │ ├── ic_notification.png │ │ └── widget_preview.png │ │ ├── drawable-night │ │ ├── background_call.xml │ │ ├── background_top_narrow.xml │ │ └── background_top_wide.xml │ │ ├── drawable-xhdpi │ │ ├── googlepay_button_background_image.9.png │ │ ├── googlepay_button_no_shadow_background_image.9.png │ │ ├── ic_map_oval.png │ │ ├── ic_notification.png │ │ └── widget_preview.png │ │ ├── drawable-xxhdpi │ │ ├── googlepay_button_background_image.9.png │ │ ├── googlepay_button_no_shadow_background_image.9.png │ │ ├── ic_map_oval.png │ │ ├── ic_notification.png │ │ └── widget_preview.png │ │ ├── drawable-xxxhdpi │ │ ├── googlepay_button_background_image.9.png │ │ ├── googlepay_button_no_shadow_background_image.9.png │ │ ├── ic_map_oval.png │ │ ├── ic_notification.png │ │ └── widget_preview.png │ │ ├── drawable │ │ ├── address_settings_burger.xml │ │ ├── background_1.xml │ │ ├── background_auth.xml │ │ ├── background_bottom_nav_item.xml │ │ ├── background_bottom_sheet.xml │ │ ├── background_btn_open.xml │ │ ├── background_btn_openend.xml │ │ ├── background_call.xml │ │ ├── background_card.xml │ │ ├── background_dialog.xml │ │ ├── background_dialog_large.xml │ │ ├── background_edit_text_radius.xml │ │ ├── background_fullscreen.xml │ │ ├── background_radius.xml │ │ ├── background_radius_event_header.xml │ │ ├── background_radius_transparent.xml │ │ ├── background_radius_upper_blue.xml │ │ ├── background_radius_video_clip.xml │ │ ├── background_radius_web.xml │ │ ├── background_radius_white.xml │ │ ├── background_surface.xml │ │ ├── background_top_narrow.xml │ │ ├── background_top_wide.xml │ │ ├── background_widget.xml │ │ ├── beta.png │ │ ├── bg_oval_active.xml │ │ ├── bg_oval_no_active.xml │ │ ├── bg_pin.xml │ │ ├── bg_spinner.xml │ │ ├── border_red.xml │ │ ├── button_bg_flooded_rounded.xml │ │ ├── button_bg_flooded_rounded_green.xml │ │ ├── button_bg_flooded_rounded_red.xml │ │ ├── button_bg_no_flooded_rounded.xml │ │ ├── buy_with_googlepay_button_content.xml │ │ ├── calendar_selected_bg.xml │ │ ├── calendar_today_bg.xml │ │ ├── call_support_burger.xml │ │ ├── camera_frame.xml │ │ ├── cctv_interval_selected.xml │ │ ├── cctv_interval_selected_fs.xml │ │ ├── checkbox_check.xml │ │ ├── checkbox_no_check.xml │ │ ├── checkbox_no_enabled.xml │ │ ├── checkbox_round_state_answer.xml │ │ ├── checkbox_round_state_hang.xml │ │ ├── checkbox_round_state_peek.xml │ │ ├── checkbox_round_state_speak.xml │ │ ├── checkbox_round_state_unlock.xml │ │ ├── checkbox_round_state_unlocked.xml │ │ ├── checkbox_selector.xml │ │ ├── checkbox_state.xml │ │ ├── city_camera_burger.xml │ │ ├── color_cursor.xml │ │ ├── common_settings_burger.xml │ │ ├── dashed.xml │ │ ├── divider.xml │ │ ├── divider_empty.xml │ │ ├── googlepay_button_background.xml │ │ ├── googlepay_button_content.xml │ │ ├── googlepay_button_no_shadow_background.xml │ │ ├── googlepay_button_overlay.xml │ │ ├── ic_add_circle.xml │ │ ├── ic_add_face.xml │ │ ├── ic_add_user.xml │ │ ├── ic_addd.xml │ │ ├── ic_address_active.xml │ │ ├── ic_address_no_active.xml │ │ ├── ic_arrow_bottom.xml │ │ ├── ic_arrow_left_calendar.xml │ │ ├── ic_arrow_right.xml │ │ ├── ic_arrow_right_calendar.xml │ │ ├── ic_arrow_top.xml │ │ ├── ic_back_arrow.xml │ │ ├── ic_back_black.xml │ │ ├── ic_background.xml │ │ ├── ic_background_address.xml │ │ ├── ic_background_address_map.xml │ │ ├── ic_background_call.xml │ │ ├── ic_background_reg_number.xml │ │ ├── ic_backward_10.xml │ │ ├── ic_backward_15.xml │ │ ├── ic_backward_5.xml │ │ ├── ic_barrier.xml │ │ ├── ic_baseline_help.xml │ │ ├── ic_blue_circle_4.xml │ │ ├── ic_burger_active.xml │ │ ├── ic_burger_no_active.xml │ │ ├── ic_business_woman.xml │ │ ├── ic_call_active.xml │ │ ├── ic_call_no_active.xml │ │ ├── ic_call_state.xml │ │ ├── ic_call_support.xml │ │ ├── ic_callback_support.xml │ │ ├── ic_carpic.xml │ │ ├── ic_cctv_button_sel.xml │ │ ├── ic_cctv_button_state.xml │ │ ├── ic_cctv_button_unsel.xml │ │ ├── ic_cctv_enter_fullscreen.xml │ │ ├── ic_cctv_exit_fullscreen.xml │ │ ├── ic_cctv_minus_15.xml │ │ ├── ic_cctv_p_button.xml │ │ ├── ic_cctv_p_button_fs.xml │ │ ├── ic_cctv_p_button_pause.xml │ │ ├── ic_cctv_p_button_pause_fs.xml │ │ ├── ic_cctv_p_button_play.xml │ │ ├── ic_cctv_p_button_play_fs.xml │ │ ├── ic_cctv_plus_15.xml │ │ ├── ic_cctv_thumb_seek.xml │ │ ├── ic_cctv_thumb_trim.xml │ │ ├── ic_cctv_to_play_mode.xml │ │ ├── ic_cctv_video_fullscreen.xml │ │ ├── ic_cctv_volume_off_24px.xml │ │ ├── ic_cctv_volume_on_24px.xml │ │ ├── ic_chat_active.xml │ │ ├── ic_chat_no_active.xml │ │ ├── ic_close.xml │ │ ├── ic_close_dialog.xml │ │ ├── ic_close_support.xml │ │ ├── ic_courier.xml │ │ ├── ic_courier_qr_code.xml │ │ ├── ic_courier_reuest.xml │ │ ├── ic_courier_uses.xml │ │ ├── ic_delete.xml │ │ ├── ic_dialog_bottom_sheet_rectangle.xml │ │ ├── ic_el_app.xml │ │ ├── ic_el_calendar.xml │ │ ├── ic_el_call_doorphone.xml │ │ ├── ic_el_code.xml │ │ ├── ic_el_face.xml │ │ ├── ic_el_gates.xml │ │ ├── ic_el_info.xml │ │ ├── ic_el_key.xml │ │ ├── ic_el_scroll_up.xml │ │ ├── ic_el_vehicle.xml │ │ ├── ic_eld_answered_call.xml │ │ ├── ic_eld_foe.xml │ │ ├── ic_eld_friend.xml │ │ ├── ic_eld_unanswered_call.xml │ │ ├── ic_ellipse_badge.xml │ │ ├── ic_error_pay.xml │ │ ├── ic_event_log.xml │ │ ├── ic_expand.xml │ │ ├── ic_eye_active.xml │ │ ├── ic_eye_no_active.xml │ │ ├── ic_eye_state.xml │ │ ├── ic_flash_off.xml │ │ ├── ic_flash_on.xml │ │ ├── ic_forward_10.xml │ │ ├── ic_forward_15.xml │ │ ├── ic_forward_5.xml │ │ ├── ic_fullscreen.xml │ │ ├── ic_gates.xml │ │ ├── ic_key_active.xml │ │ ├── ic_key_no_active.xml │ │ ├── ic_key_state.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_map_camera.xml │ │ ├── ic_map_city_camera.xml │ │ ├── ic_map_icon_bg.xml │ │ ├── ic_marker.xml │ │ ├── ic_minimize.xml │ │ ├── ic_monitor_active.xml │ │ ├── ic_monitor_no_active.xml │ │ ├── ic_monitor_state.xml │ │ ├── ic_nav_address.xml │ │ ├── ic_nav_burger.xml │ │ ├── ic_nav_chat.xml │ │ ├── ic_nav_notification.xml │ │ ├── ic_nav_pay.xml │ │ ├── ic_nav_setting.xml │ │ ├── ic_no_photography_24.xml │ │ ├── ic_notification_active.xml │ │ ├── ic_notification_no_active.xml │ │ ├── ic_notifications_black_24dp.xml │ │ ├── ic_onboarding_cam.xml │ │ ├── ic_onboarding_donation.xml │ │ ├── ic_onboarding_intercom.xml │ │ ├── ic_open.xml │ │ ├── ic_pay_active.xml │ │ ├── ic_pay_google.xml │ │ ├── ic_pay_no_active.xml │ │ ├── ic_pencil_edit.xml │ │ ├── ic_placeholder_image.png │ │ ├── ic_placeholder_video.png │ │ ├── ic_plus.xml │ │ ├── ic_porch.xml │ │ ├── ic_qr_code.xml │ │ ├── ic_refresh.xml │ │ ├── ic_remove_face.xml │ │ ├── ic_ripple_for_round_button.xml │ │ ├── ic_round.xml │ │ ├── ic_round_answer.xml │ │ ├── ic_round_answer_disabled.xml │ │ ├── ic_round_hang.xml │ │ ├── ic_round_lock.xml │ │ ├── ic_round_peek.xml │ │ ├── ic_round_peek_disabled.xml │ │ ├── ic_round_unlock.xml │ │ ├── ic_round_unlocked.xml │ │ ├── ic_setting.xml │ │ ├── ic_setting_active.xml │ │ ├── ic_setting_no_active.xml │ │ ├── ic_settings_call.xml │ │ ├── ic_settings_eye.xml │ │ ├── ic_settings_key.xml │ │ ├── ic_settings_monitor.xml │ │ ├── ic_settings_wifi.xml │ │ ├── ic_speak_off.xml │ │ ├── ic_speak_on.xml │ │ ├── ic_success.xml │ │ ├── ic_time_fragment_button_bg.xml │ │ ├── ic_time_fragment_button_bg_active.xml │ │ ├── ic_time_fragment_button_bg_inactive.xml │ │ ├── ic_trash.xml │ │ ├── ic_userpic.xml │ │ ├── ic_video_camera.xml │ │ ├── ic_visibility.xml │ │ ├── ic_visibility_off.xml │ │ ├── ic_wicket.xml │ │ ├── ic_wifi_active.xml │ │ ├── ic_wifi_no_active.xml │ │ ├── ic_wifi_state.xml │ │ ├── launch_screen.xml │ │ ├── layout_rounded_bg.xml │ │ ├── modal_window_background.xml │ │ ├── rounded_bottom_sheet_dialog.xml │ │ ├── rounded_corner.xml │ │ ├── selector_fullscreen.xml │ │ ├── selector_mute.xml │ │ ├── switch_button_selector.xml │ │ ├── switch_flash_button_selector.xml │ │ ├── switchbutton_off.xml │ │ ├── switchbutton_on.xml │ │ ├── togglebutton_off.xml │ │ ├── togglebutton_on.xml │ │ ├── togglebutton_selector_round.xml │ │ ├── tooglebutton_selector.xml │ │ └── weather.png │ │ ├── font │ │ ├── source_sans_family.xml │ │ ├── source_sans_pro_black.ttf │ │ ├── source_sans_pro_bold.ttf │ │ ├── source_sans_pro_italic.ttf │ │ ├── source_sans_pro_light.ttf │ │ ├── source_sans_pro_regular.ttf │ │ └── source_sans_pro_semi_bold.ttf │ │ ├── layout-land │ │ └── activity_incoming_call.xml │ │ ├── layout │ │ ├── activity_incoming_call.xml │ │ ├── activity_lin.xml │ │ ├── activity_main.xml │ │ ├── activity_onboarding.xml │ │ ├── activity_registration.xml │ │ ├── app_widget.xml │ │ ├── bottom_dialog_sheet_pay.xml │ │ ├── bottom_dialog_sheet_success.xml │ │ ├── bottom_sheet_fragment_select_theme.xml │ │ ├── buy_with_googlepay_button.xml │ │ ├── calendar_day.xml │ │ ├── calendar_day_layout.xml │ │ ├── calendar_day_legend.xml │ │ ├── calendar_header.xml │ │ ├── city_cameras_map_fragment.xml │ │ ├── dialog_add_photo.xml │ │ ├── dialog_change_name.xml │ │ ├── dialog_delete_reason.xml │ │ ├── dialog_guest_access.xml │ │ ├── dialog_remove_photo.xml │ │ ├── dialog_service.xml │ │ ├── dialog_share_access.xml │ │ ├── dialog_view_photo.xml │ │ ├── event_log_flats_spinner_drop_down.xml │ │ ├── event_log_type_spinner_drop_down.xml │ │ ├── form_appeal.xml │ │ ├── fragment_access_address.xml │ │ ├── fragment_address.xml │ │ ├── fragment_address_settings.xml │ │ ├── fragment_address_verification.xml │ │ ├── fragment_appeal.xml │ │ ├── fragment_auth.xml │ │ ├── fragment_available_services.xml │ │ ├── fragment_basic_settings.xml │ │ ├── fragment_burger.xml │ │ ├── fragment_call_to_support.xml │ │ ├── fragment_cctv_archive_player.xml │ │ ├── fragment_cctv_archive_tab_calendar.xml │ │ ├── fragment_cctv_detail.xml │ │ ├── fragment_cctv_detail_online.xml │ │ ├── fragment_cctv_exoplayer.xml │ │ ├── fragment_cctv_map.xml │ │ ├── fragment_chat.xml │ │ ├── fragment_city_camera.xml │ │ ├── fragment_code_sms_restore.xml │ │ ├── fragment_courier.xml │ │ ├── fragment_custom_web_bottom.xml │ │ ├── fragment_custom_web_view.xml │ │ ├── fragment_error_bottom_sheet_dialog.xml │ │ ├── fragment_event_log.xml │ │ ├── fragment_event_log_detail.xml │ │ ├── fragment_face_settings.xml │ │ ├── fragment_input_address.xml │ │ ├── fragment_no_network.xml │ │ ├── fragment_notification.xml │ │ ├── fragment_number_reg.xml │ │ ├── fragment_office.xml │ │ ├── fragment_outgoing_call.xml │ │ ├── fragment_pay.xml │ │ ├── fragment_pay_contract.xml │ │ ├── fragment_pay_web_view.xml │ │ ├── fragment_providers.xml │ │ ├── fragment_qr_code.xml │ │ ├── fragment_request_record.xml │ │ ├── fragment_restore_access.xml │ │ ├── fragment_settings.xml │ │ ├── fragment_sms_reg.xml │ │ ├── fragment_web_view_dialog.xml │ │ ├── fragment_work_soon_courier.xml │ │ ├── fragment_work_soon_office.xml │ │ ├── googlepay_button.xml │ │ ├── item_available.xml │ │ ├── item_burger.xml │ │ ├── item_cctv_detail_button.xml │ │ ├── item_cctv_detail_online_player.xml │ │ ├── item_cctv_online_buttons_page.xml │ │ ├── item_cctv_time_fragment_button.xml │ │ ├── item_child_recycler.xml │ │ ├── item_city_camera_event.xml │ │ ├── item_contact_access_address.xml │ │ ├── item_contract_pay.xml │ │ ├── item_event_log.xml │ │ ├── item_event_log_child.xml │ │ ├── item_event_log_detail.xml │ │ ├── item_event_log_flats_spinner.xml │ │ ├── item_event_log_parent.xml │ │ ├── item_event_log_type_spinner.xml │ │ ├── item_face.xml │ │ ├── item_guest_access.xml │ │ ├── item_house.xml │ │ ├── item_incoming_call_button.xml │ │ ├── item_issue.xml │ │ ├── item_onboarding.xml │ │ ├── item_parent_recycler.xml │ │ ├── item_pay_address.xml │ │ ├── item_provider.xml │ │ ├── item_reason.xml │ │ ├── item_recovery.xml │ │ ├── item_services.xml │ │ ├── item_settings_address.xml │ │ ├── item_video_camera.xml │ │ ├── item_widget.xml │ │ ├── item_yard.xml │ │ ├── notification_badge.xml │ │ └── pin_entry.xml │ │ ├── menu │ │ └── bottom_nav_menu.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── navigation │ │ ├── address.xml │ │ ├── chat.xml │ │ ├── notification.xml │ │ ├── pay.xml │ │ ├── registration_graph.xml │ │ ├── root.xml │ │ └── settings.xml │ │ ├── raw │ │ ├── linphonerc_default │ │ └── linphonerc_factory │ │ ├── values-en │ │ └── strings.xml │ │ ├── values-hy │ │ └── strings.xml │ │ ├── values-kk │ │ └── strings.xml │ │ ├── values-night │ │ └── colors.xml │ │ ├── values-uz │ │ └── strings.xml │ │ ├── values-v14 │ │ └── dimens.xml │ │ ├── values-v31 │ │ └── styles.xml │ │ ├── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ ├── app_widget_info.xml │ │ ├── locales_config.xml │ │ └── network_security_config.xml │ ├── rustore │ ├── AndroidManifest.xml │ └── java │ │ └── com │ │ └── sesameware │ │ └── smartyard_oem │ │ ├── Market.kt │ │ └── MessagingService.kt │ ├── teledom │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── sesameware │ │ │ └── smartyard_oem │ │ │ └── ui │ │ │ ├── main │ │ │ ├── address │ │ │ │ ├── AddressFragment.kt │ │ │ │ ├── AddressViewModel.kt │ │ │ │ ├── availableServices │ │ │ │ │ ├── AvailableServicesFragment.kt │ │ │ │ │ └── AvailableServicesViewModel.kt │ │ │ │ ├── cctv_video │ │ │ │ │ └── CCTVArchivePlayerFragment.kt │ │ │ │ └── noNetwork │ │ │ │ │ ├── NoNetworkFragment.kt │ │ │ │ │ └── NoNetworkViewModel.kt │ │ │ └── settings │ │ │ │ ├── SettingsAddressDelegate.kt │ │ │ │ ├── SettingsFragment.kt │ │ │ │ └── addressSettings │ │ │ │ └── AddressSettingsFragment.kt │ │ │ ├── onboarding │ │ │ └── OnboardingActivity.kt │ │ │ └── reg │ │ │ ├── appeal │ │ │ └── AppealFragment.kt │ │ │ └── sms │ │ │ └── SmsRegViewModel.kt │ ├── ok-tracer.gradle │ └── res │ │ ├── drawable-hdpi │ │ └── ic_logo.png │ │ ├── drawable-mdpi │ │ └── ic_logo.png │ │ ├── drawable-xhdpi │ │ └── ic_logo.png │ │ ├── drawable-xxhdpi │ │ └── ic_logo.png │ │ ├── drawable-xxxhdpi │ │ └── ic_logo.png │ │ └── drawable │ │ └── ic_logo_splash.xml │ └── test │ └── java │ └── com │ └── sesameware │ └── smartyard_oem │ └── ExampleUnitTest.kt ├── settings.gradle └── settings.gradle.kts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/README.md -------------------------------------------------------------------------------- /changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/changes.md -------------------------------------------------------------------------------- /data/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*.{kt,kts}] 4 | disabled_rules=import-ordering -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /data/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/build.gradle -------------------------------------------------------------------------------- /data/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/proguard-rules.pro -------------------------------------------------------------------------------- /data/src/androidTest/java/com/sesameware/data/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/androidTest/java/com/sesameware/data/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /data/src/google/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/google/AndroidManifest.xml -------------------------------------------------------------------------------- /data/src/google/java/com/sesameware/smartyard_oem/Crashlytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/google/java/com/sesameware/smartyard_oem/Crashlytics.kt -------------------------------------------------------------------------------- /data/src/huawei/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/huawei/AndroidManifest.xml -------------------------------------------------------------------------------- /data/src/huawei/java/com/sesameware/smartyard_oem/Crashlytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/huawei/java/com/sesameware/smartyard_oem/Crashlytics.kt -------------------------------------------------------------------------------- /data/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /data/src/main/java/com/sesameware/data/DataModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/java/com/sesameware/data/DataModule.kt -------------------------------------------------------------------------------- /data/src/main/java/com/sesameware/data/interceptors/CommonInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/java/com/sesameware/data/interceptors/CommonInterceptor.kt -------------------------------------------------------------------------------- /data/src/main/java/com/sesameware/data/interceptors/SessionInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/java/com/sesameware/data/interceptors/SessionInterceptor.kt -------------------------------------------------------------------------------- /data/src/main/java/com/sesameware/data/local/dao/AddressDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/java/com/sesameware/data/local/dao/AddressDao.kt -------------------------------------------------------------------------------- /data/src/main/java/com/sesameware/data/local/db/ItemsDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/java/com/sesameware/data/local/db/ItemsDatabase.kt -------------------------------------------------------------------------------- /data/src/main/java/com/sesameware/data/local/entity/AddressDoorEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/java/com/sesameware/data/local/entity/AddressDoorEntity.kt -------------------------------------------------------------------------------- /data/src/main/java/com/sesameware/data/local/entity/Converters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/java/com/sesameware/data/local/entity/Converters.kt -------------------------------------------------------------------------------- /data/src/main/java/com/sesameware/data/local/mapper/Mapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/java/com/sesameware/data/local/mapper/Mapper.kt -------------------------------------------------------------------------------- /data/src/main/java/com/sesameware/data/prefs/SharedPreferenceStorage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/java/com/sesameware/data/prefs/SharedPreferenceStorage.kt -------------------------------------------------------------------------------- /data/src/main/java/com/sesameware/data/prefs/common.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/java/com/sesameware/data/prefs/common.kt -------------------------------------------------------------------------------- /data/src/main/java/com/sesameware/data/remote/TeledomApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/java/com/sesameware/data/remote/TeledomApi.kt -------------------------------------------------------------------------------- /data/src/main/java/com/sesameware/data/repository/AddressRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/java/com/sesameware/data/repository/AddressRepositoryImpl.kt -------------------------------------------------------------------------------- /data/src/main/java/com/sesameware/data/repository/AuthRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/java/com/sesameware/data/repository/AuthRepositoryImpl.kt -------------------------------------------------------------------------------- /data/src/main/java/com/sesameware/data/repository/BaseRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/java/com/sesameware/data/repository/BaseRepository.kt -------------------------------------------------------------------------------- /data/src/main/java/com/sesameware/data/repository/CCTVRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/java/com/sesameware/data/repository/CCTVRepositoryImpl.kt -------------------------------------------------------------------------------- /data/src/main/java/com/sesameware/data/repository/DatabaseRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/java/com/sesameware/data/repository/DatabaseRepositoryImpl.kt -------------------------------------------------------------------------------- /data/src/main/java/com/sesameware/data/repository/ExtRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/java/com/sesameware/data/repository/ExtRepositoryImpl.kt -------------------------------------------------------------------------------- /data/src/main/java/com/sesameware/data/repository/FRSRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/java/com/sesameware/data/repository/FRSRepositoryImpl.kt -------------------------------------------------------------------------------- /data/src/main/java/com/sesameware/data/repository/GeoRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/java/com/sesameware/data/repository/GeoRepositoryImpl.kt -------------------------------------------------------------------------------- /data/src/main/java/com/sesameware/data/repository/InboxRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/java/com/sesameware/data/repository/InboxRepositoryImpl.kt -------------------------------------------------------------------------------- /data/src/main/java/com/sesameware/data/repository/IssueRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/java/com/sesameware/data/repository/IssueRepositoryImpl.kt -------------------------------------------------------------------------------- /data/src/main/java/com/sesameware/data/repository/PayRepositroyImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/java/com/sesameware/data/repository/PayRepositroyImpl.kt -------------------------------------------------------------------------------- /data/src/main/java/com/sesameware/data/repository/SipRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/java/com/sesameware/data/repository/SipRepositoryImpl.kt -------------------------------------------------------------------------------- /data/src/main/res/values/feature_flags.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/res/values/feature_flags.xml -------------------------------------------------------------------------------- /data/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /data/src/rustore/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/rustore/AndroidManifest.xml -------------------------------------------------------------------------------- /data/src/rustore/java/com/sesameware/smartyard_oem/Crashlytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/rustore/java/com/sesameware/smartyard_oem/Crashlytics.kt -------------------------------------------------------------------------------- /data/src/test/java/com/sesameware/data/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/data/src/test/java/com/sesameware/data/ExampleUnitTest.kt -------------------------------------------------------------------------------- /domain/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*.{kt,kts}] 4 | disabled_rules=import-ordering -------------------------------------------------------------------------------- /domain/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /domain/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/build.gradle -------------------------------------------------------------------------------- /domain/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /domain/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/proguard-rules.pro -------------------------------------------------------------------------------- /domain/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/DomainModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/DomainModule.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/interactors/AddressInteractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/interactors/AddressInteractor.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/interactors/AuthInteractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/interactors/AuthInteractor.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/interactors/CCTVInteractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/interactors/CCTVInteractor.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/interactors/DatabaseInteractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/interactors/DatabaseInteractor.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/interactors/ExtInteractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/interactors/ExtInteractor.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/interactors/FRSInteractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/interactors/FRSInteractor.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/interactors/GeoInteractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/interactors/GeoInteractor.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/interactors/InboxInteractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/interactors/InboxInteractor.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/interactors/IssueInteractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/interactors/IssueInteractor.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/interactors/PayInteractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/interactors/PayInteractor.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/interactors/SipInteractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/interactors/SipInteractor.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/interfaces/AddressRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/interfaces/AddressRepository.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/interfaces/AuthRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/interfaces/AuthRepository.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/interfaces/CCTVRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/interfaces/CCTVRepository.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/interfaces/DatabaseRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/interfaces/DatabaseRepository.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/interfaces/ExtRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/interfaces/ExtRepository.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/interfaces/FRSRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/interfaces/FRSRepository.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/interfaces/GeoRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/interfaces/GeoRepository.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/interfaces/InboxRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/interfaces/InboxRepository.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/interfaces/IssueRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/interfaces/IssueRepository.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/interfaces/PayRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/interfaces/PayRepository.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/interfaces/SipRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/interfaces/SipRepository.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/AddressItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/AddressItem.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/PushCallData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/PushCallData.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/ResultWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/ResultWrapper.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/Services.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/Services.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/common.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/common.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/AccessRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/AccessRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/ActionIssueRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/ActionIssueRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/AddMyPhoneRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/AddMyPhoneRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/AppVersionRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/AppVersionRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/CCTVAllRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/CCTVAllRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/CCTVRangesRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/CCTVRangesRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/CCTVRecDownloadRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/CCTVRecDownloadRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/CCTVRecPrepareRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/CCTVRecPrepareRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/CCTVYoutubeRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/CCTVYoutubeRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/CommentRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/CommentRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/ConfirmCodeRecoveryRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/ConfirmCodeRecoveryRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/ConfirmCodeRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/ConfirmCodeRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/CreateIssuesRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/CreateIssuesRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/DeliveryChangeRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/DeliveryChangeRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/DisLikeRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/DisLikeRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/ExtRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/ExtRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/GetAddressRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/GetAddressRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/GetCoderRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/GetCoderRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/GetHousesRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/GetHousesRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/GetIntercomRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/GetIntercomRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/GetServicesRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/GetServicesRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/GetStreetsRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/GetStreetsRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/LikeRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/LikeRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/ListFacesRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/ListFacesRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/OpenDoorRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/OpenDoorRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/PayPrepareRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/PayPrepareRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/PayRegisterRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/PayRegisterRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/PlogDaysRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/PlogDaysRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/PlogRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/PlogRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/PutIntercomRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/PutIntercomRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/QRRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/QRRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/RecoveryOptionsRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/RecoveryOptionsRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/RegisterPushTokenRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/RegisterPushTokenRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/RequestCodeRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/RequestCodeRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/ResendRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/ResendRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/ResetCodeRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/ResetCodeRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/SendNameRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/SendNameRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/SentCodeRecoveryRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/SentCodeRecoveryRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/request/UserNotificationRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/request/UserNotificationRequest.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/AccessResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/AccessResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/ActionIssueResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/ActionIssueResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/AddMyPhoneResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/AddMyPhoneResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/ApiResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/ApiResult.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/AppVersionResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/AppVersionResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/CCTVRecDownloadResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/CCTVRecDownloadResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/CCTVRecPrepareResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/CCTVRecPrepareResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/CamMapResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/CamMapResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/CommentResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/CommentResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/ConfirmCodeRecoveryResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/ConfirmCodeRecoveryResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/ConfirmCodeResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/ConfirmCodeResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/CreateIssuesResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/CreateIssuesResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/DeliveryChangeResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/DeliveryChangeResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/DisLikeResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/DisLikeResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/ExtListResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/ExtListResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/ExtResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/ExtResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/GetAddressListResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/GetAddressListResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/GetAddressResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/GetAddressResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/GetAllLocationsResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/GetAllLocationsResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/GetCCTVResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/GetCCTVResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/GetCoderResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/GetCoderResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/GetHousesResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/GetHousesResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/GetServicesResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/GetServicesResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/GetSettingsListResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/GetSettingsListResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/GetStreetsResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/GetStreetsResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/InboxResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/InboxResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/IntercomResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/IntercomResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/LikeResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/LikeResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/ListConnectIssueResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/ListConnectIssueResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/ListFacesResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/ListFacesResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/OfficesResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/OfficesResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/OpenDoorResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/OpenDoorResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/PayPrepareResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/PayPrepareResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/PayRegisterResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/PayRegisterResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/PaymentsListResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/PaymentsListResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/PlogDaysResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/PlogDaysResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/PlogResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/PlogResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/ProviderConfigResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/ProviderConfigResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/ProvidersResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/ProvidersResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/QRResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/QRResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/RangeObject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/RangeObject.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/RecoveryOptionsResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/RecoveryOptionsResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/RegisterPushTokenResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/RegisterPushTokenResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/RequestCodeResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/RequestCodeResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/ResendResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/ResendResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/ResetCodeResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/ResetCodeResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/RoommateResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/RoommateResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/SendNameResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/SendNameResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/SentCodeRecoveryResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/SentCodeRecoveryResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/SipHelpMeResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/SipHelpMeResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/UnreadedResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/UnreadedResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/model/response/UserNotificationResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/model/response/UserNotificationResponse.kt -------------------------------------------------------------------------------- /domain/src/main/java/com/sesameware/domain/utils/common.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/java/com/sesameware/domain/utils/common.kt -------------------------------------------------------------------------------- /domain/src/main/res/values-en/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/res/values-en/strings.xml -------------------------------------------------------------------------------- /domain/src/main/res/values-hy/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/res/values-hy/strings.xml -------------------------------------------------------------------------------- /domain/src/main/res/values-kk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/res/values-kk/strings.xml -------------------------------------------------------------------------------- /domain/src/main/res/values-uz/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/res/values-uz/strings.xml -------------------------------------------------------------------------------- /domain/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/domain/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/gradlew.bat -------------------------------------------------------------------------------- /ktlint.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/ktlint.gradle -------------------------------------------------------------------------------- /lib/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/lib/build.gradle -------------------------------------------------------------------------------- /lib/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/lib/proguard-rules.pro -------------------------------------------------------------------------------- /lib/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/lib/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /lib/src/main/java/com/sesameware/lib/ArchiveIntervalsBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/lib/src/main/java/com/sesameware/lib/ArchiveIntervalsBar.kt -------------------------------------------------------------------------------- /lib/src/main/java/com/sesameware/lib/BubbleView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/lib/src/main/java/com/sesameware/lib/BubbleView.kt -------------------------------------------------------------------------------- /lib/src/main/java/com/sesameware/lib/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/lib/src/main/java/com/sesameware/lib/Extensions.kt -------------------------------------------------------------------------------- /lib/src/main/java/com/sesameware/lib/MaskedEditText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/lib/src/main/java/com/sesameware/lib/MaskedEditText.kt -------------------------------------------------------------------------------- /lib/src/main/java/com/sesameware/lib/OverlayView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/lib/src/main/java/com/sesameware/lib/OverlayView.kt -------------------------------------------------------------------------------- /lib/src/main/java/com/sesameware/lib/Range.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/lib/src/main/java/com/sesameware/lib/Range.kt -------------------------------------------------------------------------------- /lib/src/main/java/com/sesameware/lib/RangeSlider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/lib/src/main/java/com/sesameware/lib/RangeSlider.kt -------------------------------------------------------------------------------- /lib/src/main/java/com/sesameware/lib/RangeSliderView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/lib/src/main/java/com/sesameware/lib/RangeSliderView.kt -------------------------------------------------------------------------------- /lib/src/main/java/com/sesameware/lib/RawText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/lib/src/main/java/com/sesameware/lib/RawText.kt -------------------------------------------------------------------------------- /lib/src/main/java/com/sesameware/lib/ThumbView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/lib/src/main/java/com/sesameware/lib/ThumbView.kt -------------------------------------------------------------------------------- /lib/src/main/java/com/sesameware/lib/data.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/lib/src/main/java/com/sesameware/lib/data.kt -------------------------------------------------------------------------------- /lib/src/main/res/drawable/background_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/lib/src/main/res/drawable/background_round.xml -------------------------------------------------------------------------------- /lib/src/main/res/drawable/background_stroke.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/lib/src/main/res/drawable/background_stroke.xml -------------------------------------------------------------------------------- /lib/src/main/res/drawable/bg_bubble.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/lib/src/main/res/drawable/bg_bubble.xml -------------------------------------------------------------------------------- /lib/src/main/res/layout/bubble_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/lib/src/main/res/layout/bubble_view.xml -------------------------------------------------------------------------------- /lib/src/main/res/layout/range_slider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/lib/src/main/res/layout/range_slider.xml -------------------------------------------------------------------------------- /lib/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/lib/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /lib/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/lib/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /lib/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/lib/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /presentation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/.gitignore -------------------------------------------------------------------------------- /presentation/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/build.gradle -------------------------------------------------------------------------------- /presentation/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/proguard-rules.pro -------------------------------------------------------------------------------- /presentation/src/androidTest/java/com/sesameware/smartyard_oem/AuthScreenTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/androidTest/java/com/sesameware/smartyard_oem/AuthScreenTest.kt -------------------------------------------------------------------------------- /presentation/src/androidTest/java/com/sesameware/smartyard_oem/screen/AddressScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/androidTest/java/com/sesameware/smartyard_oem/screen/AddressScreen.kt -------------------------------------------------------------------------------- /presentation/src/androidTest/java/com/sesameware/smartyard_oem/screen/AppealScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/androidTest/java/com/sesameware/smartyard_oem/screen/AppealScreen.kt -------------------------------------------------------------------------------- /presentation/src/androidTest/java/com/sesameware/smartyard_oem/screen/MainScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/androidTest/java/com/sesameware/smartyard_oem/screen/MainScreen.kt -------------------------------------------------------------------------------- /presentation/src/androidTest/java/com/sesameware/smartyard_oem/screen/NumberRegScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/androidTest/java/com/sesameware/smartyard_oem/screen/NumberRegScreen.kt -------------------------------------------------------------------------------- /presentation/src/androidTest/java/com/sesameware/smartyard_oem/screen/SettingsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/androidTest/java/com/sesameware/smartyard_oem/screen/SettingsScreen.kt -------------------------------------------------------------------------------- /presentation/src/androidTest/java/com/sesameware/smartyard_oem/screen/SmsRegScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/androidTest/java/com/sesameware/smartyard_oem/screen/SmsRegScreen.kt -------------------------------------------------------------------------------- /presentation/src/google/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/google/AndroidManifest.xml -------------------------------------------------------------------------------- /presentation/src/google/java/com/sesameware/smartyard_oem/Market.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/google/java/com/sesameware/smartyard_oem/Market.kt -------------------------------------------------------------------------------- /presentation/src/google/java/com/sesameware/smartyard_oem/MessagingService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/google/java/com/sesameware/smartyard_oem/MessagingService.kt -------------------------------------------------------------------------------- /presentation/src/huawei/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/huawei/AndroidManifest.xml -------------------------------------------------------------------------------- /presentation/src/huawei/java/com/sesameware/smartyard_oem/Market.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/huawei/java/com/sesameware/smartyard_oem/Market.kt -------------------------------------------------------------------------------- /presentation/src/huawei/java/com/sesameware/smartyard_oem/MessagingService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/huawei/java/com/sesameware/smartyard_oem/MessagingService.kt -------------------------------------------------------------------------------- /presentation/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /presentation/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*.{kt,kts}] 4 | disabled_rules=import-ordering -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/App.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/CommonActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/CommonActivity.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/Event.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/Event.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/Extensions.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/GenericViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/GenericViewModel.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/GlobalDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/GlobalDataSource.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/LinphoneProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/LinphoneProvider.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/LinphoneService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/LinphoneService.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/MapFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/MapFragment.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/di/Modules.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/di/Modules.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/di/PresentationModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/di/PresentationModule.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/DividerItemDecorator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/DividerItemDecorator.java -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/NavigationExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/NavigationExtensions.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/call/IncomingButtonView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/call/IncomingButtonView.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/call/IncomingCallActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/call/IncomingCallActivity.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/common.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/common.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/common/AppealForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/common/AppealForm.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/common/AppealFormViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/common/AppealFormViewModel.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/launcher/LauncherActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/launcher/LauncherActivity.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/launcher/LauncherViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/launcher/LauncherViewModel.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/BaseIssueViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/BaseIssueViewModel.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/GeometryUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/GeometryUtils.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/MagicShapePath.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/MagicShapePath.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/MainActivity.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/MainActivityViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/MainActivityViewModel.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/burger/BurgerDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/burger/BurgerDelegate.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/burger/BurgerFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/burger/BurgerFragment.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/burger/BurgerModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/burger/BurgerModel.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/burger/BurgerViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/burger/BurgerViewModel.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/chat/ChatFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/chat/ChatFragment.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/chat/ChatViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/chat/ChatViewModel.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/pay/PayAddressDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/pay/PayAddressDelegate.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/pay/PayAddressFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/pay/PayAddressFragment.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/pay/PayAddressModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/main/pay/PayAddressModel.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/map/MapProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/map/MapProvider.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/map/OSMMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/map/OSMMap.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/map/SimpleMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/map/SimpleMap.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/reg/RegistrationActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/reg/RegistrationActivity.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/reg/RegistrationViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/reg/RegistrationViewModel.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/reg/providers/ProviderModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/reg/providers/ProviderModel.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/reg/sms/SmsRegFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/reg/sms/SmsRegFragment.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/reg/tel/NumberRegFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/reg/tel/NumberRegFragment.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/widget/WidgetActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/widget/WidgetActivity.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/widget/WidgetFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/widget/WidgetFactory.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/widget/WidgetProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/widget/WidgetProvider.kt -------------------------------------------------------------------------------- /presentation/src/main/java/com/sesameware/smartyard_oem/ui/widget/WidgetService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/java/com/sesameware/smartyard_oem/ui/widget/WidgetService.java -------------------------------------------------------------------------------- /presentation/src/main/res/color/button_text_flooded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/color/button_text_flooded.xml -------------------------------------------------------------------------------- /presentation/src/main/res/color/button_text_no_flooded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/color/button_text_no_flooded.xml -------------------------------------------------------------------------------- /presentation/src/main/res/color/calendar_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/color/calendar_bg.xml -------------------------------------------------------------------------------- /presentation/src/main/res/color/color_bottom_nav_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/color/color_bottom_nav_item.xml -------------------------------------------------------------------------------- /presentation/src/main/res/color/color_cctv_button_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/color/color_cctv_button_text.xml -------------------------------------------------------------------------------- /presentation/src/main/res/color/textview_colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/color/textview_colors.xml -------------------------------------------------------------------------------- /presentation/src/main/res/color/toggle_color_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/color/toggle_color_text.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable-hdpi/ic_map_oval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable-hdpi/ic_map_oval.png -------------------------------------------------------------------------------- /presentation/src/main/res/drawable-hdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable-hdpi/ic_notification.png -------------------------------------------------------------------------------- /presentation/src/main/res/drawable-hdpi/widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable-hdpi/widget_preview.png -------------------------------------------------------------------------------- /presentation/src/main/res/drawable-mdpi/ic_map_oval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable-mdpi/ic_map_oval.png -------------------------------------------------------------------------------- /presentation/src/main/res/drawable-mdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable-mdpi/ic_notification.png -------------------------------------------------------------------------------- /presentation/src/main/res/drawable-mdpi/widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable-mdpi/widget_preview.png -------------------------------------------------------------------------------- /presentation/src/main/res/drawable-night/background_call.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable-night/background_call.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable-night/background_top_narrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable-night/background_top_narrow.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable-night/background_top_wide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable-night/background_top_wide.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable-xhdpi/googlepay_button_background_image.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable-xhdpi/googlepay_button_background_image.9.png -------------------------------------------------------------------------------- /presentation/src/main/res/drawable-xhdpi/ic_map_oval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable-xhdpi/ic_map_oval.png -------------------------------------------------------------------------------- /presentation/src/main/res/drawable-xhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable-xhdpi/ic_notification.png -------------------------------------------------------------------------------- /presentation/src/main/res/drawable-xhdpi/widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable-xhdpi/widget_preview.png -------------------------------------------------------------------------------- /presentation/src/main/res/drawable-xxhdpi/googlepay_button_background_image.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable-xxhdpi/googlepay_button_background_image.9.png -------------------------------------------------------------------------------- /presentation/src/main/res/drawable-xxhdpi/ic_map_oval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable-xxhdpi/ic_map_oval.png -------------------------------------------------------------------------------- /presentation/src/main/res/drawable-xxhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable-xxhdpi/ic_notification.png -------------------------------------------------------------------------------- /presentation/src/main/res/drawable-xxhdpi/widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable-xxhdpi/widget_preview.png -------------------------------------------------------------------------------- /presentation/src/main/res/drawable-xxxhdpi/googlepay_button_background_image.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable-xxxhdpi/googlepay_button_background_image.9.png -------------------------------------------------------------------------------- /presentation/src/main/res/drawable-xxxhdpi/ic_map_oval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable-xxxhdpi/ic_map_oval.png -------------------------------------------------------------------------------- /presentation/src/main/res/drawable-xxxhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable-xxxhdpi/ic_notification.png -------------------------------------------------------------------------------- /presentation/src/main/res/drawable-xxxhdpi/widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable-xxxhdpi/widget_preview.png -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/address_settings_burger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/address_settings_burger.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/background_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/background_1.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/background_auth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/background_auth.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/background_bottom_nav_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/background_bottom_nav_item.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/background_bottom_sheet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/background_bottom_sheet.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/background_btn_open.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/background_btn_open.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/background_btn_openend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/background_btn_openend.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/background_call.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/background_call.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/background_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/background_card.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/background_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/background_dialog.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/background_dialog_large.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/background_dialog_large.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/background_edit_text_radius.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/background_edit_text_radius.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/background_fullscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/background_fullscreen.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/background_radius.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/background_radius.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/background_radius_event_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/background_radius_event_header.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/background_radius_transparent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/background_radius_transparent.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/background_radius_upper_blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/background_radius_upper_blue.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/background_radius_video_clip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/background_radius_video_clip.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/background_radius_web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/background_radius_web.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/background_radius_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/background_radius_white.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/background_surface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/background_surface.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/background_top_narrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/background_top_narrow.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/background_top_wide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/background_top_wide.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/background_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/background_widget.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/beta.png -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/bg_oval_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/bg_oval_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/bg_oval_no_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/bg_oval_no_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/bg_pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/bg_pin.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/bg_spinner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/bg_spinner.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/border_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/border_red.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/button_bg_flooded_rounded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/button_bg_flooded_rounded.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/button_bg_flooded_rounded_green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/button_bg_flooded_rounded_green.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/button_bg_flooded_rounded_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/button_bg_flooded_rounded_red.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/button_bg_no_flooded_rounded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/button_bg_no_flooded_rounded.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/buy_with_googlepay_button_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/buy_with_googlepay_button_content.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/calendar_selected_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/calendar_selected_bg.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/calendar_today_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/calendar_today_bg.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/call_support_burger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/call_support_burger.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/camera_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/camera_frame.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/cctv_interval_selected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/cctv_interval_selected.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/cctv_interval_selected_fs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/cctv_interval_selected_fs.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/checkbox_check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/checkbox_check.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/checkbox_no_check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/checkbox_no_check.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/checkbox_no_enabled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/checkbox_no_enabled.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/checkbox_round_state_answer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/checkbox_round_state_answer.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/checkbox_round_state_hang.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/checkbox_round_state_hang.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/checkbox_round_state_peek.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/checkbox_round_state_peek.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/checkbox_round_state_speak.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/checkbox_round_state_speak.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/checkbox_round_state_unlock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/checkbox_round_state_unlock.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/checkbox_round_state_unlocked.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/checkbox_round_state_unlocked.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/checkbox_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/checkbox_selector.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/checkbox_state.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/checkbox_state.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/city_camera_burger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/city_camera_burger.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/color_cursor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/color_cursor.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/common_settings_burger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/common_settings_burger.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/dashed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/dashed.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/divider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/divider.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/divider_empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/divider_empty.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/googlepay_button_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/googlepay_button_background.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/googlepay_button_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/googlepay_button_content.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/googlepay_button_no_shadow_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/googlepay_button_no_shadow_background.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/googlepay_button_overlay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/googlepay_button_overlay.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_add_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_add_circle.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_add_face.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_add_face.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_add_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_add_user.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_addd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_addd.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_address_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_address_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_address_no_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_address_no_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_arrow_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_arrow_bottom.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_arrow_left_calendar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_arrow_left_calendar.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_arrow_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_arrow_right.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_arrow_right_calendar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_arrow_right_calendar.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_arrow_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_arrow_top.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_back_arrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_back_arrow.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_back_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_back_black.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_background.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_background_address.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_background_address.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_background_address_map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_background_address_map.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_background_call.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_background_call.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_background_reg_number.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_background_reg_number.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_backward_10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_backward_10.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_backward_15.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_backward_15.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_backward_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_backward_5.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_barrier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_barrier.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_baseline_help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_baseline_help.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_blue_circle_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_blue_circle_4.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_burger_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_burger_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_burger_no_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_burger_no_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_business_woman.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_business_woman.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_call_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_call_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_call_no_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_call_no_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_call_state.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_call_state.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_call_support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_call_support.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_callback_support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_callback_support.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_carpic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_carpic.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_cctv_button_sel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_cctv_button_sel.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_cctv_button_state.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_cctv_button_state.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_cctv_button_unsel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_cctv_button_unsel.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_cctv_enter_fullscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_cctv_enter_fullscreen.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_cctv_exit_fullscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_cctv_exit_fullscreen.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_cctv_minus_15.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_cctv_minus_15.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_cctv_p_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_cctv_p_button.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_cctv_p_button_fs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_cctv_p_button_fs.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_cctv_p_button_pause.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_cctv_p_button_pause.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_cctv_p_button_pause_fs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_cctv_p_button_pause_fs.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_cctv_p_button_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_cctv_p_button_play.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_cctv_p_button_play_fs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_cctv_p_button_play_fs.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_cctv_plus_15.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_cctv_plus_15.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_cctv_thumb_seek.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_cctv_thumb_seek.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_cctv_thumb_trim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_cctv_thumb_trim.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_cctv_to_play_mode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_cctv_to_play_mode.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_cctv_video_fullscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_cctv_video_fullscreen.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_cctv_volume_off_24px.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_cctv_volume_off_24px.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_cctv_volume_on_24px.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_cctv_volume_on_24px.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_chat_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_chat_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_chat_no_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_chat_no_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_close.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_close_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_close_dialog.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_close_support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_close_support.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_courier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_courier.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_courier_qr_code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_courier_qr_code.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_courier_reuest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_courier_reuest.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_courier_uses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_courier_uses.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_delete.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_dialog_bottom_sheet_rectangle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_dialog_bottom_sheet_rectangle.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_el_app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_el_app.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_el_calendar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_el_calendar.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_el_call_doorphone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_el_call_doorphone.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_el_code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_el_code.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_el_face.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_el_face.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_el_gates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_el_gates.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_el_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_el_info.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_el_key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_el_key.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_el_scroll_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_el_scroll_up.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_el_vehicle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_el_vehicle.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_eld_answered_call.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_eld_answered_call.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_eld_foe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_eld_foe.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_eld_friend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_eld_friend.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_eld_unanswered_call.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_eld_unanswered_call.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_ellipse_badge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_ellipse_badge.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_error_pay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_error_pay.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_event_log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_event_log.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_expand.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_expand.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_eye_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_eye_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_eye_no_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_eye_no_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_eye_state.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_eye_state.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_flash_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_flash_off.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_flash_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_flash_on.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_forward_10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_forward_10.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_forward_15.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_forward_15.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_forward_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_forward_5.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_fullscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_fullscreen.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_gates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_gates.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_key_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_key_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_key_no_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_key_no_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_key_state.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_key_state.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_map_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_map_camera.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_map_city_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_map_city_camera.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_map_icon_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_map_icon_bg.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_marker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_marker.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_minimize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_minimize.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_monitor_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_monitor_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_monitor_no_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_monitor_no_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_monitor_state.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_monitor_state.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_nav_address.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_nav_address.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_nav_burger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_nav_burger.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_nav_chat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_nav_chat.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_nav_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_nav_notification.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_nav_pay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_nav_pay.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_nav_setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_nav_setting.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_no_photography_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_no_photography_24.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_notification_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_notification_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_notification_no_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_notification_no_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_notifications_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_notifications_black_24dp.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_onboarding_cam.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_onboarding_cam.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_onboarding_donation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_onboarding_donation.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_onboarding_intercom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_onboarding_intercom.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_open.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_open.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_pay_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_pay_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_pay_google.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_pay_google.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_pay_no_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_pay_no_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_pencil_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_pencil_edit.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_placeholder_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_placeholder_image.png -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_placeholder_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_placeholder_video.png -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_plus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_plus.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_porch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_porch.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_qr_code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_qr_code.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_refresh.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_remove_face.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_remove_face.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_ripple_for_round_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_ripple_for_round_button.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_round.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_round_answer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_round_answer.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_round_answer_disabled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_round_answer_disabled.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_round_hang.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_round_hang.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_round_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_round_lock.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_round_peek.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_round_peek.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_round_peek_disabled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_round_peek_disabled.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_round_unlock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_round_unlock.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_round_unlocked.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_round_unlocked.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_setting.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_setting_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_setting_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_setting_no_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_setting_no_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_settings_call.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_settings_call.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_settings_eye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_settings_eye.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_settings_key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_settings_key.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_settings_monitor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_settings_monitor.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_settings_wifi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_settings_wifi.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_speak_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_speak_off.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_speak_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_speak_on.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_success.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_success.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_time_fragment_button_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_time_fragment_button_bg.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_time_fragment_button_bg_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_time_fragment_button_bg_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_time_fragment_button_bg_inactive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_time_fragment_button_bg_inactive.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_trash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_trash.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_userpic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_userpic.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_video_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_video_camera.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_visibility.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_visibility.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_visibility_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_visibility_off.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_wicket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_wicket.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_wifi_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_wifi_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_wifi_no_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_wifi_no_active.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/ic_wifi_state.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/ic_wifi_state.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/launch_screen.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/layout_rounded_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/layout_rounded_bg.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/modal_window_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/modal_window_background.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/rounded_bottom_sheet_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/rounded_bottom_sheet_dialog.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/rounded_corner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/rounded_corner.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/selector_fullscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/selector_fullscreen.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/selector_mute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/selector_mute.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/switch_button_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/switch_button_selector.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/switch_flash_button_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/switch_flash_button_selector.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/switchbutton_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/switchbutton_off.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/switchbutton_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/switchbutton_on.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/togglebutton_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/togglebutton_off.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/togglebutton_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/togglebutton_on.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/togglebutton_selector_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/togglebutton_selector_round.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/tooglebutton_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/tooglebutton_selector.xml -------------------------------------------------------------------------------- /presentation/src/main/res/drawable/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/drawable/weather.png -------------------------------------------------------------------------------- /presentation/src/main/res/font/source_sans_family.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/font/source_sans_family.xml -------------------------------------------------------------------------------- /presentation/src/main/res/font/source_sans_pro_black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/font/source_sans_pro_black.ttf -------------------------------------------------------------------------------- /presentation/src/main/res/font/source_sans_pro_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/font/source_sans_pro_bold.ttf -------------------------------------------------------------------------------- /presentation/src/main/res/font/source_sans_pro_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/font/source_sans_pro_italic.ttf -------------------------------------------------------------------------------- /presentation/src/main/res/font/source_sans_pro_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/font/source_sans_pro_light.ttf -------------------------------------------------------------------------------- /presentation/src/main/res/font/source_sans_pro_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/font/source_sans_pro_regular.ttf -------------------------------------------------------------------------------- /presentation/src/main/res/font/source_sans_pro_semi_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/font/source_sans_pro_semi_bold.ttf -------------------------------------------------------------------------------- /presentation/src/main/res/layout-land/activity_incoming_call.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout-land/activity_incoming_call.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/activity_incoming_call.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/activity_incoming_call.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/activity_lin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/activity_lin.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/activity_onboarding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/activity_onboarding.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/activity_registration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/activity_registration.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/app_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/app_widget.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/bottom_dialog_sheet_pay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/bottom_dialog_sheet_pay.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/bottom_dialog_sheet_success.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/bottom_dialog_sheet_success.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/bottom_sheet_fragment_select_theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/bottom_sheet_fragment_select_theme.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/buy_with_googlepay_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/buy_with_googlepay_button.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/calendar_day.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/calendar_day.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/calendar_day_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/calendar_day_layout.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/calendar_day_legend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/calendar_day_legend.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/calendar_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/calendar_header.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/city_cameras_map_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/city_cameras_map_fragment.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/dialog_add_photo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/dialog_add_photo.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/dialog_change_name.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/dialog_change_name.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/dialog_delete_reason.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/dialog_delete_reason.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/dialog_guest_access.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/dialog_guest_access.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/dialog_remove_photo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/dialog_remove_photo.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/dialog_service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/dialog_service.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/dialog_share_access.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/dialog_share_access.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/dialog_view_photo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/dialog_view_photo.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/event_log_flats_spinner_drop_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/event_log_flats_spinner_drop_down.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/event_log_type_spinner_drop_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/event_log_type_spinner_drop_down.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/form_appeal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/form_appeal.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_access_address.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_access_address.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_address.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_address.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_address_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_address_settings.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_address_verification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_address_verification.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_appeal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_appeal.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_auth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_auth.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_available_services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_available_services.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_basic_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_basic_settings.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_burger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_burger.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_call_to_support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_call_to_support.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_cctv_archive_player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_cctv_archive_player.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_cctv_archive_tab_calendar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_cctv_archive_tab_calendar.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_cctv_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_cctv_detail.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_cctv_detail_online.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_cctv_detail_online.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_cctv_exoplayer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_cctv_exoplayer.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_cctv_map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_cctv_map.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_chat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_chat.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_city_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_city_camera.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_code_sms_restore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_code_sms_restore.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_courier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_courier.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_custom_web_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_custom_web_bottom.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_custom_web_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_custom_web_view.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_error_bottom_sheet_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_error_bottom_sheet_dialog.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_event_log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_event_log.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_event_log_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_event_log_detail.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_face_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_face_settings.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_input_address.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_input_address.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_no_network.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_no_network.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_notification.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_number_reg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_number_reg.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_office.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_office.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_outgoing_call.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_outgoing_call.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_pay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_pay.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_pay_contract.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_pay_contract.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_pay_web_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_pay_web_view.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_providers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_providers.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_qr_code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_qr_code.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_request_record.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_request_record.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_restore_access.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_restore_access.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_settings.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_sms_reg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_sms_reg.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_web_view_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_web_view_dialog.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_work_soon_courier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_work_soon_courier.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/fragment_work_soon_office.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/fragment_work_soon_office.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/googlepay_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/googlepay_button.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_available.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_available.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_burger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_burger.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_cctv_detail_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_cctv_detail_button.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_cctv_detail_online_player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_cctv_detail_online_player.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_cctv_online_buttons_page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_cctv_online_buttons_page.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_cctv_time_fragment_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_cctv_time_fragment_button.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_child_recycler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_child_recycler.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_city_camera_event.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_city_camera_event.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_contact_access_address.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_contact_access_address.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_contract_pay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_contract_pay.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_event_log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_event_log.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_event_log_child.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_event_log_child.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_event_log_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_event_log_detail.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_event_log_flats_spinner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_event_log_flats_spinner.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_event_log_parent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_event_log_parent.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_event_log_type_spinner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_event_log_type_spinner.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_face.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_face.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_guest_access.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_guest_access.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_house.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_house.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_incoming_call_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_incoming_call_button.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_issue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_issue.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_onboarding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_onboarding.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_parent_recycler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_parent_recycler.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_pay_address.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_pay_address.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_provider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_provider.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_reason.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_reason.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_recovery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_recovery.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_services.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_settings_address.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_settings_address.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_video_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_video_camera.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_widget.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/item_yard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/item_yard.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/notification_badge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/notification_badge.xml -------------------------------------------------------------------------------- /presentation/src/main/res/layout/pin_entry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/layout/pin_entry.xml -------------------------------------------------------------------------------- /presentation/src/main/res/menu/bottom_nav_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/menu/bottom_nav_menu.xml -------------------------------------------------------------------------------- /presentation/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /presentation/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /presentation/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /presentation/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /presentation/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /presentation/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /presentation/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /presentation/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /presentation/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /presentation/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /presentation/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /presentation/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /presentation/src/main/res/navigation/address.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/navigation/address.xml -------------------------------------------------------------------------------- /presentation/src/main/res/navigation/chat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/navigation/chat.xml -------------------------------------------------------------------------------- /presentation/src/main/res/navigation/notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/navigation/notification.xml -------------------------------------------------------------------------------- /presentation/src/main/res/navigation/pay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/navigation/pay.xml -------------------------------------------------------------------------------- /presentation/src/main/res/navigation/registration_graph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/navigation/registration_graph.xml -------------------------------------------------------------------------------- /presentation/src/main/res/navigation/root.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/navigation/root.xml -------------------------------------------------------------------------------- /presentation/src/main/res/navigation/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/navigation/settings.xml -------------------------------------------------------------------------------- /presentation/src/main/res/raw/linphonerc_default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/raw/linphonerc_default -------------------------------------------------------------------------------- /presentation/src/main/res/raw/linphonerc_factory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/raw/linphonerc_factory -------------------------------------------------------------------------------- /presentation/src/main/res/values-en/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/values-en/strings.xml -------------------------------------------------------------------------------- /presentation/src/main/res/values-hy/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/values-hy/strings.xml -------------------------------------------------------------------------------- /presentation/src/main/res/values-kk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/values-kk/strings.xml -------------------------------------------------------------------------------- /presentation/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /presentation/src/main/res/values-uz/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/values-uz/strings.xml -------------------------------------------------------------------------------- /presentation/src/main/res/values-v14/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/values-v14/dimens.xml -------------------------------------------------------------------------------- /presentation/src/main/res/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/values-v31/styles.xml -------------------------------------------------------------------------------- /presentation/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /presentation/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /presentation/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /presentation/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /presentation/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /presentation/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /presentation/src/main/res/xml/app_widget_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/xml/app_widget_info.xml -------------------------------------------------------------------------------- /presentation/src/main/res/xml/locales_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/xml/locales_config.xml -------------------------------------------------------------------------------- /presentation/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /presentation/src/rustore/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/rustore/AndroidManifest.xml -------------------------------------------------------------------------------- /presentation/src/rustore/java/com/sesameware/smartyard_oem/Market.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/rustore/java/com/sesameware/smartyard_oem/Market.kt -------------------------------------------------------------------------------- /presentation/src/rustore/java/com/sesameware/smartyard_oem/MessagingService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/rustore/java/com/sesameware/smartyard_oem/MessagingService.kt -------------------------------------------------------------------------------- /presentation/src/teledom/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/teledom/AndroidManifest.xml -------------------------------------------------------------------------------- /presentation/src/teledom/ok-tracer.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/teledom/ok-tracer.gradle -------------------------------------------------------------------------------- /presentation/src/teledom/res/drawable-hdpi/ic_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/teledom/res/drawable-hdpi/ic_logo.png -------------------------------------------------------------------------------- /presentation/src/teledom/res/drawable-mdpi/ic_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/teledom/res/drawable-mdpi/ic_logo.png -------------------------------------------------------------------------------- /presentation/src/teledom/res/drawable-xhdpi/ic_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/teledom/res/drawable-xhdpi/ic_logo.png -------------------------------------------------------------------------------- /presentation/src/teledom/res/drawable-xxhdpi/ic_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/teledom/res/drawable-xxhdpi/ic_logo.png -------------------------------------------------------------------------------- /presentation/src/teledom/res/drawable-xxxhdpi/ic_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/teledom/res/drawable-xxxhdpi/ic_logo.png -------------------------------------------------------------------------------- /presentation/src/teledom/res/drawable/ic_logo_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/teledom/res/drawable/ic_logo_splash.xml -------------------------------------------------------------------------------- /presentation/src/test/java/com/sesameware/smartyard_oem/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/presentation/src/test/java/com/sesameware/smartyard_oem/ExampleUnitTest.kt -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/settings.gradle -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosteleset/SmartYard-Android/HEAD/settings.gradle.kts --------------------------------------------------------------------------------