├── .gitlab-ci.yml ├── LICENSE.md ├── README.md └── dashlane-project ├── Dashlane-wear └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── dashlane │ │ └── wear │ │ ├── DashlaneWearApplication.kt │ │ ├── MainActivity.kt │ │ ├── TypeSupportUtil.kt │ │ ├── credentialmanager │ │ ├── WearBiometricAuthProvider.kt │ │ ├── WearCredentialManagerIntent.kt │ │ ├── WearDataSaver.kt │ │ └── WearDataSync.kt │ │ ├── hilt │ │ ├── CredentialManagerModule.kt │ │ ├── WearApplicationContextModule.kt │ │ ├── WearAuthenticationModule.kt │ │ ├── WearCrashReporterModule.kt │ │ ├── WearCryptographyModule.kt │ │ ├── WearDataStorageModule.kt │ │ ├── WearDebugModule.kt │ │ ├── WearGsonModule.kt │ │ ├── WearHttpAppModule.kt │ │ ├── WearLockModule.kt │ │ ├── WearNavigationModule.kt │ │ ├── WearSessionModule.kt │ │ ├── WearSharingModule.kt │ │ ├── WearSingletonAggregateModule.kt │ │ ├── WearStubModule.kt │ │ ├── WearSyncModule.kt │ │ ├── WearThumbnailsModule.kt │ │ ├── WearUserModule.kt │ │ └── WearableNodeClientModule.kt │ │ ├── lock │ │ ├── WearLockNavigationHelper.kt │ │ └── WearLockTypeManager.kt │ │ ├── settings │ │ ├── WearSettingsNavigation.kt │ │ ├── WearSettingsScreen.kt │ │ ├── WearSettingsViewModel.kt │ │ └── logout │ │ │ ├── WearConfirmLogoutScreen.kt │ │ │ └── WearLogoutViewModel.kt │ │ └── vault │ │ ├── WearVaultItem.kt │ │ ├── WearVaultNavigation.kt │ │ ├── details │ │ ├── WearItemDetails.kt │ │ ├── WearItemDetailsScreen.kt │ │ └── WearItemDetailsViewModel.kt │ │ └── list │ │ ├── WearThumbnailDomainIcon.kt │ │ ├── WearVaultItem.kt │ │ ├── WearVaultListScreen.kt │ │ └── WearVaultListViewModel.kt │ └── res │ ├── drawable │ ├── dashlane_logo.xml │ ├── ic_launcher_wear_foreground.xml │ └── splashscreen_icon.xml │ ├── mipmap-anydpi │ └── ic_launcher_wear.xml │ └── values │ ├── app_capabilities.xml │ ├── item_details_strings.xml │ ├── settings_strings.xml │ ├── strings.xml │ ├── vault_strings.xml │ └── wear_splash_screen_theme.xml ├── Dashlane └── src │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ ├── DashlaneApplication.kt │ │ │ ├── DashlaneApplicationObserver.kt │ │ │ ├── DashlaneFcmService.kt │ │ │ ├── accountrecoverykey │ │ │ └── AccountRecoveryKeyActivity.kt │ │ │ ├── accountstatus │ │ │ └── AccountStatusPostUpdateManagerImpl.kt │ │ │ ├── accountsummary │ │ │ └── AccountSummaryActivity.kt │ │ │ ├── analytics │ │ │ ├── ActivityLogService.kt │ │ │ └── install │ │ │ │ └── InstallTrackingManager.kt │ │ │ ├── applinkfetcher │ │ │ └── AuthentifiantAppLinkDownloader.kt │ │ │ ├── async │ │ │ └── broadcasts │ │ │ │ ├── BrazeBroadcastReceiver.kt │ │ │ │ ├── GCMAlarmReceiver.java │ │ │ │ └── InstallReceiver.kt │ │ │ ├── attachment │ │ │ ├── AttachmentListContract.kt │ │ │ ├── AttachmentListDataProvider.kt │ │ │ ├── AttachmentListResult.kt │ │ │ ├── dagger │ │ │ │ └── SecureFileBindingModule.kt │ │ │ ├── extensions │ │ │ │ └── SecureFileInfoExtension.kt │ │ │ └── ui │ │ │ │ ├── AttachmentAdapter.kt │ │ │ │ ├── AttachmentItem.kt │ │ │ │ ├── AttachmentListActivity.kt │ │ │ │ ├── AttachmentListPresenter.kt │ │ │ │ ├── AttachmentListViewProxy.kt │ │ │ │ ├── AttachmentViewHolder.kt │ │ │ │ ├── DownloadAttachmentsPresenter.kt │ │ │ │ ├── DownloadAttachmentsViewProxy.kt │ │ │ │ ├── OpenDocumentResultContract.kt │ │ │ │ ├── UploadAttachmentsPresenter.kt │ │ │ │ └── UploadAttachmentsViewProxy.kt │ │ │ ├── authenticator │ │ │ ├── AuthenticatorDashboardFragment.kt │ │ │ └── AuthenticatorSuggestionsFragment.kt │ │ │ ├── autofill │ │ │ ├── api │ │ │ │ ├── ApplicationFormSourceDeviceStatusFromContext.kt │ │ │ │ ├── AuthentifiantSearchViewTypeProviderFactoryImpl.kt │ │ │ │ ├── AutofillCreateAccountServiceImpl.kt │ │ │ │ ├── AutofillEmptyWebsiteWarningServiceImpl.kt │ │ │ │ ├── AutofillFormSourcesStringsFromContext.kt │ │ │ │ ├── AutofillNavigationServiceImpl.kt │ │ │ │ ├── AutofillSearchUsingLoader.kt │ │ │ │ ├── AutofillUpdateAccountServiceImpl.kt │ │ │ │ ├── KeyboardAutofillServiceImpl.kt │ │ │ │ ├── PreferencesPausedFormSourcesRepository.kt │ │ │ │ ├── dagger │ │ │ │ │ ├── AutofillApiComponentBindModule.kt │ │ │ │ │ ├── AutofillApiComponentModule.kt │ │ │ │ │ ├── AutofillApiPauseComponentModule.kt │ │ │ │ │ ├── AutofillApiRememberAccountComponentModule.kt │ │ │ │ │ ├── AutofillApiTotpModule.kt │ │ │ │ │ └── AutofillApiViewAllAccountsComponentModule.kt │ │ │ │ ├── followup │ │ │ │ │ ├── FollowUpNotificationComponentExternalModule.kt │ │ │ │ │ ├── FollowUpNotificationLockManagerImpl.kt │ │ │ │ │ ├── FollowUpNotificationLoggerImpl.kt │ │ │ │ │ ├── FollowUpNotificationPermissionManagerImpl.kt │ │ │ │ │ └── FollowUpNotificationSettingsServiceImpl.kt │ │ │ │ ├── rememberaccount │ │ │ │ │ ├── ApplicationFormSourceAuthentifiantPreferencesLinker.kt │ │ │ │ │ ├── AutofillApiRememberAccountToasterImpl.kt │ │ │ │ │ ├── FormSourceAuthentifiantPreferencesLinker.kt │ │ │ │ │ ├── WebDomainFormSourceAuthentifiantPreferencesLinker.kt │ │ │ │ │ └── linkedservices │ │ │ │ │ │ ├── ApplicationFormSourceAuthentifiantLinker.kt │ │ │ │ │ │ └── WebDomainFormSourceAuthentifiantLinker.kt │ │ │ │ └── securitywarnings │ │ │ │ │ └── UserPreferencesRememberSecurityWarningsJsonRepository.kt │ │ │ └── core │ │ │ │ ├── AutoFillDataBaseAccess.kt │ │ │ │ ├── AutofillChangePasswordLoggerImpl.kt │ │ │ │ ├── AutofillCreateAccountLoggerImpl.kt │ │ │ │ ├── AutofillGeneratePasswordLoggerImpl.kt │ │ │ │ ├── AutofillPhishingLoggerImpl.kt │ │ │ │ ├── AutofillSaveRequestLoggerImpl.kt │ │ │ │ ├── AutofillSecurityWarningsLoggerImpl.kt │ │ │ │ ├── AutofillViewAllAccountsLoggerImpl.kt │ │ │ │ ├── RememberAccountLoggerImpl.kt │ │ │ │ └── domain │ │ │ │ └── AutofillSecurityApplicationImpl.kt │ │ │ ├── backup │ │ │ └── DashlaneBackupAgent.kt │ │ │ ├── biometricrecovery │ │ │ └── BiometricRecoveryImpl.kt │ │ │ ├── breach │ │ │ ├── BreachManager.kt │ │ │ └── BreachManagerActivityListener.kt │ │ │ ├── collections │ │ │ ├── CollectionLoading.kt │ │ │ ├── DeleteConfirmationDialog.kt │ │ │ ├── RevokeToDeleteDialog.kt │ │ │ ├── SearchableTopAppBarTitle.kt │ │ │ ├── SpaceData.kt │ │ │ ├── details │ │ │ │ ├── CollectionDetailsFragment.kt │ │ │ │ ├── CollectionDetailsScreen.kt │ │ │ │ ├── CollectionDetailsViewModel.kt │ │ │ │ ├── CollectionLimiter.kt │ │ │ │ └── ViewState.kt │ │ │ ├── edit │ │ │ │ ├── CollectionEditFragment.kt │ │ │ │ ├── CollectionsEditViewModel.kt │ │ │ │ ├── SpacePicker.kt │ │ │ │ └── ViewState.kt │ │ │ ├── list │ │ │ │ ├── CollectionsListFragment.kt │ │ │ │ ├── CollectionsListViewModel.kt │ │ │ │ └── ViewState.kt │ │ │ └── sharing │ │ │ │ ├── CollectionSharingListTitle.kt │ │ │ │ ├── CollectionSharingResultActivityListener.kt │ │ │ │ ├── CollectionSharingTopAppBar.kt │ │ │ │ ├── CollectionSharingViewState.kt │ │ │ │ ├── access │ │ │ │ ├── CollectionSharedAccessActivity.kt │ │ │ │ ├── CollectionSharedAccessScreen.kt │ │ │ │ └── CollectionSharedAccessViewModel.kt │ │ │ │ ├── item │ │ │ │ └── CollectionSharingItemDataProvider.kt │ │ │ │ └── share │ │ │ │ ├── CollectionNewShareActivity.kt │ │ │ │ ├── CollectionNewShareScreen.kt │ │ │ │ └── CollectionsNewShareViewModel.kt │ │ │ ├── core │ │ │ ├── DataSyncFlowUtils.kt │ │ │ ├── DataSyncImpl.kt │ │ │ ├── DataSyncNotification.kt │ │ │ ├── HashForLog.kt │ │ │ ├── domain │ │ │ │ ├── AccountStorageImpl.kt │ │ │ │ ├── State.kt │ │ │ │ └── sharing │ │ │ │ │ └── SharingPermission.kt │ │ │ ├── history │ │ │ │ ├── AbstractHistoryGenerator.kt │ │ │ │ └── AuthentifiantHistoryGenerator.kt │ │ │ ├── legacypremium │ │ │ │ └── ConflictingBillingPlatformProviderImpl.kt │ │ │ ├── sharing │ │ │ │ ├── SharingDaoImplRaclette.kt │ │ │ │ ├── SharingDaoMemoryDataAccessProviderImpl.kt │ │ │ │ ├── SharingDaoMemoryDataAccessRacletteImpl.kt │ │ │ │ ├── SharingItemUpdater.kt │ │ │ │ ├── SharingItemUpdaterUtils.kt │ │ │ │ └── SharingSyncImpl.kt │ │ │ └── xmlconverter │ │ │ │ ├── DataIdentifierSharingXmlConverter.kt │ │ │ │ └── DataIdentifierSharingXmlConverterImpl.kt │ │ │ ├── crashreport │ │ │ ├── CrashReporterLogger.kt │ │ │ ├── CrashReporterManager.kt │ │ │ └── reporter │ │ │ │ └── SentryCrashReporter.kt │ │ │ ├── createaccount │ │ │ ├── CreateAccountComposeActivity.kt │ │ │ ├── CreateAccountNavigation.kt │ │ │ ├── CreateAccountState.kt │ │ │ ├── CreateAccountSuccessIntentFactory.kt │ │ │ ├── CreateAccountViewModel.kt │ │ │ └── passwordless │ │ │ │ ├── MplessAccountCreationActivity.kt │ │ │ │ └── MplessAccountCreationNavigation.kt │ │ │ ├── credentialmanager │ │ │ ├── CredentialManagerIntentImpl.kt │ │ │ └── MobileBiometricAuthProvider.kt │ │ │ ├── dagger │ │ │ ├── ActivityBindingModule.kt │ │ │ ├── ActivityLifecycleListenerModule.kt │ │ │ ├── ActivityModule.kt │ │ │ ├── DateModule.kt │ │ │ ├── FragmentBindingModule.kt │ │ │ ├── FragmentModule.kt │ │ │ ├── NotificatorModule.kt │ │ │ ├── ViewModelModule.kt │ │ │ └── singleton │ │ │ │ ├── AccountRecoveryModule.kt │ │ │ │ ├── ApplicationContextModule.kt │ │ │ │ ├── BinderModule.kt │ │ │ │ ├── BreachModule.kt │ │ │ │ ├── CredentialManagerModule.kt │ │ │ │ ├── DaDaDaModule.kt │ │ │ │ ├── DomainCategoryModule.kt │ │ │ │ ├── FeatureCheckerModule.kt │ │ │ │ ├── HttpAppModule.kt │ │ │ │ ├── KnownApplicationEntryPoint.kt │ │ │ │ ├── KnownApplicationModule.kt │ │ │ │ ├── NewDataStorageModule.kt │ │ │ │ ├── PasswordModule.kt │ │ │ │ ├── RemoteConfigurationModule.kt │ │ │ │ ├── ScreenshotPolicyModule.kt │ │ │ │ ├── SessionCoroutineScopeModule.kt │ │ │ │ ├── SessionManagerModule.kt │ │ │ │ ├── SharingModule.kt │ │ │ │ ├── SingletonAggregateModule.kt │ │ │ │ ├── SingletonModule.kt │ │ │ │ ├── SyncModule.kt │ │ │ │ ├── TrackingModule.kt │ │ │ │ ├── UserAgentProviderImpl.kt │ │ │ │ └── VibratorModule.kt │ │ │ ├── device │ │ │ ├── DeviceInformation.kt │ │ │ ├── DeviceInformationGenerator.kt │ │ │ └── DeviceUpdateManager.kt │ │ │ ├── endoflife │ │ │ ├── EndOfLifeModule.kt │ │ │ └── EndOfLifeObserver.kt │ │ │ ├── events │ │ │ ├── BreachesRefreshedEvent.kt │ │ │ ├── DarkWebSetupCompleteEvent.kt │ │ │ ├── DataIdentifierDeletedEvent.kt │ │ │ ├── DataIdentifierReplacedEvent.kt │ │ │ └── PasswordChangedEvent.kt │ │ │ ├── invites │ │ │ └── InviteFriendsIntentHelper.kt │ │ │ ├── item │ │ │ ├── BaseUiUpdateListener.kt │ │ │ ├── ItemEditViewActivity.kt │ │ │ ├── ItemEditViewContract.kt │ │ │ ├── ItemEditViewDataProvider.kt │ │ │ ├── ItemEditViewPresenter.kt │ │ │ ├── ItemEditViewSetupOptions.kt │ │ │ ├── ItemEditViewViewProxy.kt │ │ │ ├── ScreenConfiguration.kt │ │ │ ├── ScreenConfigurationUtil.kt │ │ │ ├── WindowUtil.kt │ │ │ ├── collection │ │ │ │ ├── CollectionSelectorDataProvider.kt │ │ │ │ ├── CollectionSelectorFragment.kt │ │ │ │ ├── CollectionSelectorScreen.kt │ │ │ │ ├── CollectionSelectorState.kt │ │ │ │ ├── CollectionSelectorViewModel.kt │ │ │ │ └── CollectionTeamUtil.kt │ │ │ ├── delete │ │ │ │ ├── DeleteVaultItemFragment.kt │ │ │ │ ├── DeleteVaultItemScreen.kt │ │ │ │ └── DeleteVaultItemViewModel.kt │ │ │ ├── header │ │ │ │ └── ItemHeader.kt │ │ │ ├── linkedwebsites │ │ │ │ ├── LinkedServicesContract.kt │ │ │ │ ├── LinkedServicesDataProvider.kt │ │ │ │ ├── LinkedServicesFragment.kt │ │ │ │ ├── LinkedServicesUIState.kt │ │ │ │ ├── LinkedServicesUtils.kt │ │ │ │ ├── LinkedServicesViewModel.kt │ │ │ │ └── item │ │ │ │ │ ├── LinkedAppsItemFragment.kt │ │ │ │ │ ├── LinkedAppsViewModel.kt │ │ │ │ │ ├── LinkedServicesItem.kt │ │ │ │ │ ├── LinkedWebsitesItemFragment.kt │ │ │ │ │ └── LinkedWebsitesViewModel.kt │ │ │ ├── nfc │ │ │ │ ├── EmvCardProvider.kt │ │ │ │ ├── NfcCreditCardReader.kt │ │ │ │ ├── NfcHelper.kt │ │ │ │ └── NfcObserver.kt │ │ │ ├── passwordhistory │ │ │ │ ├── CredentialPasswordHistoryItem.kt │ │ │ │ ├── GeneratedPasswordHistoryItem.kt │ │ │ │ ├── PasswordHistoryEntry.kt │ │ │ │ ├── PasswordHistoryField.kt │ │ │ │ ├── PasswordHistoryFragment.kt │ │ │ │ ├── PasswordHistoryScreen.kt │ │ │ │ └── PasswordHistoryViewModel.kt │ │ │ ├── subview │ │ │ │ ├── ItemScreenConfigurationProvider.kt │ │ │ │ ├── ItemSubView.kt │ │ │ │ ├── ItemSubViewImpl.kt │ │ │ │ ├── ItemSubViewWithActionWrapper.kt │ │ │ │ ├── ValueChangeManager.kt │ │ │ │ ├── ValueChangeManagerImpl.kt │ │ │ │ ├── ViewFactory.kt │ │ │ │ ├── action │ │ │ │ │ ├── AttachmentDetailsAction.kt │ │ │ │ │ ├── CopyAction.kt │ │ │ │ │ ├── DataIdentifierUtil.kt │ │ │ │ │ ├── DeleteMenuAction.kt │ │ │ │ │ ├── ItemEditMenuAction.kt │ │ │ │ │ ├── ItemHistoryAction.kt │ │ │ │ │ ├── LimitedSharingRightsInfoAction.kt │ │ │ │ │ ├── LoginAction.kt │ │ │ │ │ ├── LoginOpener.kt │ │ │ │ │ ├── MenuAction.kt │ │ │ │ │ ├── NewShareAction.kt │ │ │ │ │ ├── NewShareMenuAction.kt │ │ │ │ │ ├── ShareDetailsAction.kt │ │ │ │ │ └── ShowAttachmentsMenuAction.kt │ │ │ │ ├── edit │ │ │ │ │ ├── ItemEditSpaceSubView.kt │ │ │ │ │ ├── ItemEditValueBooleanSubView.kt │ │ │ │ │ ├── ItemEditValueDateSubView.kt │ │ │ │ │ ├── ItemEditValueListNonDefaultSubView.kt │ │ │ │ │ ├── ItemEditValueListSubView.kt │ │ │ │ │ ├── ItemEditValueNumberSubView.kt │ │ │ │ │ ├── ItemEditValueSubView.kt │ │ │ │ │ └── ItemEditValueTextSubView.kt │ │ │ │ ├── provider │ │ │ │ │ ├── BaseSubViewFactory.kt │ │ │ │ │ ├── CountryUtil.kt │ │ │ │ │ ├── DateTimeFieldFactory.kt │ │ │ │ │ ├── EditableSubViewFactory.kt │ │ │ │ │ ├── ReadOnlySubViewFactory.kt │ │ │ │ │ ├── SubViewFactory.kt │ │ │ │ │ ├── credential │ │ │ │ │ │ └── ItemScreenConfigurationPasskeyProvider.kt │ │ │ │ │ ├── id │ │ │ │ │ │ ├── IdUtil.kt │ │ │ │ │ │ ├── IdentityAdapter.kt │ │ │ │ │ │ ├── ItemScreenConfigurationDriverLicenseProvider.kt │ │ │ │ │ │ ├── ItemScreenConfigurationFiscalStatementProvider.kt │ │ │ │ │ │ ├── ItemScreenConfigurationIdCardProvider.kt │ │ │ │ │ │ ├── ItemScreenConfigurationPassportProvider.kt │ │ │ │ │ │ └── ItemScreenConfigurationSocialSecurityProvider.kt │ │ │ │ │ ├── payment │ │ │ │ │ │ ├── BankUtil.kt │ │ │ │ │ │ └── ItemScreenConfigurationBankAccountProvider.kt │ │ │ │ │ └── personalinfo │ │ │ │ │ │ ├── ItemScreenConfigurationAddressProvider.kt │ │ │ │ │ │ ├── ItemScreenConfigurationCompanyProvider.kt │ │ │ │ │ │ ├── ItemScreenConfigurationEmailProvider.kt │ │ │ │ │ │ ├── ItemScreenConfigurationIdentityProvider.kt │ │ │ │ │ │ ├── ItemScreenConfigurationPhoneProvider.kt │ │ │ │ │ │ └── ItemScreenConfigurationWebsiteProvider.kt │ │ │ │ ├── readonly │ │ │ │ │ ├── ItemClickActionSubView.kt │ │ │ │ │ ├── ItemInfoboxSubView.kt │ │ │ │ │ ├── ItemMetaReadValueDateTimeSubView.kt │ │ │ │ │ ├── ItemReadSpaceSubView.kt │ │ │ │ │ ├── ItemReadValueBooleanSubView.kt │ │ │ │ │ ├── ItemReadValueDateSubView.kt │ │ │ │ │ ├── ItemReadValueListSubView.kt │ │ │ │ │ ├── ItemReadValueNumberSubView.kt │ │ │ │ │ ├── ItemReadValueSubView.kt │ │ │ │ │ └── ItemReadValueTextSubView.kt │ │ │ │ └── view │ │ │ │ │ ├── ButtonInputProvider.kt │ │ │ │ │ ├── CustomItemSelectSpinner.kt │ │ │ │ │ ├── DatePickerInputProvider.kt │ │ │ │ │ ├── InfoboxViewProvider.kt │ │ │ │ │ ├── MetaTextViewProvider.kt │ │ │ │ │ ├── SpaceSelectorProvider.kt │ │ │ │ │ ├── SpinnerInputProvider.kt │ │ │ │ │ ├── SpinnerNoDefaultInputProvider.kt │ │ │ │ │ ├── SwitchInputProvider.kt │ │ │ │ │ └── TextInputLayoutProvider.kt │ │ │ └── v3 │ │ │ │ ├── ItemEditFragment.kt │ │ │ │ ├── ItemEditModule.kt │ │ │ │ ├── ItemEditViewModelFactory.kt │ │ │ │ ├── builders │ │ │ │ ├── CredentialBuilder.kt │ │ │ │ ├── SecretBuilder.kt │ │ │ │ └── SecureNoteBuilder.kt │ │ │ │ ├── data │ │ │ │ ├── CollectionData.kt │ │ │ │ ├── CommonData.kt │ │ │ │ ├── CredentialFormData.kt │ │ │ │ ├── FormData.kt │ │ │ │ ├── InfoBoxData.kt │ │ │ │ ├── ItemAction.kt │ │ │ │ ├── PasswordHealthData.kt │ │ │ │ ├── SecretFormData.kt │ │ │ │ └── SecureNoteFormData.kt │ │ │ │ ├── display │ │ │ │ ├── DisplayInfoBox.kt │ │ │ │ ├── ItemEditPerformAction.kt │ │ │ │ ├── ItemEditScreen.kt │ │ │ │ ├── ItemHeader.kt │ │ │ │ ├── SectionItemHelper.kt │ │ │ │ ├── Toolbar.kt │ │ │ │ ├── fields │ │ │ │ │ ├── CollectionsField.kt │ │ │ │ │ ├── DeleteItemField.kt │ │ │ │ │ ├── GenericField.kt │ │ │ │ │ ├── ItemEditColorDropdown.kt │ │ │ │ │ ├── ItemEditDateField.kt │ │ │ │ │ ├── ItemEditDropdownField.kt │ │ │ │ │ ├── ItemEditGenericDisplayField.kt │ │ │ │ │ ├── ItemEditObfuscatedField.kt │ │ │ │ │ ├── ItemEditObfuscatedTextArea.kt │ │ │ │ │ ├── ItemEditSuggestionField.kt │ │ │ │ │ ├── LinkedServicesField.kt │ │ │ │ │ ├── PasswordField.kt │ │ │ │ │ ├── SectionContent.kt │ │ │ │ │ ├── SectionTitle.kt │ │ │ │ │ ├── SecureNoteColorField.kt │ │ │ │ │ ├── SpaceField.kt │ │ │ │ │ └── TwoFactorAuthenticatorField.kt │ │ │ │ ├── forms │ │ │ │ │ ├── CredentialForm.kt │ │ │ │ │ ├── SecretForm.kt │ │ │ │ │ └── SecureNoteForm.kt │ │ │ │ └── sections │ │ │ │ │ ├── AttachmentsSection.kt │ │ │ │ │ ├── HealthDetailSection.kt │ │ │ │ │ ├── ItemDateSection.kt │ │ │ │ │ ├── LoginDetailSection.kt │ │ │ │ │ ├── NoteDetailSection.kt │ │ │ │ │ ├── OrganisationSection.kt │ │ │ │ │ ├── SecretDetailSection.kt │ │ │ │ │ ├── SecretSettingsSection.kt │ │ │ │ │ ├── SecureNoteSettingsSection.kt │ │ │ │ │ └── SharedAccessSection.kt │ │ │ │ ├── itemtype │ │ │ │ ├── creditcard │ │ │ │ │ ├── CreditCardDialog.kt │ │ │ │ │ ├── CreditCardFormData.kt │ │ │ │ │ ├── CreditCardItemEditViewModel.kt │ │ │ │ │ ├── ItemEditValueUpdateItemCreditCardManager.kt │ │ │ │ │ ├── builder │ │ │ │ │ │ ├── CreditCardFormBuilder.kt │ │ │ │ │ │ ├── CreditCardHiddenFieldsBuilder.kt │ │ │ │ │ │ └── CreditCardTypeFormatBuilder.kt │ │ │ │ │ ├── loader │ │ │ │ │ │ └── CreditCardSensitiveFieldLoader.kt │ │ │ │ │ └── ui │ │ │ │ │ │ ├── CreditCardDetailSection.kt │ │ │ │ │ │ ├── CreditCardForm.kt │ │ │ │ │ │ └── CreditCardVisualTransformation.kt │ │ │ │ └── wifi │ │ │ │ │ ├── ConnectToWiFiNetworkResult.kt │ │ │ │ │ ├── ItemEditValueUpdateItemWiFiManager.kt │ │ │ │ │ ├── WiFiDialog.kt │ │ │ │ │ ├── WiFiFormData.kt │ │ │ │ │ ├── WiFiItemEditViewModel.kt │ │ │ │ │ ├── builder │ │ │ │ │ ├── WiFiFormBuilder.kt │ │ │ │ │ ├── WiFiHiddenFieldsBuilder.kt │ │ │ │ │ ├── WiFiQRCodeContentBuilder.kt │ │ │ │ │ └── WiFiSuggestionBuilder.kt │ │ │ │ │ ├── loader │ │ │ │ │ ├── WiFiAsyncLoader.kt │ │ │ │ │ └── WiFiSensitiveFieldLoader.kt │ │ │ │ │ └── ui │ │ │ │ │ ├── WiFiDetailSection.kt │ │ │ │ │ ├── WiFiForm.kt │ │ │ │ │ └── WiFiQRCodeBottomSheet.kt │ │ │ │ ├── loaders │ │ │ │ ├── AsyncDataLoader.kt │ │ │ │ ├── CredentialAsyncDataLoader.kt │ │ │ │ ├── SecretAsyncDataLoader.kt │ │ │ │ ├── SecureNoteAsyncDataLoader.kt │ │ │ │ └── common │ │ │ │ │ ├── CanDeleteLoader.kt │ │ │ │ │ ├── CollectionLoader.kt │ │ │ │ │ └── SharingCountLoader.kt │ │ │ │ ├── repositories │ │ │ │ ├── CollectionsRepository.kt │ │ │ │ ├── CollectionsRepositoryImpl.kt │ │ │ │ ├── GeneratedPasswordRepository.kt │ │ │ │ ├── GeneratedPasswordRepositoryImpl.kt │ │ │ │ ├── ItemEditRepository.kt │ │ │ │ ├── ItemEditRepositoryImpl.kt │ │ │ │ ├── NewItemRepository.kt │ │ │ │ ├── NewItemRepositoryImpl.kt │ │ │ │ ├── PasswordHealthRepository.kt │ │ │ │ └── PasswordHealthRepositoryImpl.kt │ │ │ │ ├── util │ │ │ │ ├── Field.kt │ │ │ │ ├── InfoboxHelper.kt │ │ │ │ ├── ItemEditValueUpdateItemAuthentifiantManager.kt │ │ │ │ ├── ItemEditValueUpdateItemManager.kt │ │ │ │ ├── ItemEditValueUpdateItemSecretManager.kt │ │ │ │ ├── ItemEditValueUpdateItemSecureNoteManager.kt │ │ │ │ ├── ItemEditValueUpdateManager.kt │ │ │ │ ├── MenuActionHelper.kt │ │ │ │ ├── SensitiveFieldLoader.kt │ │ │ │ ├── StateHelper.kt │ │ │ │ ├── ToolbarHelper.kt │ │ │ │ └── VaultItemHelper.kt │ │ │ │ └── viewmodels │ │ │ │ ├── CredentialItemEditViewModel.kt │ │ │ │ ├── ItemEditViewModel.kt │ │ │ │ ├── SecretItemEditViewModel.kt │ │ │ │ └── SecureNoteItemEditViewModel.kt │ │ │ ├── limitations │ │ │ └── Enforce2faLimiter.kt │ │ │ ├── listeners │ │ │ └── edittext │ │ │ │ └── NoLockEditTextWatcher.kt │ │ │ ├── loaders │ │ │ ├── InstalledAppAndPopularWebsiteLoader.kt │ │ │ └── datalists │ │ │ │ ├── NewShareItemDataProvider.kt │ │ │ │ ├── SearchLoader.kt │ │ │ │ └── SharingUserDataUtils.kt │ │ │ ├── locking │ │ │ └── controllers │ │ │ │ ├── LockManagerActivityListener.kt │ │ │ │ └── LockSelfCheckActivityListener.kt │ │ │ ├── logger │ │ │ ├── ActivityLogErrorReporterImpl.kt │ │ │ ├── AnalyticsErrorReporterImpl.kt │ │ │ └── utils │ │ │ │ └── HermesDebugUtil.kt │ │ │ ├── login │ │ │ ├── DeviceRegistrationInfoImpl.kt │ │ │ ├── InstallationIdDebugUtil.kt │ │ │ ├── LoginActivity.kt │ │ │ ├── LoginIntentFactoryImpl.kt │ │ │ ├── TrackingIdProvider.kt │ │ │ ├── UserAccountStatus.kt │ │ │ ├── accountrecoverykey │ │ │ │ ├── LoginAccountRecoveryDestination.kt │ │ │ │ ├── LoginAccountRecoveryKeyActivity.kt │ │ │ │ ├── LoginAccountRecoveryKeyViewModel.kt │ │ │ │ ├── LoginAccountRecoveryNavigation.kt │ │ │ │ ├── enterark │ │ │ │ │ ├── EnterARKScreen.kt │ │ │ │ │ ├── EnterARKState.kt │ │ │ │ │ └── EnterARKViewModel.kt │ │ │ │ ├── intro │ │ │ │ │ ├── IntroScreen.kt │ │ │ │ │ ├── IntroState.kt │ │ │ │ │ └── IntroViewModel.kt │ │ │ │ └── recovery │ │ │ │ │ ├── RecoveryScreen.kt │ │ │ │ │ ├── RecoveryState.kt │ │ │ │ │ └── RecoveryViewModel.kt │ │ │ ├── controller │ │ │ │ ├── LoginTokensModule.kt │ │ │ │ ├── NumberOfRunsActivityListener.kt │ │ │ │ ├── PasswordResetActivityListener.kt │ │ │ │ ├── PasswordResetReceiver.kt │ │ │ │ ├── TokenChecker.kt │ │ │ │ └── TokenReceiverActivityListener.kt │ │ │ ├── dagger │ │ │ │ ├── AuthBindingModule.kt │ │ │ │ ├── LoginBindingModule.kt │ │ │ │ ├── LoginCreateAccountSharedModule.kt │ │ │ │ ├── ShortTimeout.kt │ │ │ │ └── TrackingId.kt │ │ │ ├── lock │ │ │ │ ├── BiometricActivationResult.kt │ │ │ │ ├── LockManagerForItem.kt │ │ │ │ ├── LockNavigationHelperImpl.kt │ │ │ │ ├── LockTypeManagerImpl.kt │ │ │ │ ├── OnboardingApplicationLockActivity.kt │ │ │ │ ├── OnboardingApplicationLockModule.kt │ │ │ │ ├── OnboardingApplicationLockScreen.kt │ │ │ │ ├── OnboardingApplicationLockState.kt │ │ │ │ ├── OnboardingApplicationLockUseCase.kt │ │ │ │ ├── OnboardingApplicationLockViewModel.kt │ │ │ │ └── PinCodeSetterResult.kt │ │ │ ├── pages │ │ │ │ ├── enforce2fa │ │ │ │ │ ├── Enforce2faLimitActivity.kt │ │ │ │ │ ├── Enforce2faLimitModule.kt │ │ │ │ │ ├── Enforce2faLimitScreen.kt │ │ │ │ │ ├── Enforce2faLimitState.kt │ │ │ │ │ ├── Enforce2faLimitUseCase.kt │ │ │ │ │ └── Enforce2faLimitViewModel.kt │ │ │ │ └── secrettransfer │ │ │ │ │ ├── LoginSecretTransferDestination.kt │ │ │ │ │ ├── LoginSecretTransferNavigation.kt │ │ │ │ │ ├── LoginSecretTransferState.kt │ │ │ │ │ ├── LoginSecretTransferViewModel.kt │ │ │ │ │ ├── authorize │ │ │ │ │ └── AuthorizeScreen.kt │ │ │ │ │ ├── choosetype │ │ │ │ │ ├── ChooseTypeScreen.kt │ │ │ │ │ ├── ChooseTypeState.kt │ │ │ │ │ └── ChooseTypeViewModel.kt │ │ │ │ │ ├── confirmemail │ │ │ │ │ ├── ConfirmEmailScreen.kt │ │ │ │ │ ├── ConfirmEmailState.kt │ │ │ │ │ └── ConfirmEmailViewModel.kt │ │ │ │ │ ├── help │ │ │ │ │ ├── RecoveryHelpScreen.kt │ │ │ │ │ ├── RecoveryHelpState.kt │ │ │ │ │ ├── RecoveryHelpViewModel.kt │ │ │ │ │ └── lostkey │ │ │ │ │ │ └── LostKeyScreen.kt │ │ │ │ │ └── universal │ │ │ │ │ ├── intro │ │ │ │ │ ├── UniversalIntroScreen.kt │ │ │ │ │ ├── UniversalIntroState.kt │ │ │ │ │ └── UniversalIntroViewModel.kt │ │ │ │ │ └── passphrase │ │ │ │ │ └── PassphraseIdentificationScreen.kt │ │ │ ├── root │ │ │ │ ├── LocalLoginNavigationHost.kt │ │ │ │ ├── LoginNavigationHost.kt │ │ │ │ ├── LoginState.kt │ │ │ │ └── LoginViewModel.kt │ │ │ └── settings │ │ │ │ ├── LoginSettingsActivity.kt │ │ │ │ ├── LoginSettingsScreen.kt │ │ │ │ ├── LoginSettingsState.kt │ │ │ │ └── LoginSettingsViewModel.kt │ │ │ ├── masterpassword │ │ │ ├── ChangeMasterPasswordComposeActivity.kt │ │ │ └── ChangeMasterPasswordFeatureAccessChecker.kt │ │ │ ├── navigation │ │ │ ├── CustomTitleDestinationChangedListener.kt │ │ │ ├── MenuIconDestinationChangedListener.kt │ │ │ ├── NavControllerUtils.kt │ │ │ ├── NavDeepLinkHelper.kt │ │ │ └── NavigatorImpl.kt │ │ │ ├── notification │ │ │ ├── FcmHelper.kt │ │ │ ├── LocalNotificationCenterActivityListener.kt │ │ │ ├── badge │ │ │ │ ├── NotificationBadgeActivityListener.kt │ │ │ │ ├── NotificationBadgeFlow.kt │ │ │ │ └── SharingInvitationRepositoryImpl.kt │ │ │ ├── creator │ │ │ │ ├── AutoFillNotificationCreatorImpl.kt │ │ │ │ ├── AutoFillNotificationWorker.kt │ │ │ │ ├── ChromeAutoFillNotificationCreatorImpl.kt │ │ │ │ └── ChromeAutoFillNotificationWorker.kt │ │ │ └── model │ │ │ │ ├── DarkWebAlertNotificationHandler.kt │ │ │ │ ├── PublicBreachAlertNotificationHandler.kt │ │ │ │ ├── SyncNotificationHandler.kt │ │ │ │ └── TokenNotificationHandler.kt │ │ │ ├── notificationcenter │ │ │ ├── NotificationCenterDataProvider.kt │ │ │ ├── NotificationCenterFragment.kt │ │ │ ├── NotificationCenterModule.kt │ │ │ ├── NotificationCenterPresenter.kt │ │ │ ├── NotificationCenterRepositoryImpl.kt │ │ │ ├── NotificationCenterViewProxy.kt │ │ │ ├── alerts │ │ │ │ └── BreachDataHelper.kt │ │ │ ├── details │ │ │ │ └── NotificationCenterSectionDetailsFragment.kt │ │ │ ├── promotions │ │ │ │ └── IntroOfferActionItem.kt │ │ │ └── view │ │ │ │ ├── ActionItem.kt │ │ │ │ ├── ActionItemEmptyItemViewHolder.kt │ │ │ │ ├── AlertActionItem.kt │ │ │ │ ├── HeaderItem.kt │ │ │ │ ├── ReadStateViewHolder.kt │ │ │ │ ├── SharingActionItemCollection.kt │ │ │ │ ├── SharingActionItemItemGroup.kt │ │ │ │ ├── SharingActionItemUserGroup.kt │ │ │ │ └── SwipeToDeleteCallback.kt │ │ │ ├── plans │ │ │ └── ui │ │ │ │ └── view │ │ │ │ ├── PurchaseCheckingActivity.kt │ │ │ │ ├── PurchaseCheckingCoordinatorImpl.kt │ │ │ │ ├── PurchaseCheckingErrorFragment.kt │ │ │ │ ├── PurchaseCheckingProgressFragment.kt │ │ │ │ ├── PurchaseCheckingResultViewProxy.kt │ │ │ │ └── PurchaseCheckingSuccessFragment.kt │ │ │ ├── security │ │ │ ├── HideOverlayWindowActivityListener.kt │ │ │ ├── SecurityAlertTrackingUtil.kt │ │ │ ├── TouchFilterActivityListener.kt │ │ │ ├── darkwebmonitoring │ │ │ │ ├── DarkWebMonitoringAlertViewModel.kt │ │ │ │ ├── DarkWebMonitoringContract.kt │ │ │ │ ├── DarkWebMonitoringDataProvider.kt │ │ │ │ ├── DarkWebMonitoringFragment.kt │ │ │ │ ├── DarkWebMonitoringPagerAdapter.kt │ │ │ │ ├── DarkWebMonitoringPresenter.kt │ │ │ │ ├── DarkWebMonitoringViewProxy.kt │ │ │ │ ├── dagger │ │ │ │ │ └── DarkWebMonitoringModule.kt │ │ │ │ ├── detail │ │ │ │ │ ├── BreachAlertAdvice.kt │ │ │ │ │ ├── BreachAlertDetail.kt │ │ │ │ │ ├── BreachAlertDetailDataProvider.kt │ │ │ │ │ ├── BreachAlertDetailFragment.kt │ │ │ │ │ ├── BreachAlertDetailLogger.kt │ │ │ │ │ ├── BreachAlertDetailPresenter.kt │ │ │ │ │ └── BreachAlertDetailViewProxy.kt │ │ │ │ ├── item │ │ │ │ │ ├── DarkWebBreachItem.kt │ │ │ │ │ ├── DarkWebEmailItem.kt │ │ │ │ │ ├── DarkWebEmailPlaceholderItem.kt │ │ │ │ │ ├── DarkWebEmptyItem.kt │ │ │ │ │ └── DarkWebHeaderItem.kt │ │ │ │ ├── ui │ │ │ │ │ └── DarkWebMonitoringInactiveContent.kt │ │ │ │ └── view │ │ │ │ │ └── DarkWebMonitoringInactiveContentView.kt │ │ │ └── identitydashboard │ │ │ │ ├── IdentityDashboardFragment.kt │ │ │ │ └── password │ │ │ │ ├── PasswordAnalysisDataProvider.kt │ │ │ │ ├── PasswordAnalysisFragment.kt │ │ │ │ ├── PasswordAnalysisItemWrapper.kt │ │ │ │ ├── PasswordAnalysisPresenter.kt │ │ │ │ └── PasswordAnalysisViewProxy.kt │ │ │ ├── session │ │ │ ├── observer │ │ │ │ ├── AnnouncementCenterObserver.kt │ │ │ │ ├── AntiPhishingObserver.kt │ │ │ │ ├── BackupTokenObserver.kt │ │ │ │ ├── BroadcastManagerObserver.kt │ │ │ │ ├── CryptographyMigrationObserver.kt │ │ │ │ ├── DeviceUpdateManagerObserver.kt │ │ │ │ ├── FcmRegistrationObserver.kt │ │ │ │ ├── LinkedAppsMigrationObserver.kt │ │ │ │ ├── OfflineExperimentObserver.kt │ │ │ │ ├── SystemUpdateObserver.kt │ │ │ │ └── UserSettingsLogObserver.kt │ │ │ └── repository │ │ │ │ ├── LockRepository.kt │ │ │ │ ├── LockRepositoryUtil.kt │ │ │ │ ├── SessionCoroutineScopeProvider.kt │ │ │ │ └── UserLoggedIn.kt │ │ │ ├── settings │ │ │ ├── SettingsComposeFragment.kt │ │ │ ├── SettingsGeneralActivity.kt │ │ │ ├── SettingsHelpActivity.kt │ │ │ ├── SettingsSearchActivity.kt │ │ │ └── SettingsSecurityActivity.kt │ │ │ ├── storage │ │ │ └── userdata │ │ │ │ ├── EmailSuggestionProviderImpl.kt │ │ │ │ ├── RichIconsSettingProviderImpl.kt │ │ │ │ └── accessor │ │ │ │ ├── CollectionDataQueryImpl.kt │ │ │ │ ├── DataChangeHistoryQueryImpl.kt │ │ │ │ ├── DataChangeHistorySaverImpl.kt │ │ │ │ ├── DataSaverImpl.kt │ │ │ │ ├── FrequentSearchImpl.kt │ │ │ │ ├── GeneratedPasswordQueryImpl.kt │ │ │ │ └── dagger │ │ │ │ └── UserDataAccessorModule.kt │ │ │ ├── teamspaces │ │ │ ├── db │ │ │ │ ├── SmartSpaceCategorizationDatabaseAccessor.kt │ │ │ │ ├── SmartSpaceCategorizationManager.kt │ │ │ │ ├── SmartSpaceItemChecker.kt │ │ │ │ ├── TeamspaceDbUtils.kt │ │ │ │ └── TeamspaceForceDeletionSharingWorker.kt │ │ │ └── manager │ │ │ │ ├── RevokedDetector.kt │ │ │ │ └── SpaceDeletedNotifier.kt │ │ │ ├── ui │ │ │ ├── ActivityLifecycleLoggerListener.kt │ │ │ ├── ApplicationForegroundChecker.kt │ │ │ ├── GlobalActivityLifecycleListener.kt │ │ │ ├── M2xIntentFactoryImpl.kt │ │ │ ├── ScreenshotPolicyImpl.kt │ │ │ ├── activities │ │ │ │ ├── DashlaneWrapperActivity.kt │ │ │ │ ├── HomeActivity.kt │ │ │ │ ├── HomeState.kt │ │ │ │ ├── HomeViewModel.kt │ │ │ │ ├── SplashScreenActivity.kt │ │ │ │ ├── SplashScreenIntentFactory.kt │ │ │ │ ├── firstpassword │ │ │ │ │ ├── AddFirstPasswordActivity.kt │ │ │ │ │ ├── AddFirstPasswordState.kt │ │ │ │ │ ├── AddFirstPasswordViewModel.kt │ │ │ │ │ ├── autofilldemo │ │ │ │ │ │ ├── AutofillDemo.kt │ │ │ │ │ │ ├── AutofillDemoActivity.kt │ │ │ │ │ │ ├── AutofillDemoDataProvider.kt │ │ │ │ │ │ ├── AutofillDemoPresenter.kt │ │ │ │ │ │ └── AutofillDemoViewProxy.kt │ │ │ │ │ ├── dagger │ │ │ │ │ │ └── FirstPasswordModule.kt │ │ │ │ │ └── ui │ │ │ │ │ │ ├── AddFirstPasswordFAQContent.kt │ │ │ │ │ │ ├── AddFirstPasswordScreen.kt │ │ │ │ │ │ └── AutofillDemoPromptBottomSheetContent.kt │ │ │ │ ├── fragments │ │ │ │ │ ├── AbstractContentFragment.kt │ │ │ │ │ ├── PasswordGeneratorAndGeneratedPasswordFragment.java │ │ │ │ │ ├── checklist │ │ │ │ │ │ ├── ChecklistData.kt │ │ │ │ │ │ ├── ChecklistDataProvider.kt │ │ │ │ │ │ ├── ChecklistDataProviderContract.kt │ │ │ │ │ │ ├── ChecklistFragment.kt │ │ │ │ │ │ ├── ChecklistHelper.kt │ │ │ │ │ │ ├── ChecklistViewModel.kt │ │ │ │ │ │ ├── ChecklistViewModelContract.kt │ │ │ │ │ │ ├── ChecklistViewProxy.kt │ │ │ │ │ │ └── dagger │ │ │ │ │ │ │ └── ChecklistModule.kt │ │ │ │ │ ├── list │ │ │ │ │ │ ├── ItemWrapperOneColViewHolder.kt │ │ │ │ │ │ ├── ItemWrapperViewHolder.kt │ │ │ │ │ │ ├── action │ │ │ │ │ │ │ ├── ActionItemHelper.kt │ │ │ │ │ │ │ ├── CopyItemFieldListItemAction.kt │ │ │ │ │ │ │ ├── ListItemAction.kt │ │ │ │ │ │ │ └── QuickActionsItemAction.kt │ │ │ │ │ │ └── wrapper │ │ │ │ │ │ │ ├── DefaultVaultItemWrapper.kt │ │ │ │ │ │ │ ├── ItemWrapperProvider.kt │ │ │ │ │ │ │ ├── PaymentCreditCardWrapper.kt │ │ │ │ │ │ │ ├── VaultItemDoubleWrapper.kt │ │ │ │ │ │ │ └── VaultItemWrapper.kt │ │ │ │ │ └── vault │ │ │ │ │ │ ├── HiddenImpala.kt │ │ │ │ │ │ ├── ScrollToTopEvent.kt │ │ │ │ │ │ ├── Vault.kt │ │ │ │ │ │ ├── VaultDataProvider.kt │ │ │ │ │ │ ├── VaultFragment.kt │ │ │ │ │ │ ├── VaultItemViewTypeProvider.kt │ │ │ │ │ │ ├── VaultPresenter.kt │ │ │ │ │ │ ├── VaultViewModel.kt │ │ │ │ │ │ ├── VaultViewProxy.kt │ │ │ │ │ │ ├── dagger │ │ │ │ │ │ ├── VaultModule.kt │ │ │ │ │ │ └── VaultScope.kt │ │ │ │ │ │ └── list │ │ │ │ │ │ └── VaultListFragment.kt │ │ │ │ └── onboarding │ │ │ │ │ ├── ChromeInAppLoginIntroActivity.kt │ │ │ │ │ ├── HomeActivityIntentCoordinator.kt │ │ │ │ │ ├── InAppLoginIntroActivity.kt │ │ │ │ │ ├── OnboardingInAppLoginDoneActivity.kt │ │ │ │ │ ├── OnboardingInAppLoginViewModel.kt │ │ │ │ │ └── screen │ │ │ │ │ ├── ChromeInAppLoginBoardingScreen.kt │ │ │ │ │ ├── InAppLoginBoardingScreen.kt │ │ │ │ │ └── InAppLoginDoneBoardingScreen.kt │ │ │ ├── adapter │ │ │ │ ├── AbstractSpinnerAdapterWithDefaultValue.java │ │ │ │ ├── CsvImportViewTypeProviderImpl.kt │ │ │ │ ├── SpinnerAdapterDefaultValue.java │ │ │ │ └── SpinnerAdapterDefaultValueString.java │ │ │ ├── adapters │ │ │ │ └── sharing │ │ │ │ │ └── SharingContactFilteredArrayAdapter.kt │ │ │ ├── credential │ │ │ │ └── passwordgenerator │ │ │ │ │ ├── PasswordGeneratorDialog.kt │ │ │ │ │ ├── PasswordGeneratorLogger.kt │ │ │ │ │ └── StrengthLevelUpdater.kt │ │ │ ├── dialogs │ │ │ │ ├── fragment │ │ │ │ │ ├── SpaceRevokedDialog.kt │ │ │ │ │ ├── TeamRevokedDialogDisplayer.kt │ │ │ │ │ ├── WaiterDialogFragment.kt │ │ │ │ │ ├── braze │ │ │ │ │ │ └── BrazePopupDialogFragment.kt │ │ │ │ │ └── sharing │ │ │ │ │ │ ├── confirmation │ │ │ │ │ │ ├── SharingConfirmationDeclineGroupInvite.kt │ │ │ │ │ │ ├── SharingConfirmationDialogCancelInvite.kt │ │ │ │ │ │ ├── SharingConfirmationDialogDeclineUserGroupInvite.kt │ │ │ │ │ │ └── SharingConfirmationDialogRevoke.kt │ │ │ │ │ │ └── contextual │ │ │ │ │ │ ├── MenuUtil.kt │ │ │ │ │ │ ├── PopupMenuManageUserAccepted.kt │ │ │ │ │ │ └── PopupMenuManageUserPending.kt │ │ │ │ └── fragments │ │ │ │ │ ├── AbstractDialogFragment.kt │ │ │ │ │ └── NotificationDialogFragment.kt │ │ │ ├── drawable │ │ │ │ ├── CircleFirstLetterDrawable.java │ │ │ │ └── ContactDrawable.java │ │ │ ├── fab │ │ │ │ ├── FabDef.kt │ │ │ │ ├── FabPresenter.kt │ │ │ │ ├── FabViewProxy.kt │ │ │ │ ├── FabViewUtil.kt │ │ │ │ ├── VaultFabMenuItemNavigator.kt │ │ │ │ └── VaultFabViewProxy.kt │ │ │ ├── fragments │ │ │ │ ├── BottomSheetListDialogFragment.kt │ │ │ │ ├── PasswordGenerationCallback.kt │ │ │ │ ├── PasswordGeneratorFragment.kt │ │ │ │ └── StrengthBarAnimation.kt │ │ │ ├── menu │ │ │ │ ├── MenuScreen.kt │ │ │ │ ├── MenuState.kt │ │ │ │ ├── MenuViewModel.kt │ │ │ │ ├── domain │ │ │ │ │ ├── BuildMenuNavigationUseCase.kt │ │ │ │ │ ├── MenuConfigurationProvider.kt │ │ │ │ │ ├── MenuItemModel.kt │ │ │ │ │ └── TeamspaceIcon.kt │ │ │ │ └── view │ │ │ │ │ ├── footer │ │ │ │ │ └── MenuLockFooterItem.kt │ │ │ │ │ ├── header │ │ │ │ │ └── MenuHeaderItem.kt │ │ │ │ │ ├── item │ │ │ │ │ └── MenuItem.kt │ │ │ │ │ ├── separator │ │ │ │ │ ├── MenuSectionHeaderItem.kt │ │ │ │ │ └── MenuSeparatorItem.kt │ │ │ │ │ └── teamspace │ │ │ │ │ ├── MenuTeamspaceIcon.kt │ │ │ │ │ └── MenuTeamspaceItem.kt │ │ │ ├── premium │ │ │ │ └── inappbilling │ │ │ │ │ ├── BillingVerification.kt │ │ │ │ │ ├── InAppBillingDebugPreferenceImpl.kt │ │ │ │ │ └── RefreshPremiumAfterPurchase.kt │ │ │ ├── quickactions │ │ │ │ ├── QuickActionsBottomSheetFragment.kt │ │ │ │ ├── QuickActionsContract.kt │ │ │ │ ├── QuickActionsDataProvider.kt │ │ │ │ ├── QuickActionsLogger.kt │ │ │ │ ├── QuickActionsPresenter.kt │ │ │ │ └── QuickActionsViewProxy.kt │ │ │ ├── screens │ │ │ │ ├── fragments │ │ │ │ │ ├── SharingPolicyDataProviderImpl.kt │ │ │ │ │ ├── search │ │ │ │ │ │ ├── SearchFragment.kt │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ └── SearchItemWrapper.kt │ │ │ │ │ ├── sharing │ │ │ │ │ │ └── dialog │ │ │ │ │ │ │ ├── SharingPermissionInfoDialogFragment.java │ │ │ │ │ │ │ └── SharingPermissionSelectionDialogFragment.kt │ │ │ │ │ └── userdata │ │ │ │ │ │ ├── CredentialAddStep1Fragment.kt │ │ │ │ │ │ ├── DomainItem.kt │ │ │ │ │ │ └── sharing │ │ │ │ │ │ ├── SharingBaseViewProxy.kt │ │ │ │ │ │ ├── SharingContactItem.kt │ │ │ │ │ │ ├── SharingModelUtils.kt │ │ │ │ │ │ ├── SharingModels.kt │ │ │ │ │ │ ├── SharingRequestDialogUtils.kt │ │ │ │ │ │ ├── SharingRevokeAllMembers.kt │ │ │ │ │ │ ├── SharingRevokeMe.kt │ │ │ │ │ │ ├── center │ │ │ │ │ │ ├── SharingCenterFragment.kt │ │ │ │ │ │ ├── SharingCenterUserGroupItem.kt │ │ │ │ │ │ ├── SharingCenterUserItem.kt │ │ │ │ │ │ ├── SharingCenterViewModel.kt │ │ │ │ │ │ ├── SharingCenterViewModelContract.kt │ │ │ │ │ │ ├── SharingCenterViewProxy.kt │ │ │ │ │ │ ├── SharingDataProviderImpl.kt │ │ │ │ │ │ ├── SharingDataUpdateProvider.kt │ │ │ │ │ │ ├── SharingInvitationCollection.kt │ │ │ │ │ │ ├── SharingInvitationItem.kt │ │ │ │ │ │ ├── SharingInvitationUserGroup.kt │ │ │ │ │ │ ├── ui │ │ │ │ │ │ │ └── SharingCenterEmptyContent.kt │ │ │ │ │ │ └── view │ │ │ │ │ │ │ └── SharingCenterEmptyContentView.kt │ │ │ │ │ │ ├── group │ │ │ │ │ │ ├── SharedVaultItemWrapper.kt │ │ │ │ │ │ ├── UserGroupDataProvider.kt │ │ │ │ │ │ ├── UserGroupItemsFragment.kt │ │ │ │ │ │ ├── UserGroupItemsViewModel.kt │ │ │ │ │ │ ├── UserGroupItemsViewModelContract.kt │ │ │ │ │ │ ├── UserGroupItemsViewProxy.kt │ │ │ │ │ │ ├── UserGroupMemberItem.kt │ │ │ │ │ │ ├── UserGroupMembersFragment.kt │ │ │ │ │ │ ├── UserGroupMembersViewModel.kt │ │ │ │ │ │ ├── UserGroupMembersViewModelContract.kt │ │ │ │ │ │ ├── UserGroupMembersViewProxy.kt │ │ │ │ │ │ └── UserGroupTabFragment.kt │ │ │ │ │ │ ├── items │ │ │ │ │ │ ├── SharingItemsDataProvider.kt │ │ │ │ │ │ ├── SharingItemsForUserFragment.kt │ │ │ │ │ │ ├── SharingItemsForUserViewModel.kt │ │ │ │ │ │ ├── SharingItemsForUserViewModelContract.kt │ │ │ │ │ │ └── SharingItemsForUserViewProxy.kt │ │ │ │ │ │ ├── itemselection │ │ │ │ │ │ ├── NewShareItemSelectionFragment.kt │ │ │ │ │ │ └── old │ │ │ │ │ │ │ ├── FirstLetterHeaderProvider.kt │ │ │ │ │ │ │ ├── ItemWrapperSelectable.kt │ │ │ │ │ │ │ ├── NewShareItemUIState.kt │ │ │ │ │ │ │ ├── NewShareItemViewModel.kt │ │ │ │ │ │ │ ├── SharingItemSelectionTabFragment.kt │ │ │ │ │ │ │ ├── SharingItemSelectionTabViewProxy.kt │ │ │ │ │ │ │ ├── SharingNewShareItemFragment.kt │ │ │ │ │ │ │ └── SharingNewShareItemViewProxy.kt │ │ │ │ │ │ └── users │ │ │ │ │ │ ├── SharedContactUser.kt │ │ │ │ │ │ ├── SharedContactUserGroup.kt │ │ │ │ │ │ ├── SharingUserForItemsFragment.kt │ │ │ │ │ │ ├── SharingUserForItemsViewModel.kt │ │ │ │ │ │ ├── SharingUsersDataProvider.kt │ │ │ │ │ │ ├── SharingUsersForItemViewModelContract.kt │ │ │ │ │ │ └── SharingUsersForItemViewProxy.kt │ │ │ │ ├── settings │ │ │ │ │ ├── DeviceFragmentUtils.kt │ │ │ │ │ ├── DevicesActivity.kt │ │ │ │ │ ├── DevicesFragment.kt │ │ │ │ │ ├── LicensesActivity.kt │ │ │ │ │ ├── UserSettingsLogRepository.kt │ │ │ │ │ ├── item │ │ │ │ │ │ └── SensibleSettingsClickHelper.kt │ │ │ │ │ └── licences │ │ │ │ │ │ ├── License.kt │ │ │ │ │ │ └── LicensesScreen.kt │ │ │ │ └── sharing │ │ │ │ │ ├── NewSharePeopleDataProvider.kt │ │ │ │ │ ├── NewSharePeopleViewModel.kt │ │ │ │ │ ├── NewSharePeopleViewModelContract.kt │ │ │ │ │ ├── NewSharePeopleViewProxy.kt │ │ │ │ │ └── SharingNewSharePeopleFragment.kt │ │ │ ├── util │ │ │ │ ├── DataLoaderForUi.kt │ │ │ │ ├── DrawerLayoutUtils.kt │ │ │ │ ├── FinishingActivity.kt │ │ │ │ ├── PasswordGeneratorWrapperImpl.kt │ │ │ │ └── RemoteAvatarDownloader.java │ │ │ └── widgets │ │ │ │ ├── BubbleLinearLayout.kt │ │ │ │ ├── NotificatorImpl.kt │ │ │ │ ├── TooltipPointShape.kt │ │ │ │ ├── lists │ │ │ │ └── BottomSheetListView.kt │ │ │ │ └── view │ │ │ │ ├── CheckableLinearLayout.java │ │ │ │ ├── ImportMethodItem.kt │ │ │ │ ├── MainDrawerToggle.kt │ │ │ │ ├── RecyclerViewFloatingActionButton.java │ │ │ │ ├── SharingContactAutocompleteTextView.kt │ │ │ │ ├── chips │ │ │ │ └── SharingContactChipsView.java │ │ │ │ └── empty │ │ │ │ ├── SharingItemSelectionEmptyScreen.kt │ │ │ │ ├── UserGroupItemListEmptyScreen.java │ │ │ │ └── UserGroupMemberListEmptyScreen.java │ │ │ ├── update │ │ │ └── AppUpdateInstaller.kt │ │ │ ├── urldomain │ │ │ └── CleanupLegacyUrlDomainIconDatabase.kt │ │ │ ├── util │ │ │ ├── AppShortcutsUtil.kt │ │ │ ├── CheckedDelegate.kt │ │ │ ├── CursorUtils.kt │ │ │ ├── DashlaneGlideModule.java │ │ │ ├── DeviceListManager.kt │ │ │ ├── GravatarFetcher.java │ │ │ ├── IntentFactory.kt │ │ │ ├── ResourcesUtils.kt │ │ │ ├── TextUtil.java │ │ │ ├── UiConstants.java │ │ │ ├── ViewTypeUtils.kt │ │ │ ├── ViewUtils.kt │ │ │ ├── clipboard │ │ │ │ └── VaultItemCopyModule.kt │ │ │ ├── log │ │ │ │ ├── FirstLaunchDetector.kt │ │ │ │ ├── LaunchLogger.kt │ │ │ │ └── UserSupportFileLoggerApplicationCreated.kt │ │ │ └── strictmode │ │ │ │ └── StrictModeUtil.kt │ │ │ ├── vault │ │ │ ├── CollectionsReportProvider.kt │ │ │ ├── VaultItemLogClickListener.kt │ │ │ ├── VaultItemLogCopyListener.kt │ │ │ ├── VaultReportLogger.kt │ │ │ └── util │ │ │ │ ├── SecurityBreachUtil.kt │ │ │ │ └── VaultItemComparatorUtil.kt │ │ │ └── vpn │ │ │ └── thirdparty │ │ │ └── VpnThirdPartyFragment.kt │ └── res │ │ ├── anim │ │ ├── fade_slide_in_bottom.xml │ │ ├── fade_slide_out_top.xml │ │ ├── fadein_activity.xml │ │ ├── fadeout_activity.xml │ │ ├── grow_from_bottom.xml │ │ └── shrink_from_top.xml │ │ ├── color-night │ │ └── item_highlighted_background_tint.xml │ │ ├── color │ │ ├── edittext_input_provider_item_text_color.xml │ │ └── item_highlighted_background_tint.xml │ │ ├── drawable-hdpi │ │ └── sharing_contact_bubble.9.png │ │ ├── drawable-mdpi │ │ └── sharing_contact_bubble.9.png │ │ ├── drawable-xhdpi │ │ └── sharing_contact_bubble.9.png │ │ ├── drawable-xxhdpi │ │ └── sharing_contact_bubble.9.png │ │ ├── drawable │ │ ├── action_bar_menu_alert.xml │ │ ├── action_bar_menu_alert_with_dot.xml │ │ ├── action_bar_menu_attach_file.xml │ │ ├── action_bar_menu_delete.xml │ │ ├── autologin_intro_icon.xml │ │ ├── background_circle_error.xml │ │ ├── background_device_item.xml │ │ ├── background_device_item_selected.xml │ │ ├── background_dwm_alert_solved.xml │ │ ├── background_dwm_selected.xml │ │ ├── background_linked_app_empty_state.xml │ │ ├── bg_card.xml │ │ ├── bg_card_bottom_margin_8dp.xml │ │ ├── bottom_sheet_round_corner.xml │ │ ├── close_cross.xml │ │ ├── dark_web_email_monitored_indicator.xml │ │ ├── edit.xml │ │ ├── fab_menu_item_text_background.xml │ │ ├── fab_plus_icon_selector.xml │ │ ├── hidden_impala.xml │ │ ├── ic_action_item_account_recovery.xml │ │ ├── ic_action_item_auto_fill.xml │ │ ├── ic_action_item_dm_alert.xml │ │ ├── ic_action_item_fingerprint.xml │ │ ├── ic_action_item_pin.xml │ │ ├── ic_action_item_premium_related.xml │ │ ├── ic_action_item_security_alert.xml │ │ ├── ic_action_item_sharing_invitation.xml │ │ ├── ic_action_item_zero_password.xml │ │ ├── ic_action_open.xml │ │ ├── ic_add.xml │ │ ├── ic_arrow_up_outlined.xml │ │ ├── ic_attachment_selected.xml │ │ ├── ic_dwm_item_selected.xml │ │ ├── ic_empty_breaches.xml │ │ ├── ic_empty_breaches_email_pending.xml │ │ ├── ic_empty_breaches_resolved.xml │ │ ├── ic_empty_password_analysis.xml │ │ ├── ic_empty_password_analysis_ignored.xml │ │ ├── ic_import_methods_competitor.xml │ │ ├── ic_import_methods_csv.xml │ │ ├── ic_import_methods_dashlane_secure_archive.xml │ │ ├── ic_import_methods_m2d.xml │ │ ├── ic_item_action_copy.xml │ │ ├── ic_menu_dashlane.xml │ │ ├── ic_mobile.xml │ │ ├── ic_onboarding_application_lock.xml │ │ ├── ic_purchase_check_error.xml │ │ ├── ic_purchase_check_success.xml │ │ ├── ic_sharing_user_group.xml │ │ ├── ic_trash.xml │ │ ├── progress_circular.xml │ │ ├── save.xml │ │ └── sharing_send.xml │ │ ├── layout-land │ │ └── include_dialog_image_text.xml │ │ ├── layout │ │ ├── activity_attachment_list.xml │ │ ├── activity_autofill_demo.xml │ │ ├── activity_dashlane_wrapper.xml │ │ ├── activity_debug_settings.xml │ │ ├── activity_home_activity_layout.xml │ │ ├── activity_item_edit_view.xml │ │ ├── activity_purchase_checking.xml │ │ ├── attachment_list_item.xml │ │ ├── autocomplete_textview_websites_adapter.xml │ │ ├── bottom_sheet_dialog.xml │ │ ├── bottom_sheet_list_dialog_fragment.xml │ │ ├── bottom_sheet_quick_actions.xml │ │ ├── chips_text_sharing_contact.xml │ │ ├── chips_text_sharing_contact_layout.xml │ │ ├── dark_web_emails_expandable_card.xml │ │ ├── dialog_export_business_data_restriction.xml │ │ ├── dialog_security_breach_alert.xml │ │ ├── edittext_input_provider_item.xml │ │ ├── expandable_import_methods.xml │ │ ├── fab_menu_list_ids.xml │ │ ├── fab_menu_list_payments.xml │ │ ├── fab_menu_list_personal_info.xml │ │ ├── fab_menu_list_recent_item.xml │ │ ├── fragment_actionitem_center.xml │ │ ├── fragment_breach_alert_detail.xml │ │ ├── fragment_checklist.xml │ │ ├── fragment_create_credential_step1.xml │ │ ├── fragment_darkweb_monitoring.xml │ │ ├── fragment_data_list.xml │ │ ├── fragment_devices_list.xml │ │ ├── fragment_dialog_password_generator.xml │ │ ├── fragment_dialog_sharing_permissions_info.xml │ │ ├── fragment_linked_services.xml │ │ ├── fragment_notification_center_details.xml │ │ ├── fragment_password_generator.xml │ │ ├── fragment_purchase_checking_loading.xml │ │ ├── fragment_purchase_checking_result.xml │ │ ├── fragment_search.xml │ │ ├── fragment_sharing_center_data_list.xml │ │ ├── fragment_sharing_message.xml │ │ ├── fragment_tablayout_viewpager2.xml │ │ ├── fragment_tablayout_viewpager2_with_fab.xml │ │ ├── fragment_vault.xml │ │ ├── header_dark_web_monitored_emails.xml │ │ ├── header_import_methods.xml │ │ ├── hidden_impala.xml │ │ ├── include_dialog_image_text.xml │ │ ├── include_fab_menu_item.xml │ │ ├── include_fragment_password_generator_header.xml │ │ ├── include_import_method_item.xml │ │ ├── item_action_bottom_sheet_dialog.xml │ │ ├── item_actionitem.xml │ │ ├── item_actionitem_header.xml │ │ ├── item_dark_web_breach.xml │ │ ├── item_dark_web_email.xml │ │ ├── item_dark_web_email_placeholder.xml │ │ ├── item_dark_web_email_recycler.xml │ │ ├── item_dark_web_inactive.xml │ │ ├── item_dark_web_loading.xml │ │ ├── item_dark_web_recycler.xml │ │ ├── item_device.xml │ │ ├── item_empty_actionitem.xml │ │ ├── item_getstarted.xml │ │ ├── item_linked_apps.xml │ │ ├── item_linked_services_header.xml │ │ ├── item_linked_websites.xml │ │ ├── item_linked_websites_add_button.xml │ │ ├── item_searcheable_setting.xml │ │ ├── linked_app_fragment.xml │ │ ├── list_item_content_sharing_by_user.xml │ │ ├── list_item_content_sharing_by_user_tablet.xml │ │ ├── list_item_sharing_contact_chips.xml │ │ ├── list_social_media_footer.xml │ │ ├── popup_token_view.xml │ │ ├── progress_dialog.xml │ │ ├── sharing_pending_invitation_layout.xml │ │ ├── sharing_pending_invitation_layout_tablet.xml │ │ ├── simple_frame_layout.xml │ │ ├── simple_list_item_single_choice.xml │ │ ├── subview_with_action.xml │ │ └── window_lottie_confetti.xml │ │ ├── menu │ │ ├── collection_detail_menu.xml │ │ ├── collection_list_menu.xml │ │ ├── delete_menu.xml │ │ ├── fragment_vault_menu.xml │ │ ├── main_menu.xml │ │ ├── save_menu.xml │ │ ├── settings_menu.xml │ │ ├── sharing_action_admin_menu.xml │ │ ├── sharing_action_user_pending_menu.xml │ │ └── sharing_share_item_send.xml │ │ ├── navigation │ │ ├── drawer_navigation.xml │ │ └── purchase_checking_navigation.xml │ │ ├── raw │ │ ├── keep_instant_app.xml │ │ ├── lottie_checklist_completion_confetti.json │ │ └── lottie_trial_upgrade_recommendation.json │ │ ├── values-sw600dp-land │ │ └── add_credential_new_account_v2_dimen.xml │ │ ├── values-sw600dp │ │ ├── add_credential_new_account_v2_dimen.xml │ │ ├── dimens_fab_menu.xml │ │ ├── dimens_floating_button.xml │ │ └── dimens_fragment_devices_grid.xml │ │ ├── values-sw720dp-land │ │ └── add_credential_new_account_v2_dimen.xml │ │ ├── values-sw720dp │ │ ├── add_credential_new_account_v2_dimen.xml │ │ └── resources_forwarding_sharing_center_lists.xml │ │ ├── values-w480dp │ │ └── resources_forwarding_sharing_center_lists.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ ├── values │ │ ├── add_credential_new_account_v2_dimen.xml │ │ ├── app_capabilities.xml │ │ ├── arc_buttons.xml │ │ ├── attrs.xml │ │ ├── attrs_import_method_item.xml │ │ ├── attrs_logo_behavior.xml │ │ ├── badges.xml │ │ ├── bools.xml │ │ ├── createscreen_keys.xml │ │ ├── dimens_botton_sheet_action.xml │ │ ├── dimens_floating_button.xml │ │ ├── dimens_fragment_devices_grid.xml │ │ ├── dimens_fragment_settings.xml │ │ ├── dimens_import_core.xml │ │ ├── dimens_sharing_center_lists.xml │ │ ├── floating_label_ids.xml │ │ ├── home_colors.xml │ │ ├── home_dimens.xml │ │ ├── ids.xml │ │ ├── ids_import_browser.xml │ │ ├── ids_item_subview.xml │ │ ├── keyboard_res.xml │ │ ├── notification.xml │ │ ├── onboarding_style.xml │ │ ├── password_generator_settings.xml │ │ ├── plurals.xml │ │ ├── resources_forwarding_sharing_center_lists.xml │ │ ├── save_credentials.xml │ │ ├── settings_keys.xml │ │ ├── sharing_colors.xml │ │ ├── sharing_ids.xml │ │ ├── string_autofill_onboarding.xml │ │ ├── string_invalidated_biometric_prompt.xml │ │ ├── strings.xml │ │ ├── strings_account_summary.xml │ │ ├── strings_actionitem_center.xml │ │ ├── strings_add_first_password.xml │ │ ├── strings_app_update.xml │ │ ├── strings_autologin_intro.xml │ │ ├── strings_collection.xml │ │ ├── strings_collection_limiter.xml │ │ ├── strings_darkweb_breaches.xml │ │ ├── strings_faq_add_first_password.xml │ │ ├── strings_getstarted.xml │ │ ├── strings_hidden_impala.xml │ │ ├── strings_keyboard.xml │ │ ├── strings_license.xml │ │ ├── strings_linked_services.xml │ │ ├── strings_login.xml │ │ ├── strings_login_passwordless.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notification.xml │ │ ├── strings_onboarding_application_lock.xml │ │ ├── strings_password_history.xml │ │ ├── strings_securefile.xml │ │ ├── strings_settings.xml │ │ ├── strings_smartling.xml │ │ ├── strings_surveys.xml │ │ ├── strings_trial_awareness_dialog.xml │ │ ├── strings_vault.xml │ │ ├── strings_vault_announcement.xml │ │ ├── tag_keys.xml │ │ ├── themes_login.xml │ │ ├── themes_splash_screen.xml │ │ └── websites_suggestion.xml │ │ └── xml │ │ ├── authenticator.xml │ │ ├── file_provider_paths.xml │ │ └── locales_config.xml │ └── release │ └── AndroidManifest.xml ├── baselineprofile ├── .gitignore ├── README.md └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── dashlane │ └── baselineprofile │ ├── BaselineProfileGenerator.kt │ ├── BaselineTestHelper.kt │ └── StartupBenchmarks.kt └── modules ├── common ├── base-ui │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ ├── help │ │ │ ├── HelpCenterCoordinator.kt │ │ │ └── HelpCenterLink.kt │ │ │ ├── login │ │ │ └── CodeInputViewHelper.kt │ │ │ ├── ui │ │ │ ├── BottomSheetUtils.kt │ │ │ ├── ExpandedBottomSheetDialogFragment.kt │ │ │ ├── M2xIntentFactory.kt │ │ │ ├── PostAccountCreationCoordinator.kt │ │ │ ├── SwipeRefreshLayoutUtils.kt │ │ │ ├── VaultItemImageHelper.kt │ │ │ ├── action │ │ │ │ └── Action.kt │ │ │ ├── activities │ │ │ │ ├── MenuContainer.kt │ │ │ │ └── intro │ │ │ │ │ ├── IntroButtonBarLayout.kt │ │ │ │ │ └── IntroScreen.kt │ │ │ ├── adapter │ │ │ │ ├── ItemListContext.kt │ │ │ │ ├── ItemListContextProvider.kt │ │ │ │ ├── ItemListContextUtil.kt │ │ │ │ └── util │ │ │ │ │ └── SectionUtil.kt │ │ │ ├── drawable │ │ │ │ ├── BadgeDrawerArrowDrawable.java │ │ │ │ ├── CircleDrawable.kt │ │ │ │ ├── CountDownDrawable.java │ │ │ │ └── PlaceholderForTextDrawableFactory.kt │ │ │ ├── fragments │ │ │ │ └── BaseUiFragment.kt │ │ │ ├── model │ │ │ │ ├── TextResource.kt │ │ │ │ └── TextResourceUtil.kt │ │ │ ├── util │ │ │ │ └── DialogHelper.kt │ │ │ └── widgets │ │ │ │ ├── compose │ │ │ │ ├── DashlaneLoading.kt │ │ │ │ ├── DashlaneSyncProgress.kt │ │ │ │ ├── GenericInfoContent.kt │ │ │ │ ├── OutlinedTeamspaceIcon.kt │ │ │ │ └── PassphraseLayout.kt │ │ │ │ └── view │ │ │ │ ├── CategoryChip.kt │ │ │ │ ├── ChecklistGroup.kt │ │ │ │ ├── ExpandableCardView.kt │ │ │ │ ├── GetStartedStepView.kt │ │ │ │ ├── HtmlTextView.kt │ │ │ │ ├── Infobox.kt │ │ │ │ ├── ProgressBarUtils.kt │ │ │ │ ├── StepInfoBox.kt │ │ │ │ └── empty │ │ │ │ ├── EmptyScreenConfiguration.java │ │ │ │ └── EmptyScreenViewProvider.java │ │ │ └── util │ │ │ ├── AccessibilityUtils.kt │ │ │ ├── ColorUtils.kt │ │ │ ├── ConstraintLayoutUtils.kt │ │ │ ├── CustomTabsUtil.kt │ │ │ ├── DrawableUtils.kt │ │ │ ├── ProgressBarUtil.kt │ │ │ ├── SnackbarUtils.kt │ │ │ ├── TextColorTransition.kt │ │ │ ├── TextInputAutoCompleteTextView.kt │ │ │ ├── TextInputLayoutUtils.kt │ │ │ ├── Toaster.kt │ │ │ ├── ToasterImpl.kt │ │ │ ├── ViewProxyUtils.kt │ │ │ ├── animation │ │ │ ├── FadeInOutUtil.kt │ │ │ └── ShakeAnimation.kt │ │ │ ├── colorpassword │ │ │ ├── CharacterColor.kt │ │ │ └── ColorTextWatcher.kt │ │ │ ├── compose │ │ │ ├── BackPressedDispatcherBridge.kt │ │ │ └── Navigation.kt │ │ │ ├── font │ │ │ └── WalsheimProBold.kt │ │ │ ├── graphics │ │ │ ├── BackgroundColorDrawable.kt │ │ │ ├── TextDrawable.java │ │ │ ├── TextFitDrawable.kt │ │ │ └── ViewAnimatorPager.kt │ │ │ └── notification │ │ │ ├── DashlaneNotificationBuilder.kt │ │ │ ├── NotificationDsl.kt │ │ │ └── NotificationHelper.kt │ │ └── res │ │ ├── anim │ │ ├── fade_slide_in_left.xml │ │ ├── fade_slide_in_right.xml │ │ ├── fade_slide_out_left.xml │ │ ├── fade_slide_out_right.xml │ │ ├── fadeout_fragment.xml │ │ ├── no_animation.xml │ │ ├── slide_in_bottom.xml │ │ ├── slide_out_bottom.xml │ │ ├── slide_to_left.xml │ │ └── slide_to_right.xml │ │ ├── color │ │ ├── button_secondary_background_tint.xml │ │ ├── button_secondary_ripple_color.xml │ │ ├── button_secondary_text_color.xml │ │ ├── on_background_alpha_12.xml │ │ ├── on_surface_alpha_12.xml │ │ ├── primary_disabled.xml │ │ ├── secondary_alpha_20.xml │ │ ├── step_infobox_background_tint.xml │ │ ├── text_button_background_tint.xml │ │ ├── text_button_ripple_color.xml │ │ └── text_button_text_color.xml │ │ ├── drawable │ │ ├── background_circle.xml │ │ ├── background_list_round_borders.xml │ │ ├── bottom_sheet_half_round_rectangle.xml │ │ ├── bottom_sheet_top_rounded_background.xml │ │ ├── code_input_character_background.xml │ │ ├── divider_empty_spacing_normal.xml │ │ ├── divider_empty_spacing_small.xml │ │ ├── fab_plus_icon.xml │ │ ├── fastscroll_line.xml │ │ ├── fastscroll_line_selector.xml │ │ ├── fastscroll_thumb.xml │ │ ├── fastscroll_thumb_pressed.xml │ │ ├── fastscroll_thumb_selector.xml │ │ ├── handle_round_rectangle_shape.xml │ │ ├── ic_arrow_collapse.xml │ │ ├── ic_attachment.xml │ │ ├── ic_attachment_icon_list_default.xml │ │ ├── ic_check.xml │ │ ├── ic_checklist_check.xml │ │ ├── ic_empty_actionitem_center.xml │ │ ├── ic_empty_password.xml │ │ ├── ic_empty_secure_note.xml │ │ ├── ic_empty_sharing.xml │ │ ├── ic_fab_menu_address.xml │ │ ├── ic_fab_menu_bank.xml │ │ ├── ic_fab_menu_company.xml │ │ ├── ic_fab_menu_driver.xml │ │ ├── ic_fab_menu_email.xml │ │ ├── ic_fab_menu_id.xml │ │ ├── ic_fab_menu_name.xml │ │ ├── ic_fab_menu_passport.xml │ │ ├── ic_fab_menu_passwords.xml │ │ ├── ic_fab_menu_payments.xml │ │ ├── ic_fab_menu_phone.xml │ │ ├── ic_fab_menu_secure_notes.xml │ │ ├── ic_fab_menu_ssn.xml │ │ ├── ic_fab_menu_tax.xml │ │ ├── ic_fab_menu_website.xml │ │ ├── ic_info_24.xml │ │ ├── ic_info_circle_outlined.xml │ │ ├── ic_item_action_more.xml │ │ ├── ic_launcher_browser_foreground.xml │ │ ├── ic_list_secure_note.xml │ │ ├── ic_locked.xml │ │ ├── ic_modal_done.xml │ │ ├── ic_notification_large_icon.xml │ │ ├── ic_notification_small_icon.xml │ │ ├── ic_password_generator_regenerate.xml │ │ ├── ic_search.xml │ │ ├── ic_search_no_result_outlined.xml │ │ ├── ic_share.xml │ │ ├── ic_shared.xml │ │ ├── ic_splash_screen.xml │ │ ├── ic_up_indicator_close.xml │ │ ├── ic_widget_infobox.xml │ │ ├── ico_list_address.xml │ │ ├── ico_list_bank_account.xml │ │ ├── ico_list_card.xml │ │ ├── ico_list_card_on_white.xml │ │ ├── ico_list_company.xml │ │ ├── ico_list_driving_licence.xml │ │ ├── ico_list_id_card.xml │ │ ├── ico_list_mail.xml │ │ ├── ico_list_name.xml │ │ ├── ico_list_passport.xml │ │ ├── ico_list_paypal.xml │ │ ├── ico_list_phone.xml │ │ ├── ico_list_social_security.xml │ │ ├── ico_list_tax_number.xml │ │ ├── ico_list_website.xml │ │ ├── rounded_rectangle_background.xml │ │ ├── splash_logo.xml │ │ ├── tab_default_dot.xml │ │ ├── tab_selected_dot.xml │ │ ├── tab_selector.xml │ │ └── toast_background.xml │ │ ├── layout-w600dp │ │ └── toast_layout.xml │ │ ├── layout │ │ ├── autocomplete_textview_adapter.xml │ │ ├── empty_screen_generic.xml │ │ ├── expandablecardview.xml │ │ ├── getstarted_step.xml │ │ ├── include_intro_link.xml │ │ ├── item_dataidentifier.xml │ │ ├── item_dataidentifier_content.xml │ │ ├── item_header_big.xml │ │ ├── item_separator.xml │ │ ├── toast_layout.xml │ │ ├── widget_infobox.xml │ │ └── widget_step_infobox.xml │ │ ├── raw │ │ ├── lottie_checklist_m2d.json │ │ ├── lottie_keyboard_autofill_demo.json │ │ ├── lottie_loading_determinate.json │ │ ├── lottie_loading_fail.json │ │ ├── lottie_loading_indeterminate.json │ │ ├── lottie_loading_success.json │ │ ├── lottie_sync_progress.json │ │ ├── lottie_welcome_autofill.json │ │ ├── lottie_welcome_dwm.json │ │ ├── lottie_welcome_vault.json │ │ └── lottie_welcome_vault_background.json │ │ ├── transition │ │ └── slide_out_bottom.xml │ │ ├── values-sw600dp │ │ └── dimens_list_credentials.xml │ │ └── values │ │ ├── attrs.xml │ │ ├── dimens.xml │ │ ├── dimens_action_bar.xml │ │ ├── dimens_item.xml │ │ ├── dimens_list_credentials.xml │ │ ├── ids.xml │ │ └── strings.xml ├── baseactivity │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ ├── ui │ │ ├── AbstractActivityLifecycleListener.kt │ │ ├── ActivityLifecycleListener.kt │ │ ├── AutoFillDisabler.kt │ │ ├── ScreenOverLockProtectionView.kt │ │ ├── ScreenshotPolicy.kt │ │ ├── activities │ │ │ └── DashlaneActivity.kt │ │ ├── dagger │ │ │ └── UiPartEntryPoint.kt │ │ ├── fragments │ │ │ └── BaseDialogFragment.kt │ │ └── util │ │ │ ├── ActionBarUtil.java │ │ │ ├── ActivityListenerWindowCallback.kt │ │ │ └── DelegateWindowCallback.kt │ │ └── util │ │ └── PageViewUtil.kt ├── crypto-keys │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── crypto │ │ └── keys │ │ ├── AppKey.kt │ │ ├── LocalKey.kt │ │ └── VaultKey.kt ├── data │ └── login │ │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── data │ │ └── login │ │ ├── AuthenticationSecondFactor.kt │ │ ├── CipheredBackupToken.kt │ │ ├── Device.kt │ │ ├── LoginInfo.kt │ │ ├── LoginMode.kt │ │ ├── MigrationToSsoMemberInfo.kt │ │ ├── RegisteredUserDevice.kt │ │ ├── SecurityFeature.kt │ │ ├── Settings.kt │ │ ├── SsoInfo.kt │ │ ├── TermsOfService.kt │ │ └── UnauthenticatedUser.kt ├── lock │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── lock │ │ ├── LockEvent.kt │ │ ├── LockHelper.kt │ │ ├── LockNavigationHelper.kt │ │ ├── LockPass.kt │ │ ├── LockSelfChecker.kt │ │ ├── LockSetting.kt │ │ ├── LockTimeManager.kt │ │ ├── LockTypeManager.kt │ │ ├── LockWaiter.kt │ │ └── LockWatcher.kt ├── mvvm │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── mvvm │ │ ├── State.kt │ │ └── ViewStateFlow.kt ├── navigation │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── navigation │ │ ├── LoginIntentFactory.kt │ │ ├── NavigationConstants.kt │ │ ├── NavigationHelper.kt │ │ ├── NavigationUriBuilder.kt │ │ ├── NavigationUtils.kt │ │ ├── Navigator.kt │ │ ├── NotificationIntentUtils.kt │ │ ├── SchemeUtils.kt │ │ └── paywall │ │ └── PaywallIntroType.kt ├── network │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── network │ │ │ ├── NitroUrlOverride.kt │ │ │ ├── ServerUrlOverride.kt │ │ │ ├── inject │ │ │ ├── ConnectivityCheckModule.kt │ │ │ ├── DashlaneServicesModule.kt │ │ │ ├── HttpModule.kt │ │ │ ├── RetrofitModule.kt │ │ │ └── UrlModule.kt │ │ │ ├── tools │ │ │ ├── CloudflareHeaderInterceptor.kt │ │ │ └── MoreDetailedExceptionRequestInterceptor.kt │ │ │ └── webservices │ │ │ ├── DashlaneUrls.kt │ │ │ ├── DownloadFileService.kt │ │ │ └── UploadFileService.kt │ │ └── res │ │ └── values │ │ └── network.xml ├── permission │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── permission │ │ ├── PermissionsManager.kt │ │ └── PermissionsManagerImpl.kt ├── sync │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── sync │ │ ├── DataIdentifierExtraDataWrapper.kt │ │ ├── DataSync.kt │ │ ├── SyncBindingModule.kt │ │ ├── cryptochanger │ │ ├── RemoteKeyIdGenerator.kt │ │ ├── SyncCryptoChanger.kt │ │ ├── SyncCryptoChangerException.kt │ │ └── SyncCryptoChangerImpl.kt │ │ ├── domain │ │ ├── SupportedTransactionsFilter.kt │ │ ├── SyncCryptographyException.kt │ │ ├── SyncTransactionException.kt │ │ ├── Transaction.kt │ │ ├── TransactionCipher.kt │ │ ├── TransactionCipherImpl.kt │ │ └── TransactionUtil.kt │ │ ├── merger │ │ ├── SyncConflict.kt │ │ ├── SyncMerger.kt │ │ └── SyncMergerImpl.kt │ │ ├── repositories │ │ ├── ChronologicalSync.kt │ │ ├── ChronologicalSyncImpl.kt │ │ ├── IncomingTransactionsHelper.kt │ │ ├── ServerCredentials.kt │ │ ├── SharingSyncHelper.kt │ │ ├── SyncDeduplication.kt │ │ ├── SyncDeduplicationImpl.kt │ │ ├── SyncProgress.kt │ │ ├── SyncRepository.kt │ │ ├── SyncRepositoryImpl.kt │ │ └── strategies │ │ │ ├── SyncServices.kt │ │ │ └── SyncServicesImpl.kt │ │ ├── sharing │ │ └── SharingSync.kt │ │ ├── treat │ │ ├── SyncSummaryItem.kt │ │ ├── TransactionFailureRegistry.kt │ │ ├── TreatProblemManager.kt │ │ └── TreatProblemManagerImpl.kt │ │ ├── util │ │ ├── MapAsync.kt │ │ ├── SyncLogs.kt │ │ └── SyncLogsImpl.kt │ │ ├── vault │ │ ├── SyncObjectDescriptor.kt │ │ └── SyncVault.kt │ │ └── xml │ │ ├── MergeListStrategy.kt │ │ └── XmlDataMerge.kt ├── test-fixtures │ └── vault │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── testfixtures │ │ └── vault │ │ └── SummaryObjectFixture.kt ├── ui-legacy │ └── recyclerview │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── ui │ │ │ └── legacy │ │ │ └── recyclerview │ │ │ ├── DashlaneRecyclerAdapter.java │ │ │ ├── HeaderItem.java │ │ │ ├── MultiColumnRecyclerView.java │ │ │ └── util │ │ │ ├── AdapterViewTypeProviderDiffCallback.java │ │ │ ├── DashlaneRecyclerAdapterUtils.kt │ │ │ └── DiffUtilComparator.kt │ │ └── res │ │ ├── layout │ │ └── item_header.xml │ │ └── values │ │ └── dimens_item.xml ├── ui │ ├── common-compose-components │ │ └── src │ │ │ └── main │ │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── dashlane │ │ │ │ └── ui │ │ │ │ └── common │ │ │ │ └── compose │ │ │ │ ├── components │ │ │ │ ├── BiometricLockPrompt.kt │ │ │ │ ├── CheckboxWithLabel.kt │ │ │ │ ├── ContactAdminSsoErrorDialog.kt │ │ │ │ ├── ContentStepper.kt │ │ │ │ ├── CreatePasswordContent.kt │ │ │ │ ├── DescriptionItemContent.kt │ │ │ │ ├── EmailTextField.kt │ │ │ │ ├── EmptyContent.kt │ │ │ │ ├── ExpandableFaqItem.kt │ │ │ │ ├── FaqItem.kt │ │ │ │ ├── GenericErrorContent.kt │ │ │ │ ├── IntroScreenContent.kt │ │ │ │ ├── LoadingScreen.kt │ │ │ │ ├── LoginSettingsContent.kt │ │ │ │ ├── MasterPasswordTipsContent.kt │ │ │ │ ├── PullToRefreshBox.kt │ │ │ │ ├── ReminderMasterPasswordDialog.kt │ │ │ │ ├── SettingField.kt │ │ │ │ ├── SimpleStateContent.kt │ │ │ │ ├── StatusBarBackground.kt │ │ │ │ ├── SystemLockSetupDialog.kt │ │ │ │ ├── TermsAndConditionsDescription.kt │ │ │ │ ├── TopBarScaffold.kt │ │ │ │ ├── TopBarState.kt │ │ │ │ ├── WarningContent.kt │ │ │ │ ├── banner │ │ │ │ │ └── VaultBanner.kt │ │ │ │ ├── basescreen │ │ │ │ │ ├── AppBarScreenWrapper.kt │ │ │ │ │ ├── BoardingScreen.kt │ │ │ │ │ ├── ModifierExt.kt │ │ │ │ │ └── NoAppBarScreenWrapper.kt │ │ │ │ ├── components │ │ │ │ │ └── DashlaneTopAppBar.kt │ │ │ │ ├── fab │ │ │ │ │ ├── FabItem.kt │ │ │ │ │ └── MultiActionsFloatingActionButton.kt │ │ │ │ ├── pincode │ │ │ │ │ ├── PinKeyboard.kt │ │ │ │ │ ├── PinTextField.kt │ │ │ │ │ └── PinTextFieldCharacter.kt │ │ │ │ ├── screentemplate │ │ │ │ │ ├── BoxColumn.kt │ │ │ │ │ └── FillAndCenterContent.kt │ │ │ │ └── socialmedia │ │ │ │ │ ├── DashlaneSocialMedia.kt │ │ │ │ │ └── SocialMediaBar.kt │ │ │ │ └── utils │ │ │ │ ├── PasswordFieldActions.kt │ │ │ │ └── RememberLargeScreen.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ └── backspace.xml │ │ │ └── values │ │ │ ├── accessibility_strings.xml │ │ │ ├── string_dashlane_social_media.xml │ │ │ ├── strings.xml │ │ │ ├── strings_common_change_master_password.xml │ │ │ ├── strings_common_create_account.xml │ │ │ ├── strings_common_login.xml │ │ │ ├── strings_end_of_life.xml │ │ │ └── strings_terms_and_conditions.xml │ ├── illustration-resources │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ └── drawable │ │ │ ├── ic_biometric_recovery_intro.xml │ │ │ ├── ic_sync_multi_device.xml │ │ │ └── img_m2w_url.xml │ ├── theme-legacy │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ ├── color │ │ │ ├── button_primary_background_tint.xml │ │ │ ├── button_primary_ripple_color.xml │ │ │ ├── button_primary_text_color.xml │ │ │ ├── button_ternary_background_tint.xml │ │ │ ├── button_ternary_ripple_color.xml │ │ │ ├── button_ternary_text_color.xml │ │ │ ├── card_foreground_color.xml │ │ │ ├── card_ripple_color.xml │ │ │ ├── checkbox_button_tint.xml │ │ │ ├── edit_text_background_tint.xml │ │ │ ├── edit_text_text_color.xml │ │ │ ├── menu_floating_action_button_background_tint_selector.xml │ │ │ ├── menu_floating_action_button_ripple_color_selector.xml │ │ │ ├── menu_floating_action_button_tint_selector.xml │ │ │ ├── radio_button_tint.xml │ │ │ ├── slider_halo_color.xml │ │ │ ├── slider_thumb_color.xml │ │ │ ├── slider_track_color_active.xml │ │ │ ├── slider_track_color_inactive.xml │ │ │ ├── switch_thumb_tint.xml │ │ │ ├── switch_track_tint.xml │ │ │ ├── text_input_hint_color.xml │ │ │ └── textinputlayout_stroke_color.xml │ │ │ ├── drawable │ │ │ ├── background_widget_infobox.xml │ │ │ ├── ic_error_state.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── font │ │ │ ├── gt_walsheim_pro_bold.ttf │ │ │ ├── roboto.xml │ │ │ ├── roboto_bold.ttf │ │ │ ├── roboto_medium.ttf │ │ │ ├── roboto_mono_bold.ttf │ │ │ ├── roboto_mono_regular.ttf │ │ │ └── roboto_regular.ttf │ │ │ ├── mipmap-anydpi │ │ │ └── ic_launcher.xml │ │ │ ├── values-night │ │ │ ├── bools.xml │ │ │ └── themes.xml │ │ │ ├── values-sw600dp │ │ │ ├── dimens_theme.xml │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── aliases.xml │ │ │ ├── attrs_expandablecardview.xml │ │ │ ├── attrs_getstarted_step.xml │ │ │ ├── attrs_theme.xml │ │ │ ├── attrs_widget_infobox.xml │ │ │ ├── bools.xml │ │ │ ├── colors_brand.xml │ │ │ ├── colors_brand_impala.xml │ │ │ ├── colors_toast.xml │ │ │ ├── colors_util.xml │ │ │ ├── dimens_material.xml │ │ │ ├── dimens_theme.xml │ │ │ ├── styles.xml │ │ │ ├── text_appearance.xml │ │ │ ├── theme_shape_size.xml │ │ │ ├── themes.xml │ │ │ ├── themes_dashlane_alert_dialog.xml │ │ │ ├── themes_modal.xml │ │ │ ├── themes_transparent.xml │ │ │ └── widgets.xml │ ├── thumbnail │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── com │ │ │ └── dashlane │ │ │ └── ui │ │ │ └── thumbnail │ │ │ ├── ThumbnailDomainIcon.kt │ │ │ ├── ThumbnailDomainIconView.kt │ │ │ ├── ThumbnailDomainIconViewModel.kt │ │ │ └── ThumbnailUserSingle.kt │ └── wear-design-compose │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── wear │ │ │ └── ui │ │ │ ├── DashlaneWearTheme.kt │ │ │ ├── component │ │ │ ├── DashlaneLogo.kt │ │ │ ├── Emphasis.kt │ │ │ ├── NumeratedTextList.kt │ │ │ ├── PinInputContent.kt │ │ │ ├── TappableContainer.kt │ │ │ ├── WearButton.kt │ │ │ ├── WearChip.kt │ │ │ ├── WearCompactButton.kt │ │ │ ├── WearCompactChip.kt │ │ │ ├── WearIcon.kt │ │ │ ├── WearText.kt │ │ │ └── WearTitleCard.kt │ │ │ ├── screen │ │ │ ├── WearContentWrapper.kt │ │ │ ├── WearGenericLoadingScreen.kt │ │ │ └── WearTextContentScreen.kt │ │ │ └── utils │ │ │ └── ListUtils.kt │ │ └── res │ │ └── drawable │ │ └── ic_return.xml ├── user │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── user │ │ ├── UserAccountInfo.kt │ │ ├── UserSecuritySettings.kt │ │ └── Username.kt ├── utils-android │ └── src │ │ └── main │ │ ├── assets │ │ ├── no-signature-apps.json │ │ └── whitelist-apps.json │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ ├── BuildVersion.kt │ │ │ ├── autofill │ │ │ ├── AutofillCompatModeAllowedPackages.kt │ │ │ └── LinkedServicesHelper.kt │ │ │ ├── core │ │ │ └── helpers │ │ │ │ └── PackageNameSignatureHelper.kt │ │ │ ├── crashreport │ │ │ ├── CrashReporter.kt │ │ │ └── CrashTrace.kt │ │ │ ├── ext │ │ │ └── application │ │ │ │ ├── ExternalApplication.kt │ │ │ │ └── WhitelistApplicationImpl.kt │ │ │ ├── notificator │ │ │ └── Notificator.kt │ │ │ ├── security │ │ │ └── DashlaneIntent.java │ │ │ ├── sharing │ │ │ └── UserPermission.kt │ │ │ └── util │ │ │ ├── ActivityResultContractCompat.kt │ │ │ ├── ActivityUtils.kt │ │ │ ├── AnimatorUtils.kt │ │ │ ├── AnonymousException.kt │ │ │ ├── AssetUtils.kt │ │ │ ├── BundleUtils.kt │ │ │ ├── ContextUtils.kt │ │ │ ├── DateUtils.kt │ │ │ ├── DeviceUtils.kt │ │ │ ├── FileUtils.kt │ │ │ ├── IntentUtils.kt │ │ │ ├── JSONArrayExt.kt │ │ │ ├── KeyboardVisibilityDetector.kt │ │ │ ├── MeasureUtil.kt │ │ │ ├── NetworkStateProvider.kt │ │ │ ├── PackageManagerUtils.kt │ │ │ ├── PackageUtilities.kt │ │ │ ├── SpannableUtils.kt │ │ │ ├── StatusBarUtils.kt │ │ │ ├── TelephonyManagerUtils.kt │ │ │ ├── TextAnnotationUtils.kt │ │ │ ├── TextViewUtils.kt │ │ │ ├── UriUtils.kt │ │ │ ├── coroutines │ │ │ └── DeferredViewModel.kt │ │ │ ├── date │ │ │ └── RelativeDateFormatterImpl.kt │ │ │ ├── domain │ │ │ └── PopularWebsiteUtils.kt │ │ │ ├── keychain │ │ │ ├── KeyChainException.java │ │ │ ├── KeyChainHelperImpl.kt │ │ │ └── KeyChainManager.java │ │ │ └── web │ │ │ ├── WebViewCommunicator.kt │ │ │ └── WebViewCommunicatorImpl.kt │ │ └── res │ │ ├── values-de │ │ └── language_iso_639_1_nontranslatable.xml │ │ ├── values-es │ │ └── language_iso_639_1_nontranslatable.xml │ │ ├── values-fr │ │ └── language_iso_639_1_nontranslatable.xml │ │ ├── values-it │ │ └── language_iso_639_1_nontranslatable.xml │ │ ├── values-ja │ │ └── language_iso_639_1_nontranslatable.xml │ │ ├── values-ko │ │ └── language_iso_639_1_nontranslatable.xml │ │ ├── values-nl │ │ └── language_iso_639_1_nontranslatable.xml │ │ ├── values-pt │ │ └── language_iso_639_1_nontranslatable.xml │ │ ├── values-sv │ │ └── language_iso_639_1_nontranslatable.xml │ │ ├── values-zh │ │ └── language_iso_639_1_nontranslatable.xml │ │ └── values │ │ ├── language_iso_639_1_nontranslatable.xml │ │ └── strings.xml ├── utils-coroutines │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── utils │ │ └── coroutines │ │ ├── CoroutineExtension.kt │ │ └── inject │ │ ├── hilt │ │ ├── CoroutineScopesModule.kt │ │ └── CoroutinesModule.kt │ │ └── qualifiers │ │ ├── ActivityLifecycleCoroutineScope.kt │ │ ├── ApplicationCoroutineScope.kt │ │ ├── DefaultCoroutineDispatcher.kt │ │ ├── FragmentLifecycleCoroutineScope.kt │ │ ├── IoCoroutineDispatcher.kt │ │ ├── MainCoroutineDispatcher.kt │ │ └── MainImmediateCoroutineDispatcher.kt ├── utils │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── dashlane │ │ ├── Legal.kt │ │ ├── core │ │ └── helpers │ │ │ ├── AppSignature.kt │ │ │ ├── PackageSignatureStatus.kt │ │ │ ├── SignatureUtils.kt │ │ │ └── SignatureVerification.kt │ │ ├── exception │ │ ├── NotLoggedInException.kt │ │ └── SettingsManagerException.kt │ │ ├── ext │ │ └── application │ │ │ ├── AutofillExtraDataApplication.kt │ │ │ ├── BlacklistApplication.kt │ │ │ ├── KnownApplication.kt │ │ │ ├── KnownApplicationProvider.kt │ │ │ ├── KnownLinkedDomains.kt │ │ │ ├── TrustedBrowserApplication.kt │ │ │ └── WhitelistApplication.kt │ │ ├── iconcrawler │ │ └── IconWrapper.kt │ │ ├── sharing │ │ ├── SharingKeysHelper.kt │ │ └── SharingKeysHelperComponent.kt │ │ ├── storage │ │ └── userdata │ │ │ ├── EmailSuggestionProvider.kt │ │ │ └── RichIconsSettingProvider.kt │ │ └── util │ │ ├── AppSync.kt │ │ ├── CharSequenceUtils.kt │ │ ├── ExceptionSafePrintWriter.kt │ │ ├── HashUtils.kt │ │ ├── InstantUtils.kt │ │ ├── IntUtils.kt │ │ ├── LocaleUtil.kt │ │ ├── MD5Hash.kt │ │ ├── SearchKeywordUtils.kt │ │ ├── StringUtils.kt │ │ ├── URIBuilder.kt │ │ ├── UrlDomainUtils.kt │ │ ├── Utils.kt │ │ ├── date │ │ └── RelativeDateFormatter.kt │ │ ├── exceptions │ │ └── NetworkOffException.kt │ │ ├── inject │ │ ├── OptionalProvider.kt │ │ └── qualifiers │ │ │ └── Cache.kt │ │ ├── keychain │ │ └── KeyChainHelper.kt │ │ ├── time │ │ ├── LocalDate.kt │ │ ├── Month.kt │ │ ├── TimeMeasurement.kt │ │ ├── TimeTicker.kt │ │ ├── Year.kt │ │ └── YearMonth.kt │ │ └── uuid │ │ ├── UuidFactory.kt │ │ └── UuidFactoryImpl.kt ├── vault-item │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── vault │ │ │ └── item │ │ │ ├── BaseVaultListItem.kt │ │ │ ├── VaultListItem.kt │ │ │ ├── VaultListItemStateFactory.kt │ │ │ ├── comparator │ │ │ ├── AlphabeticComparator.kt │ │ │ ├── MostRecentComparator.kt │ │ │ └── SummaryObjectTypeComparator.kt │ │ │ └── header │ │ │ └── AlphabeticalHeader.kt │ │ └── res │ │ └── values │ │ └── strings.xml ├── vault-text-factory │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── vault │ │ │ └── textfactory │ │ │ ├── dagger │ │ │ └── VaultTextFactoryModule.kt │ │ │ ├── identity │ │ │ ├── IdentityNameHolderService.kt │ │ │ └── IdentityNameHolderServiceImpl.kt │ │ │ └── list │ │ │ ├── AddressListTextFactory.kt │ │ │ ├── AuthentifiantListTextFactory.kt │ │ │ ├── BankStatementListTextFactory.kt │ │ │ ├── CompanyListTextFactory.kt │ │ │ ├── DataIdentifierListTextFactory.kt │ │ │ ├── DataIdentifierListTextResolver.kt │ │ │ ├── DataIdentifierListTextResolverImpl.kt │ │ │ ├── DataIdentifierTypeTextFactory.kt │ │ │ ├── DriverLicenceListTextFactory.kt │ │ │ ├── EmailListTextFactory.kt │ │ │ ├── EmptyListTextFactory.kt │ │ │ ├── FiscalStatementListTextFactory.kt │ │ │ ├── IdCardListTextFactory.kt │ │ │ ├── IdentityListTextFactory.kt │ │ │ ├── PasskeyListTextFactory.kt │ │ │ ├── PassportListTextFactory.kt │ │ │ ├── PaymentCreditCardListTextFactory.kt │ │ │ ├── PersonalWebsiteListTextFactory.kt │ │ │ ├── PhoneListTextFactory.kt │ │ │ ├── SecretListTextFactory.kt │ │ │ ├── SecureNoteListTextFactory.kt │ │ │ ├── SocialSecurityStatementListTextFactory.kt │ │ │ ├── StatusText.kt │ │ │ ├── WiFiListTextFactory.kt │ │ │ └── utils │ │ │ └── GetIdentityStatusTextUtils.kt │ │ └── res │ │ └── values │ │ └── strings.xml ├── vault-utils │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── vault │ │ └── utils │ │ └── Attachments.kt └── vaultmodel │ └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── dashlane │ │ ├── hilt │ │ └── BankDataProviderModule.kt │ │ ├── util │ │ └── obfuscated │ │ │ └── SyncAndObfuscatedText.kt │ │ └── vault │ │ ├── history │ │ ├── DataChangeHistoryField.kt │ │ └── DataChangeHistoryUtils.kt │ │ ├── model │ │ ├── Address.kt │ │ ├── AuthCategory.kt │ │ ├── Authentifiant.kt │ │ ├── BankConfiguration.kt │ │ ├── BankStatement.kt │ │ ├── Collection.kt │ │ ├── Company.kt │ │ ├── Country.kt │ │ ├── CreditCardBank.kt │ │ ├── CreditCardColor.kt │ │ ├── DataChangeHistory.kt │ │ ├── DataIdentifierProxy.kt │ │ ├── DeviceType.kt │ │ ├── DriverLicence.kt │ │ ├── Email.kt │ │ ├── EmailType.kt │ │ ├── FiscalStatement.kt │ │ ├── Gender.kt │ │ ├── GeneratedPassword.kt │ │ ├── IdCard.kt │ │ ├── Identity.kt │ │ ├── LockItemUtil.kt │ │ ├── Passkey.kt │ │ ├── Passport.kt │ │ ├── PaymentCreditCard.kt │ │ ├── PersonalWebsite.kt │ │ ├── Phone.kt │ │ ├── PhoneType.kt │ │ ├── Secret.kt │ │ ├── SecureFileInfo.kt │ │ ├── SecureNote.kt │ │ ├── SecureNoteCategory.kt │ │ ├── SecureNoteType.kt │ │ ├── SecurityBreach.kt │ │ ├── SocialSecurityStatement.kt │ │ ├── SpaceItemUtil.kt │ │ ├── Title.kt │ │ ├── VaultItemUtils.kt │ │ └── WiFi.kt │ │ └── util │ │ ├── AddressUtils.kt │ │ ├── AuthentifiantPackageNameMatcher.kt │ │ ├── AuthentifiantPackageNameSignatureUtil.kt │ │ ├── BankDataProvider.kt │ │ ├── DataIdentifierSyncObjectTypes.kt │ │ ├── SharingStateChecker.kt │ │ └── SummaryObjectUtils.kt │ └── res │ ├── drawable-hdpi │ └── device_unknown.png │ ├── drawable-mdpi │ └── device_unknown.png │ ├── drawable-xhdpi │ └── device_unknown.png │ ├── drawable-xxhdpi │ └── device_unknown.png │ ├── drawable │ ├── device_android.xml │ ├── device_apple.xml │ ├── device_browser.xml │ └── device_windows.xml │ └── values │ ├── colors_credit_cards.xml │ ├── colors_list_securenotes.xml │ ├── string_vault_fab.xml │ ├── strings.xml │ ├── strings_device_types.xml │ ├── strings_item_hints.xml │ ├── strings_menu_v3.xml │ └── strings_vault_menu.xml ├── core ├── cryptography │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── DOCUMENTATION.md │ ├── README.md │ ├── argon2-compiler │ │ ├── README.md │ │ └── src │ │ │ └── main │ │ │ ├── cpp │ │ │ ├── CMakeLists.txt │ │ │ └── argon2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── src │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── argon2.c │ │ │ │ ├── argon2.h │ │ │ │ ├── blake2 │ │ │ │ ├── blake2-impl.h │ │ │ │ ├── blake2.h │ │ │ │ ├── blake2b.c │ │ │ │ ├── blamka-round-opt.h │ │ │ │ └── blamka-round-ref.h │ │ │ │ ├── core.c │ │ │ │ ├── core.h │ │ │ │ ├── encoding.c │ │ │ │ ├── encoding.h │ │ │ │ ├── genkat.c │ │ │ │ ├── genkat.h │ │ │ │ ├── ref.c │ │ │ │ ├── thread.c │ │ │ │ └── thread.h │ │ │ └── java │ │ │ └── com │ │ │ └── dashlane │ │ │ └── nativelib │ │ │ └── MainActivity.kt │ ├── cryptography-android │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── dashlane │ │ │ └── cryptography │ │ │ ├── CryptographyAppKeyProvider.kt │ │ │ ├── CryptographyAppKeyStore.kt │ │ │ ├── CryptographyBuilder.kt │ │ │ ├── KeyDerivationEngineAndroid.kt │ │ │ └── LegacyAppDecryptionProvider.kt │ ├── cryptography-core │ │ └── src │ │ │ ├── commonMain │ │ │ └── kotlin │ │ │ │ └── com │ │ │ │ └── dashlane │ │ │ │ └── cryptography │ │ │ │ ├── AutoCloseableArrays.kt │ │ │ │ ├── Base64.kt │ │ │ │ ├── CryptographyException.kt │ │ │ │ ├── CryptographyKey.kt │ │ │ │ ├── ObfuscatedByteArray.kt │ │ │ │ ├── SecureRandom.kt │ │ │ │ ├── Serializable.kt │ │ │ │ ├── SharingKeys.kt │ │ │ │ └── Utf8.kt │ │ │ ├── commonTest │ │ │ └── kotlin │ │ │ │ └── com │ │ │ │ └── dashlane │ │ │ │ └── cryptography │ │ │ │ └── Base64Test.kt │ │ │ ├── jvmMain │ │ │ └── kotlin │ │ │ │ └── com │ │ │ │ └── dashlane │ │ │ │ └── cryptography │ │ │ │ ├── SecureRandom.kt │ │ │ │ ├── Serializable.kt │ │ │ │ └── Utf8Jvm.kt │ │ │ └── jvmTest │ │ │ └── kotlin │ │ │ └── com │ │ │ └── dashlane │ │ │ └── cryptography │ │ │ ├── ObfuscatedByteArrayBytesTest.kt │ │ │ ├── ObfuscatedByteArrayPlusTest.kt │ │ │ ├── ObfuscatedByteArrayTest.kt │ │ │ └── ObfuscatedByteArrayUtf8Test.kt │ ├── cryptography-jdk │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── com │ │ │ └── dashlane │ │ │ └── cryptography │ │ │ ├── CryptographyBuilder.kt │ │ │ └── KeyDerivationEngineJdk.kt │ ├── cryptography-jni │ │ └── src │ │ │ └── main │ │ │ ├── cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── JNIConvertor.h │ │ │ ├── OpenSSL_RSA_extend.h │ │ │ ├── RSACipherUtils.cpp │ │ │ ├── RSACipherUtils.h │ │ │ ├── SharingV2Crypto.cpp │ │ │ ├── SharingV2Crypto.h │ │ │ ├── Utils.h │ │ │ └── cryptography.cpp │ │ │ └── java │ │ │ └── com │ │ │ └── dashlane │ │ │ └── cryptography │ │ │ └── jni │ │ │ ├── JniCryptography.kt │ │ │ └── JniWrapperCryptography.kt │ ├── cryptography-sharing-android │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── dashlane │ │ │ └── cryptography │ │ │ └── SharingCryptographyAndroid.kt │ ├── cryptography-sharing-jdk │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── com │ │ │ └── dashlane │ │ │ └── cryptography │ │ │ ├── SharingCryptographyJdk.kt │ │ │ └── SharingCryptographyPemUtils.kt │ ├── cryptography-sharing │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── com │ │ │ └── dashlane │ │ │ └── cryptography │ │ │ ├── SharingCryptography.kt │ │ │ ├── SharingCryptographyComponent.kt │ │ │ ├── SharingEncryptedBase64String.kt │ │ │ ├── SharingEncryptedByteArray.kt │ │ │ ├── SharingSignatureBase64String.kt │ │ │ └── SharingSignatureByteArray.kt │ ├── cryptography-xml │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── com │ │ │ └── dashlane │ │ │ └── cryptography │ │ │ ├── XmlArchive.kt │ │ │ ├── XmlArchiveException.kt │ │ │ ├── XmlArchiveReader.kt │ │ │ ├── XmlArchiveTag.kt │ │ │ ├── XmlArchiveWriter.kt │ │ │ ├── XmlDecryptionEngine.kt │ │ │ └── XmlEncryptionEngine.kt │ ├── cryptography │ │ └── src │ │ │ ├── commonMain │ │ │ └── kotlin │ │ │ │ └── com │ │ │ │ └── dashlane │ │ │ │ └── cryptography │ │ │ │ ├── Cipher.kt │ │ │ │ ├── CipherFactory.kt │ │ │ │ ├── Compression.kt │ │ │ │ ├── Cryptography.kt │ │ │ │ ├── CryptographyChanger.kt │ │ │ │ ├── CryptographyComponent.kt │ │ │ │ ├── CryptographyEngineException.kt │ │ │ │ ├── CryptographyEngineFactory.kt │ │ │ │ ├── CryptographyFixedSalt.kt │ │ │ │ ├── CryptographyKeyGenerator.kt │ │ │ │ ├── CryptographyMarker.kt │ │ │ │ ├── CryptographyMethods.kt │ │ │ │ ├── CryptographySettings.kt │ │ │ │ ├── DecryptionEngine.kt │ │ │ │ ├── DecryptionSource.kt │ │ │ │ ├── EncryptedBase64String.kt │ │ │ │ ├── EncryptedByteArray.kt │ │ │ │ ├── EncryptionEngine.kt │ │ │ │ ├── EncryptionSink.kt │ │ │ │ ├── IvGenerator.kt │ │ │ │ ├── KeyDerivationEngine.kt │ │ │ │ ├── KeyDerivationEngineCache.kt │ │ │ │ ├── Mac.kt │ │ │ │ ├── MacFactory.kt │ │ │ │ ├── PaddingGenerator.kt │ │ │ │ └── SaltGenerator.kt │ │ │ ├── commonTest │ │ │ └── kotlin │ │ │ │ └── com │ │ │ │ └── dashlane │ │ │ │ └── cryptography │ │ │ │ ├── CryptographyEngineFactoryTest.kt │ │ │ │ ├── CryptographyKeyGeneratorTest.kt │ │ │ │ ├── CryptographyKeyTest.kt │ │ │ │ ├── CryptographyMarkerTest.kt │ │ │ │ └── SaltGeneratorTest.kt │ │ │ ├── jvmMain │ │ │ └── kotlin │ │ │ │ └── com │ │ │ │ └── dashlane │ │ │ │ └── cryptography │ │ │ │ ├── Cipher.kt │ │ │ │ ├── CipherFactoryJvm.kt │ │ │ │ ├── CompressionJvm.kt │ │ │ │ ├── CryptographyMethodsJvm.kt │ │ │ │ ├── DecryptionEngineJvm.kt │ │ │ │ ├── DecryptionSourceJvm.kt │ │ │ │ ├── EncryptedFile.kt │ │ │ │ ├── EncryptionEngineJvm.kt │ │ │ │ ├── EncryptionSinkJvm.kt │ │ │ │ ├── KeyDerivationEngineCacheJvm.kt │ │ │ │ ├── Mac.kt │ │ │ │ └── MacFactoryJvm.kt │ │ │ └── jvmTest │ │ │ └── kotlin │ │ │ └── com │ │ │ └── dashlane │ │ │ └── cryptography │ │ │ ├── DecryptionEngineCacheTest.kt │ │ │ └── KeyDerivationCacheTest.kt │ ├── distribution │ │ ├── argon2 │ │ │ ├── include │ │ │ │ ├── argon2.h │ │ │ │ ├── blake2 │ │ │ │ │ ├── blake2-impl.h │ │ │ │ │ ├── blake2.h │ │ │ │ │ ├── blamka-round-opt.h │ │ │ │ │ └── blamka-round-ref.h │ │ │ │ ├── core.h │ │ │ │ ├── encoding.h │ │ │ │ ├── genkat.h │ │ │ │ └── thread.h │ │ │ └── lib │ │ │ │ ├── arm64-v8a │ │ │ │ └── libargon2.a │ │ │ │ ├── armeabi-v7a │ │ │ │ └── libargon2.a │ │ │ │ ├── x86 │ │ │ │ └── libargon2.a │ │ │ │ └── x86_64 │ │ │ │ └── libargon2.a │ │ ├── libsodium │ │ │ ├── include │ │ │ │ ├── sodium.h │ │ │ │ └── sodium │ │ │ │ │ ├── core.h │ │ │ │ │ ├── crypto_aead_aes256gcm.h │ │ │ │ │ ├── crypto_aead_chacha20poly1305.h │ │ │ │ │ ├── crypto_aead_xchacha20poly1305.h │ │ │ │ │ ├── crypto_auth.h │ │ │ │ │ ├── crypto_auth_hmacsha256.h │ │ │ │ │ ├── crypto_auth_hmacsha512.h │ │ │ │ │ ├── crypto_auth_hmacsha512256.h │ │ │ │ │ ├── crypto_box.h │ │ │ │ │ ├── crypto_box_curve25519xchacha20poly1305.h │ │ │ │ │ ├── crypto_box_curve25519xsalsa20poly1305.h │ │ │ │ │ ├── crypto_core_ed25519.h │ │ │ │ │ ├── crypto_core_hchacha20.h │ │ │ │ │ ├── crypto_core_hsalsa20.h │ │ │ │ │ ├── crypto_core_ristretto255.h │ │ │ │ │ ├── crypto_core_salsa20.h │ │ │ │ │ ├── crypto_core_salsa2012.h │ │ │ │ │ ├── crypto_core_salsa208.h │ │ │ │ │ ├── crypto_generichash.h │ │ │ │ │ ├── crypto_generichash_blake2b.h │ │ │ │ │ ├── crypto_hash.h │ │ │ │ │ ├── crypto_hash_sha256.h │ │ │ │ │ ├── crypto_hash_sha512.h │ │ │ │ │ ├── crypto_kdf.h │ │ │ │ │ ├── crypto_kdf_blake2b.h │ │ │ │ │ ├── crypto_kx.h │ │ │ │ │ ├── crypto_onetimeauth.h │ │ │ │ │ ├── crypto_onetimeauth_poly1305.h │ │ │ │ │ ├── crypto_pwhash.h │ │ │ │ │ ├── crypto_pwhash_argon2i.h │ │ │ │ │ ├── crypto_pwhash_argon2id.h │ │ │ │ │ ├── crypto_pwhash_scryptsalsa208sha256.h │ │ │ │ │ ├── crypto_scalarmult.h │ │ │ │ │ ├── crypto_scalarmult_curve25519.h │ │ │ │ │ ├── crypto_scalarmult_ed25519.h │ │ │ │ │ ├── crypto_scalarmult_ristretto255.h │ │ │ │ │ ├── crypto_secretbox.h │ │ │ │ │ ├── crypto_secretbox_xchacha20poly1305.h │ │ │ │ │ ├── crypto_secretbox_xsalsa20poly1305.h │ │ │ │ │ ├── crypto_secretstream_xchacha20poly1305.h │ │ │ │ │ ├── crypto_shorthash.h │ │ │ │ │ ├── crypto_shorthash_siphash24.h │ │ │ │ │ ├── crypto_sign.h │ │ │ │ │ ├── crypto_sign_ed25519.h │ │ │ │ │ ├── crypto_sign_edwards25519sha512batch.h │ │ │ │ │ ├── crypto_stream.h │ │ │ │ │ ├── crypto_stream_chacha20.h │ │ │ │ │ ├── crypto_stream_salsa20.h │ │ │ │ │ ├── crypto_stream_salsa2012.h │ │ │ │ │ ├── crypto_stream_salsa208.h │ │ │ │ │ ├── crypto_stream_xchacha20.h │ │ │ │ │ ├── crypto_stream_xsalsa20.h │ │ │ │ │ ├── crypto_verify_16.h │ │ │ │ │ ├── crypto_verify_32.h │ │ │ │ │ ├── crypto_verify_64.h │ │ │ │ │ ├── export.h │ │ │ │ │ ├── randombytes.h │ │ │ │ │ ├── randombytes_internal_random.h │ │ │ │ │ ├── randombytes_sysrandom.h │ │ │ │ │ ├── runtime.h │ │ │ │ │ ├── utils.h │ │ │ │ │ └── version.h │ │ │ └── lib │ │ │ │ ├── arm64-v8a │ │ │ │ └── libsodium.a │ │ │ │ ├── armeabi-v7a │ │ │ │ └── libsodium.a │ │ │ │ ├── x86 │ │ │ │ └── libsodium.a │ │ │ │ └── x86_64 │ │ │ │ └── libsodium.a │ │ └── openssl │ │ │ ├── include │ │ │ ├── __DECC_INCLUDE_EPILOGUE.H │ │ │ ├── __DECC_INCLUDE_PROLOGUE.H │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1err.h │ │ │ ├── asn1t.h │ │ │ ├── async.h │ │ │ ├── asyncerr.h │ │ │ ├── bio.h │ │ │ ├── bioerr.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── bnerr.h │ │ │ ├── buffer.h │ │ │ ├── buffererr.h │ │ │ ├── camellia.h │ │ │ ├── cast.h │ │ │ ├── cmac.h │ │ │ ├── cms.h │ │ │ ├── cmserr.h │ │ │ ├── comp.h │ │ │ ├── comperr.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── conferr.h │ │ │ ├── crypto.h │ │ │ ├── cryptoerr.h │ │ │ ├── ct.h │ │ │ ├── cterr.h │ │ │ ├── des.h │ │ │ ├── dh.h │ │ │ ├── dherr.h │ │ │ ├── dsa.h │ │ │ ├── dsaerr.h │ │ │ ├── dtls1.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── ecerr.h │ │ │ ├── engine.h │ │ │ ├── engineerr.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── evperr.h │ │ │ ├── hmac.h │ │ │ ├── idea.h │ │ │ ├── kdf.h │ │ │ ├── kdferr.h │ │ │ ├── lhash.h │ │ │ ├── md2.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── mdc2.h │ │ │ ├── modes.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── objectserr.h │ │ │ ├── ocsp.h │ │ │ ├── ocsperr.h │ │ │ ├── openssl │ │ │ │ ├── __DECC_INCLUDE_EPILOGUE.H │ │ │ │ ├── __DECC_INCLUDE_PROLOGUE.H │ │ │ │ ├── aes.h │ │ │ │ ├── asn1.h │ │ │ │ ├── asn1_mac.h │ │ │ │ ├── asn1err.h │ │ │ │ ├── asn1t.h │ │ │ │ ├── async.h │ │ │ │ ├── asyncerr.h │ │ │ │ ├── bio.h │ │ │ │ ├── bioerr.h │ │ │ │ ├── blowfish.h │ │ │ │ ├── bn.h │ │ │ │ ├── bnerr.h │ │ │ │ ├── buffer.h │ │ │ │ ├── buffererr.h │ │ │ │ ├── camellia.h │ │ │ │ ├── cast.h │ │ │ │ ├── cmac.h │ │ │ │ ├── cms.h │ │ │ │ ├── cmserr.h │ │ │ │ ├── comp.h │ │ │ │ ├── comperr.h │ │ │ │ ├── conf.h │ │ │ │ ├── conf_api.h │ │ │ │ ├── conferr.h │ │ │ │ ├── crypto.h │ │ │ │ ├── cryptoerr.h │ │ │ │ ├── ct.h │ │ │ │ ├── cterr.h │ │ │ │ ├── des.h │ │ │ │ ├── dh.h │ │ │ │ ├── dherr.h │ │ │ │ ├── dsa.h │ │ │ │ ├── dsaerr.h │ │ │ │ ├── dtls1.h │ │ │ │ ├── e_os2.h │ │ │ │ ├── ebcdic.h │ │ │ │ ├── ec.h │ │ │ │ ├── ecdh.h │ │ │ │ ├── ecdsa.h │ │ │ │ ├── ecerr.h │ │ │ │ ├── engine.h │ │ │ │ ├── engineerr.h │ │ │ │ ├── err.h │ │ │ │ ├── evp.h │ │ │ │ ├── evperr.h │ │ │ │ ├── hmac.h │ │ │ │ ├── idea.h │ │ │ │ ├── kdf.h │ │ │ │ ├── kdferr.h │ │ │ │ ├── lhash.h │ │ │ │ ├── md2.h │ │ │ │ ├── md4.h │ │ │ │ ├── md5.h │ │ │ │ ├── mdc2.h │ │ │ │ ├── modes.h │ │ │ │ ├── obj_mac.h │ │ │ │ ├── objects.h │ │ │ │ ├── objectserr.h │ │ │ │ ├── ocsp.h │ │ │ │ ├── ocsperr.h │ │ │ │ ├── opensslconf.h │ │ │ │ ├── opensslconf.h.in │ │ │ │ ├── opensslv.h │ │ │ │ ├── ossl_typ.h │ │ │ │ ├── pem.h │ │ │ │ ├── pem2.h │ │ │ │ ├── pemerr.h │ │ │ │ ├── pkcs12.h │ │ │ │ ├── pkcs12err.h │ │ │ │ ├── pkcs7.h │ │ │ │ ├── pkcs7err.h │ │ │ │ ├── rand.h │ │ │ │ ├── rand_drbg.h │ │ │ │ ├── randerr.h │ │ │ │ ├── rc2.h │ │ │ │ ├── rc4.h │ │ │ │ ├── rc5.h │ │ │ │ ├── ripemd.h │ │ │ │ ├── rsa.h │ │ │ │ ├── rsaerr.h │ │ │ │ ├── safestack.h │ │ │ │ ├── seed.h │ │ │ │ ├── sha.h │ │ │ │ ├── srp.h │ │ │ │ ├── srtp.h │ │ │ │ ├── ssl.h │ │ │ │ ├── ssl2.h │ │ │ │ ├── ssl3.h │ │ │ │ ├── sslerr.h │ │ │ │ ├── stack.h │ │ │ │ ├── store.h │ │ │ │ ├── storeerr.h │ │ │ │ ├── symhacks.h │ │ │ │ ├── tls1.h │ │ │ │ ├── ts.h │ │ │ │ ├── tserr.h │ │ │ │ ├── txt_db.h │ │ │ │ ├── ui.h │ │ │ │ ├── uierr.h │ │ │ │ ├── whrlpool.h │ │ │ │ ├── x509.h │ │ │ │ ├── x509_vfy.h │ │ │ │ ├── x509err.h │ │ │ │ ├── x509v3.h │ │ │ │ └── x509v3err.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslconf.h.in │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pemerr.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs12err.h │ │ │ ├── pkcs7.h │ │ │ ├── pkcs7err.h │ │ │ ├── rand.h │ │ │ ├── rand_drbg.h │ │ │ ├── randerr.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── rc5.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── rsaerr.h │ │ │ ├── safestack.h │ │ │ ├── seed.h │ │ │ ├── sha.h │ │ │ ├── srp.h │ │ │ ├── srtp.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl3.h │ │ │ ├── sslerr.h │ │ │ ├── stack.h │ │ │ ├── store.h │ │ │ ├── storeerr.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── ts.h │ │ │ ├── tserr.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── uierr.h │ │ │ ├── whrlpool.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ ├── x509err.h │ │ │ ├── x509v3.h │ │ │ └── x509v3err.h │ │ │ └── lib │ │ │ ├── arm64-v8a │ │ │ ├── libcrypto.a │ │ │ └── libssl.a │ │ │ ├── armeabi-v7a │ │ │ ├── libcrypto.a │ │ │ └── libssl.a │ │ │ ├── x86 │ │ │ ├── libcrypto.a │ │ │ └── libssl.a │ │ │ └── x86_64 │ │ │ ├── libcrypto.a │ │ │ └── libssl.a │ ├── openssl-compiler │ │ ├── README.md │ │ ├── launcher.sh │ │ ├── ndk-verification.sh │ │ ├── openssl-build-arch-specific.sh │ │ ├── openssl-build.sh │ │ ├── openssl-download.sh │ │ ├── openssl-setenv.sh │ │ ├── openssl.config │ │ └── toolchains_path.py │ └── sodium-jni │ │ └── src │ │ └── main │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ └── sodium.cpp │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── sodium │ │ └── jni │ │ └── SodiumJni.kt ├── hermes │ ├── CHANGELOG.md │ ├── README.md │ ├── generator │ │ ├── clean-generated-code.sh │ │ ├── download-tracking-schema.sh │ │ ├── specs-version.sh │ │ └── src │ │ │ └── main │ │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── dashlane │ │ │ │ └── hermes │ │ │ │ └── generator │ │ │ │ ├── ClassProcessor.kt │ │ │ │ ├── Definition.kt │ │ │ │ ├── Event.kt │ │ │ │ ├── LocalSchemaReader.kt │ │ │ │ ├── Main.kt │ │ │ │ ├── SchemaReader.kt │ │ │ │ ├── Util.kt │ │ │ │ └── classdefinition │ │ │ │ └── datamodel │ │ │ │ ├── EnumClass.kt │ │ │ │ ├── EventClass.kt │ │ │ │ ├── ItemIdClass.kt │ │ │ │ ├── ObjectClass.kt │ │ │ │ └── PageEnumClass.kt │ │ │ └── resources │ │ │ ├── Enum.kt.ftl │ │ │ ├── Event.kt.ftl │ │ │ ├── ItemId.kt.ftl │ │ │ ├── Object.kt.ftl │ │ │ └── PageEnum.kt.ftl │ ├── hermes-android │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── dashlane │ │ │ └── hermes │ │ │ ├── HermesWorker.kt │ │ │ ├── LogFlushLifecycleObserver.kt │ │ │ └── storage │ │ │ └── SecureFileLogStorage.kt │ ├── hermes │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── com │ │ │ └── dashlane │ │ │ └── hermes │ │ │ ├── ActivityLogUtil.kt │ │ │ ├── AnalyticsIdRepository.kt │ │ │ ├── AnalyticsInfo.kt │ │ │ ├── AppInfo.kt │ │ │ ├── ConfigurationUtil.kt │ │ │ ├── HermesException.kt │ │ │ ├── JsonCollector.kt │ │ │ ├── LogFlush.kt │ │ │ ├── LogIdGenerator.kt │ │ │ ├── LogRepository.kt │ │ │ ├── OsInfo.kt │ │ │ ├── Sha256Hash.kt │ │ │ ├── TrackingLog.kt │ │ │ ├── TrackingSchemasVersion.kt │ │ │ ├── generated │ │ │ ├── definitions │ │ │ │ ├── AccessPath.kt │ │ │ │ ├── AccountCreationStatus.kt │ │ │ │ ├── Action.kt │ │ │ │ ├── ActionDuringTransfer.kt │ │ │ │ ├── ActivateVpnError.kt │ │ │ │ ├── AlgorithmsSupported.kt │ │ │ │ ├── Android.kt │ │ │ │ ├── AnonymousBrowser.kt │ │ │ │ ├── AnyPage.kt │ │ │ │ ├── App.kt │ │ │ │ ├── AuditLogDownloadError.kt │ │ │ │ ├── AuthMethodMigrationFlowStep.kt │ │ │ │ ├── AuthenticationMediationType.kt │ │ │ │ ├── AuthenticationStatus.kt │ │ │ │ ├── AuthenticatorAttachment.kt │ │ │ │ ├── AuthenticatorNames.kt │ │ │ │ ├── AuthenticatorPushStatus.kt │ │ │ │ ├── AuthenticatorPushType.kt │ │ │ │ ├── AuthenticatorResidentKey.kt │ │ │ │ ├── AuthenticatorUserVerification.kt │ │ │ │ ├── AuthenticatorUserVerificationSource.kt │ │ │ │ ├── AutofillButton.kt │ │ │ │ ├── AutofillConfiguration.kt │ │ │ │ ├── AutofillDurationSetting.kt │ │ │ │ ├── AutofillMechanism.kt │ │ │ │ ├── AutofillMessageType.kt │ │ │ │ ├── AutofillOrigin.kt │ │ │ │ ├── AutofillScope.kt │ │ │ │ ├── B2bPlanTier.kt │ │ │ │ ├── BackupFileType.kt │ │ │ │ ├── Browse.kt │ │ │ │ ├── BrowseComponent.kt │ │ │ │ ├── Browser.kt │ │ │ │ ├── BuildType.kt │ │ │ │ ├── BusinessDomain.kt │ │ │ │ ├── Button.kt │ │ │ │ ├── CallToAction.kt │ │ │ │ ├── CancelPlanStep.kt │ │ │ │ ├── CeremonyStatus.kt │ │ │ │ ├── ChangeLoginEmailFlowStep.kt │ │ │ │ ├── ChangeLoginError.kt │ │ │ │ ├── ChangeMasterPasswordError.kt │ │ │ │ ├── ClickOrigin.kt │ │ │ │ ├── CollectionAction.kt │ │ │ │ ├── CollectionSelectOrigin.kt │ │ │ │ ├── Context.kt │ │ │ │ ├── ContextAnonymous.kt │ │ │ │ ├── CorrectionType.kt │ │ │ │ ├── CreateKeyErrorName.kt │ │ │ │ ├── CredentialSecurityStatus.kt │ │ │ │ ├── CryptoAlgorithm.kt │ │ │ │ ├── CryptoMigrationStatus.kt │ │ │ │ ├── CryptoMigrationType.kt │ │ │ │ ├── DashboardAction.kt │ │ │ │ ├── DataSource.kt │ │ │ │ ├── DateOrigin.kt │ │ │ │ ├── DeleteKeyReason.kt │ │ │ │ ├── Device.kt │ │ │ │ ├── DeviceAppearance.kt │ │ │ │ ├── DeviceSelected.kt │ │ │ │ ├── DisableSetting.kt │ │ │ │ ├── DismissType.kt │ │ │ │ ├── Domain.kt │ │ │ │ ├── DomainType.kt │ │ │ │ ├── DomainVerificationStep.kt │ │ │ │ ├── DropdownType.kt │ │ │ │ ├── Duration.kt │ │ │ │ ├── EmailDomainError.kt │ │ │ │ ├── EncryptionAlgorithm.kt │ │ │ │ ├── EncryptionServicePlatformSelected.kt │ │ │ │ ├── Error.kt │ │ │ │ ├── ErrorCheckout.kt │ │ │ │ ├── ErrorDescription.kt │ │ │ │ ├── ErrorName.kt │ │ │ │ ├── ErrorStep.kt │ │ │ │ ├── Extent.kt │ │ │ │ ├── Field.kt │ │ │ │ ├── FieldsFilled.kt │ │ │ │ ├── FieldsFilledByCount.kt │ │ │ │ ├── Flow.kt │ │ │ │ ├── FlowStep.kt │ │ │ │ ├── FlowType.kt │ │ │ │ ├── FollowUpNotificationActions.kt │ │ │ │ ├── FormName.kt │ │ │ │ ├── FormType.kt │ │ │ │ ├── HelpCenterArticleCta.kt │ │ │ │ ├── Highlight.kt │ │ │ │ ├── IdpValidationResponse.kt │ │ │ │ ├── ImportDataDropAction.kt │ │ │ │ ├── IntegrationPlatform.kt │ │ │ │ ├── InvitationLinkClickOrigin.kt │ │ │ │ ├── Ios.kt │ │ │ │ ├── ItemId.kt │ │ │ │ ├── ItemSource.kt │ │ │ │ ├── ItemType.kt │ │ │ │ ├── ItemTypeCounts.kt │ │ │ │ ├── ItemTypeWithLink.kt │ │ │ │ ├── MatchType.kt │ │ │ │ ├── MeasureName.kt │ │ │ │ ├── MeasureType.kt │ │ │ │ ├── MigrateAuthMethodError.kt │ │ │ │ ├── Mode.kt │ │ │ │ ├── NudgeAction.kt │ │ │ │ ├── NudgeType.kt │ │ │ │ ├── OnboardingTask.kt │ │ │ │ ├── OptionType.kt │ │ │ │ ├── Origin.kt │ │ │ │ ├── OriginalAuthMethod.kt │ │ │ │ ├── Os.kt │ │ │ │ ├── OsType.kt │ │ │ │ ├── OtpAdditionError.kt │ │ │ │ ├── OtpAdditionMode.kt │ │ │ │ ├── OtpSpecifications.kt │ │ │ │ ├── OtpType.kt │ │ │ │ ├── PackageSource.kt │ │ │ │ ├── Page.kt │ │ │ │ ├── PasskeyAuthenticationErrorType.kt │ │ │ │ ├── PasskeyRegistrationErrorType.kt │ │ │ │ ├── PasskeyType.kt │ │ │ │ ├── PasswordChangerFailureReason.kt │ │ │ │ ├── PaymentMethod.kt │ │ │ │ ├── PaymentStatus.kt │ │ │ │ ├── PhishingRisk.kt │ │ │ │ ├── Plan.kt │ │ │ │ ├── PlanBillingPeriod.kt │ │ │ │ ├── PlanChangeStep.kt │ │ │ │ ├── Platform.kt │ │ │ │ ├── PossibleFormAnswers.kt │ │ │ │ ├── PriceCurrencyCode.kt │ │ │ │ ├── PriorityPage.kt │ │ │ │ ├── ProfilingFamiliarityPossibleAnswers.kt │ │ │ │ ├── ProfilingFeaturesPossibleAnswers.kt │ │ │ │ ├── ProfilingStep.kt │ │ │ │ ├── ProfilingTeamSizePossibleAnswers.kt │ │ │ │ ├── ProfilingUseCasePossibleAnswers.kt │ │ │ │ ├── PublicApiKeyStep.kt │ │ │ │ ├── ReactivationSelection.kt │ │ │ │ ├── Reason.kt │ │ │ │ ├── ReasonToExtendTrialAnswer.kt │ │ │ │ ├── RemoteFileUpdateError.kt │ │ │ │ ├── RequestStatus.kt │ │ │ │ ├── ResponseStatus.kt │ │ │ │ ├── RightClickMenuFlowStep.kt │ │ │ │ ├── Rights.kt │ │ │ │ ├── RiskDetectionSetupStep.kt │ │ │ │ ├── SaveType.kt │ │ │ │ ├── ScimSetupStep.kt │ │ │ │ ├── Scope.kt │ │ │ │ ├── SecurityAlertType.kt │ │ │ │ ├── Session.kt │ │ │ │ ├── SettingLevel.kt │ │ │ │ ├── SharingFlowType.kt │ │ │ │ ├── SharingItemType.kt │ │ │ │ ├── SignupFlowStep.kt │ │ │ │ ├── Space.kt │ │ │ │ ├── SplunkSetupStep.kt │ │ │ │ ├── SsoSetupStep.kt │ │ │ │ ├── SsoSolutionChosen.kt │ │ │ │ ├── State.kt │ │ │ │ ├── Status.kt │ │ │ │ ├── SurveyAnswer.kt │ │ │ │ ├── TacNotification.kt │ │ │ │ ├── TestSsoResponse.kt │ │ │ │ ├── ToastName.kt │ │ │ │ ├── TransferDataSource.kt │ │ │ │ ├── TransferDataStatus.kt │ │ │ │ ├── TransferDataStep.kt │ │ │ │ ├── TransferMethod.kt │ │ │ │ ├── TreatProblem.kt │ │ │ │ ├── Trigger.kt │ │ │ │ ├── TwoFactorAuthenticationError.kt │ │ │ │ ├── Unit.kt │ │ │ │ ├── UpdateCredentialOrigin.kt │ │ │ │ ├── UpdateStatus.kt │ │ │ │ ├── UseKeyErrorName.kt │ │ │ │ ├── User.kt │ │ │ │ ├── VerificationMode.kt │ │ │ │ ├── VersionValidityStatus.kt │ │ │ │ ├── Web.kt │ │ │ │ ├── WebAccountCreation.kt │ │ │ │ ├── WebauthnExtensionId.kt │ │ │ │ ├── WebcardItemType.kt │ │ │ │ └── WebcardSaveOptions.kt │ │ │ └── events │ │ │ │ ├── anonymous │ │ │ │ ├── AddTwoFactorAuthenticationToCredentialAnonymous.kt │ │ │ │ ├── AntiphishingDisplayAlertAnonymous.kt │ │ │ │ ├── AntiphishingRedirectAnonymous.kt │ │ │ │ ├── AuthenticateWithPasskeyAnonymous.kt │ │ │ │ ├── AuthenticatorAddOtpCodeAnonymous.kt │ │ │ │ ├── AuthenticatorRemoveOtpCodeAnonymous.kt │ │ │ │ ├── AutofillAcceptAnonymous.kt │ │ │ │ ├── AutofillChooseGeneratedPasswordAnonymous.kt │ │ │ │ ├── AutofillCorrectAnonymous.kt │ │ │ │ ├── AutofillDismissAnonymous.kt │ │ │ │ ├── AutofillDisplayIconsAnonymous.kt │ │ │ │ ├── AutofillSettingAnonymous.kt │ │ │ │ ├── AutofillSubmitFormAnonymous.kt │ │ │ │ ├── AutofillSuggestAnonymous.kt │ │ │ │ ├── ChangePasswordGuidedAnonymous.kt │ │ │ │ ├── CopyVaultItemFieldAnonymous.kt │ │ │ │ ├── LaunchPasswordChangerAnonymous.kt │ │ │ │ ├── MassDeploymentStatusAnonymous.kt │ │ │ │ ├── MasterPasswordHealthReportAnonymous.kt │ │ │ │ ├── OpenExternalVaultItemLinkAnonymous.kt │ │ │ │ ├── OtherAuthenticatorsInstalledReportAnonymous.kt │ │ │ │ ├── PerformAutofillAnonymous.kt │ │ │ │ ├── PhishingAttemptDetectedAnonymous.kt │ │ │ │ ├── PingAnonymous.kt │ │ │ │ ├── RegisterPasskeyAnonymous.kt │ │ │ │ ├── RemoveTwoFactorAuthenticationFromCredentialAnonymous.kt │ │ │ │ ├── RestorePasswordAnonymous.kt │ │ │ │ ├── RevealVaultItemFieldAnonymous.kt │ │ │ │ ├── RightClickMenuActionAnonymous.kt │ │ │ │ └── UpdateCredentialAnonymous.kt │ │ │ │ └── user │ │ │ │ ├── ActivateVpn.kt │ │ │ │ ├── AddNewDevice.kt │ │ │ │ ├── AddNewPaymentMethod.kt │ │ │ │ ├── AddTwoFactorAuthenticationToCredential.kt │ │ │ │ ├── AdminChangeLoginEmail.kt │ │ │ │ ├── AntiphishingRedirect.kt │ │ │ │ ├── AskAuthentication.kt │ │ │ │ ├── AskUseOtherAuthentication.kt │ │ │ │ ├── AuthenticateWithPasskey.kt │ │ │ │ ├── AuthenticatorAddOtpCode.kt │ │ │ │ ├── AuthenticatorDownloadPasswordManager.kt │ │ │ │ ├── AuthenticatorLaunch.kt │ │ │ │ ├── AuthenticatorPushAction.kt │ │ │ │ ├── AuthenticatorRemoveOtpCode.kt │ │ │ │ ├── AutofillAccept.kt │ │ │ │ ├── AutofillClick.kt │ │ │ │ ├── AutofillCorrect.kt │ │ │ │ ├── AutofillDismiss.kt │ │ │ │ ├── AutofillPasswordGenerateShowMore.kt │ │ │ │ ├── AutofillSetting.kt │ │ │ │ ├── AutofillSubmitForm.kt │ │ │ │ ├── AutofillSuggest.kt │ │ │ │ ├── BuySeat.kt │ │ │ │ ├── CallToAction.kt │ │ │ │ ├── CancelPlan.kt │ │ │ │ ├── ChangeContactEmail.kt │ │ │ │ ├── ChangeMasterPassword.kt │ │ │ │ ├── ChangePasswordGuided.kt │ │ │ │ ├── ChangeProtectWithMasterPasswordSetting.kt │ │ │ │ ├── ChangeTeamPlanTier.kt │ │ │ │ ├── ChangeTwoFactorAuthenticationSetting.kt │ │ │ │ ├── Click.kt │ │ │ │ ├── CompleteOnboardingTask.kt │ │ │ │ ├── CompleteTacOnboardingTask.kt │ │ │ │ ├── CopyVaultItemField.kt │ │ │ │ ├── CreateAccount.kt │ │ │ │ ├── CreateAccountRecoveryKey.kt │ │ │ │ ├── CredentialHealthReport.kt │ │ │ │ ├── DeleteAccountRecoveryKey.kt │ │ │ │ ├── DeleteU2fAuthenticator.kt │ │ │ │ ├── DismissSecurityAlert.kt │ │ │ │ ├── DownloadAuditLogsData.kt │ │ │ │ ├── DownloadUserData.kt │ │ │ │ ├── DownloadVaultItemAttachment.kt │ │ │ │ ├── DownloadVpnClient.kt │ │ │ │ ├── ExportData.kt │ │ │ │ ├── FamilyMembers.kt │ │ │ │ ├── FilterByCollection.kt │ │ │ │ ├── FirstLaunch.kt │ │ │ │ ├── FollowUpNotification.kt │ │ │ │ ├── ForgetMasterPassword.kt │ │ │ │ ├── GeneratePassword.kt │ │ │ │ ├── GeneratePublicApiKey.kt │ │ │ │ ├── ImportData.kt │ │ │ │ ├── InteractInTacMessage.kt │ │ │ │ ├── LaunchPasswordChanger.kt │ │ │ │ ├── LoadDarkWebInsightsResults.kt │ │ │ │ ├── LockApp.kt │ │ │ │ ├── Login.kt │ │ │ │ ├── Logout.kt │ │ │ │ ├── MigrateAuthMethod.kt │ │ │ │ ├── MigrateCrypto.kt │ │ │ │ ├── Mv3ExtensionTaskInterruption.kt │ │ │ │ ├── Mv3ExtensionTaskReport.kt │ │ │ │ ├── OpenDomainDarkWebMonitoring.kt │ │ │ │ ├── OpenExtension.kt │ │ │ │ ├── OpenExternalVaultItemLink.kt │ │ │ │ ├── OpenHelpCenter.kt │ │ │ │ ├── OpenPricingPage.kt │ │ │ │ ├── OpenVaultItemDropdown.kt │ │ │ │ ├── PasswordManagerLaunch.kt │ │ │ │ ├── PerformAutofill.kt │ │ │ │ ├── Performance.kt │ │ │ │ ├── PhishingAttemptDetected.kt │ │ │ │ ├── PurchaseSubscription.kt │ │ │ │ ├── ReceiveRemoteFileUpdate.kt │ │ │ │ ├── ReceiveSecurityAlert.kt │ │ │ │ ├── RegisterPasskey.kt │ │ │ │ ├── ResendToken.kt │ │ │ │ ├── RespondSharedItem.kt │ │ │ │ ├── RestartPlan.kt │ │ │ │ ├── RestorePassword.kt │ │ │ │ ├── RevealVaultItemField.kt │ │ │ │ ├── RightClickMenuAction.kt │ │ │ │ ├── SearchVaultItem.kt │ │ │ │ ├── SelectCollection.kt │ │ │ │ ├── SelectSpace.kt │ │ │ │ ├── SelectVaultItem.kt │ │ │ │ ├── SendManualInvite.kt │ │ │ │ ├── SetupConfidentialScim.kt │ │ │ │ ├── SetupNudges.kt │ │ │ │ ├── SetupRiskDetection.kt │ │ │ │ ├── SetupSplunkIntegration.kt │ │ │ │ ├── SetupSso.kt │ │ │ │ ├── ShareItem.kt │ │ │ │ ├── SharingOutcome.kt │ │ │ │ ├── SharingSelect.kt │ │ │ │ ├── SharingStart.kt │ │ │ │ ├── ShowVersionValidityMessage.kt │ │ │ │ ├── SignupToDashlane.kt │ │ │ │ ├── SubmitAdminProfilingQuestions.kt │ │ │ │ ├── SubmitData.kt │ │ │ │ ├── SubmitInProductFormAnswer.kt │ │ │ │ ├── Sync.kt │ │ │ │ ├── ToggleAnalytics.kt │ │ │ │ ├── ToggleNudge.kt │ │ │ │ ├── TransferNewDevice.kt │ │ │ │ ├── UpdateCollection.kt │ │ │ │ ├── UpdateCommunicationsPreferences.kt │ │ │ │ ├── UpdateDeviceSettings.kt │ │ │ │ ├── UpdatePaymentMethod.kt │ │ │ │ ├── UpdateSharedItem.kt │ │ │ │ ├── UpdateVaultItem.kt │ │ │ │ ├── UpdateVaultItemAttachment.kt │ │ │ │ ├── UseAccountRecoveryKey.kt │ │ │ │ ├── UseAnotherAccount.kt │ │ │ │ ├── UseVaultItem.kt │ │ │ │ ├── UserChangeLoginEmail.kt │ │ │ │ ├── UserSettings.kt │ │ │ │ ├── UserVerificationAttempted.kt │ │ │ │ ├── UserVerificationCompleted.kt │ │ │ │ ├── VaultReport.kt │ │ │ │ ├── VerifyDomain.kt │ │ │ │ ├── ViewPage.kt │ │ │ │ └── ViewVaultItemAttachment.kt │ │ │ ├── service │ │ │ ├── ActivityLogErrorReporter.kt │ │ │ ├── ActivityLogService.kt │ │ │ ├── AnalyticsErrorReporter.kt │ │ │ └── AnalyticsLogService.kt │ │ │ └── storage │ │ │ ├── LogItem.kt │ │ │ ├── LogStorage.kt │ │ │ └── StorageCategory.kt │ └── tracking-schemas │ │ ├── definitions │ │ ├── browse.json │ │ ├── browse │ │ │ └── pages.json │ │ ├── context │ │ │ ├── app.json │ │ │ ├── browser.json │ │ │ ├── context.json │ │ │ ├── device.json │ │ │ └── user.json │ │ ├── event.json │ │ ├── flow.json │ │ ├── properties │ │ │ ├── account_creation.json │ │ │ ├── account_recovery_key.json │ │ │ ├── attribution.json │ │ │ ├── authentication.json │ │ │ ├── authenticator_app.json │ │ │ ├── autofill.json │ │ │ ├── b2b.json │ │ │ ├── call_to_action.json │ │ │ ├── change_login_email.json │ │ │ ├── change_password.json │ │ │ ├── device_transfer.json │ │ │ ├── family.json │ │ │ ├── fields_filled_by.json │ │ │ ├── generate_password.json │ │ │ ├── integrations.json │ │ │ ├── mass_deployment.json │ │ │ ├── migrate_auth_method.json │ │ │ ├── migrate_crypto.json │ │ │ ├── passkeys.json │ │ │ ├── performance.json │ │ │ ├── receive_remote_file_update.json │ │ │ ├── settings.json │ │ │ ├── shared.json │ │ │ ├── sharing.json │ │ │ ├── sso.json │ │ │ ├── submit_admin_profiling_questions.json │ │ │ ├── submit_in_product_form_answer.json │ │ │ ├── sync.json │ │ │ ├── ui.json │ │ │ ├── user_settings.json │ │ │ ├── vault.json │ │ │ ├── vault_report.json │ │ │ ├── version_validity.json │ │ │ └── vpn.json │ │ └── session.json │ │ ├── events │ │ ├── anonymous │ │ │ ├── event.json │ │ │ └── properties │ │ │ │ ├── add_two_factor_authentication_to_credential.json │ │ │ │ ├── antiphishing_display_alert.json │ │ │ │ ├── antiphishing_redirect.json │ │ │ │ ├── authenticate_with_passkey.json │ │ │ │ ├── authenticator_add_otp_code.json │ │ │ │ ├── authenticator_remove_otp_code.json │ │ │ │ ├── autofill_accept.json │ │ │ │ ├── autofill_choose_generated_password.json │ │ │ │ ├── autofill_correct.json │ │ │ │ ├── autofill_dismiss.json │ │ │ │ ├── autofill_display_icons.json │ │ │ │ ├── autofill_setting.json │ │ │ │ ├── autofill_submit_form.json │ │ │ │ ├── autofill_suggest.json │ │ │ │ ├── change_password_guided.json │ │ │ │ ├── copy_vault_item_field.json │ │ │ │ ├── launch_password_changer.json │ │ │ │ ├── mass_deployment_status.json │ │ │ │ ├── master_password_health_report.json │ │ │ │ ├── open_external_vault_item_link.json │ │ │ │ ├── other_authenticators_installed_report.json │ │ │ │ ├── perform_autofill.json │ │ │ │ ├── phishing_attempt_detected.json │ │ │ │ ├── ping.json │ │ │ │ ├── register_passkey.json │ │ │ │ ├── remove_two_factor_authentication_from_credential.json │ │ │ │ ├── restore_password.json │ │ │ │ ├── reveal_vault_item_field.json │ │ │ │ ├── right_click_menu_action.json │ │ │ │ └── update_credential.json │ │ └── user │ │ │ ├── event.json │ │ │ └── properties │ │ │ ├── activate_vpn.json │ │ │ ├── add_new_device.json │ │ │ ├── add_new_payment_method.json │ │ │ ├── add_two_factor_authentication_to_credential.json │ │ │ ├── admin_change_login_email.json │ │ │ ├── antiphishing_redirect.json │ │ │ ├── ask_authentication.json │ │ │ ├── ask_use_other_authentication.json │ │ │ ├── authenticate_with_passkey.json │ │ │ ├── authenticator_add_otp_code.json │ │ │ ├── authenticator_download_password_manager.json │ │ │ ├── authenticator_launch.json │ │ │ ├── authenticator_push_action.json │ │ │ ├── authenticator_remove_otp_code.json │ │ │ ├── autofill_accept.json │ │ │ ├── autofill_click.json │ │ │ ├── autofill_correct.json │ │ │ ├── autofill_dismiss.json │ │ │ ├── autofill_password_generate_show_more.json │ │ │ ├── autofill_setting.json │ │ │ ├── autofill_submit_form.json │ │ │ ├── autofill_suggest.json │ │ │ ├── buy_seat.json │ │ │ ├── call_to_action.json │ │ │ ├── cancel_plan.json │ │ │ ├── change_contact_email.json │ │ │ ├── change_master_password.json │ │ │ ├── change_password_guided.json │ │ │ ├── change_protect_with_master_password_setting.json │ │ │ ├── change_team_plan_tier.json │ │ │ ├── change_two_factor_authentication_setting.json │ │ │ ├── click.json │ │ │ ├── complete_onboarding_task.json │ │ │ ├── complete_tac_onboarding_task.json │ │ │ ├── copy_vault_item_field.json │ │ │ ├── create_account.json │ │ │ ├── create_account_recovery_key.json │ │ │ ├── credential_health_report.json │ │ │ ├── delete_account_recovery_key.json │ │ │ ├── delete_u2f_authenticator.json │ │ │ ├── dismiss_security_alert.json │ │ │ ├── download_audit_logs_data.json │ │ │ ├── download_user_data.json │ │ │ ├── download_vault_item_attachment.json │ │ │ ├── download_vpn_client.json │ │ │ ├── export_data.json │ │ │ ├── family_members.json │ │ │ ├── filter_by_collection.json │ │ │ ├── first_launch.json │ │ │ ├── follow_up_notification.json │ │ │ ├── forget_master_password.json │ │ │ ├── generate_password.json │ │ │ ├── generate_public_api_key.json │ │ │ ├── import_data.json │ │ │ ├── interact_in_tac_message.json │ │ │ ├── launch_password_changer.json │ │ │ ├── load_dark_web_insights_results.json │ │ │ ├── lock_app.json │ │ │ ├── login.json │ │ │ ├── logout.json │ │ │ ├── migrate_auth_method.json │ │ │ ├── migrate_crypto.json │ │ │ ├── mv3_extension_task_interruption.json │ │ │ ├── mv3_extension_task_report.json │ │ │ ├── open_domain_dark_web_monitoring.json │ │ │ ├── open_extension.json │ │ │ ├── open_external_vault_item_link.json │ │ │ ├── open_help_center.json │ │ │ ├── open_pricing_page.json │ │ │ ├── open_vault_item_dropdown.json │ │ │ ├── password_manager_launch.json │ │ │ ├── perform_autofill.json │ │ │ ├── performance.json │ │ │ ├── phishing_attempt_detected.json │ │ │ ├── purchase_subscription.json │ │ │ ├── receive_remote_file_update.json │ │ │ ├── receive_security_alert.json │ │ │ ├── register_passkey.json │ │ │ ├── resend_token.json │ │ │ ├── respond_shared_item.json │ │ │ ├── restart_plan.json │ │ │ ├── restore_password.json │ │ │ ├── reveal_vault_item_field.json │ │ │ ├── right_click_menu_action.json │ │ │ ├── search_vault_item.json │ │ │ ├── select_collection.json │ │ │ ├── select_space.json │ │ │ ├── select_vault_item.json │ │ │ ├── send_manual_invite.json │ │ │ ├── setup_confidential_scim.json │ │ │ ├── setup_nudges.json │ │ │ ├── setup_risk_detection.json │ │ │ ├── setup_splunk_integration.json │ │ │ ├── setup_sso.json │ │ │ ├── share_item.json │ │ │ ├── sharing_outcome.json │ │ │ ├── sharing_select.json │ │ │ ├── sharing_start.json │ │ │ ├── show_version_validity_message.json │ │ │ ├── signup_to_dashlane.json │ │ │ ├── submit_admin_profiling_questions.json │ │ │ ├── submit_data.json │ │ │ ├── submit_in_product_form_answer.json │ │ │ ├── sync.json │ │ │ ├── toggle_analytics.json │ │ │ ├── toggle_nudge.json │ │ │ ├── transfer_new_device.json │ │ │ ├── update_collection.json │ │ │ ├── update_communications_preferences.json │ │ │ ├── update_device_settings.json │ │ │ ├── update_payment_method.json │ │ │ ├── update_shared_item.json │ │ │ ├── update_vault_item.json │ │ │ ├── update_vault_item_attachment.json │ │ │ ├── use_account_recovery_key.json │ │ │ ├── use_another_account.json │ │ │ ├── use_vault_item.json │ │ │ ├── user_change_login_email.json │ │ │ ├── user_settings.json │ │ │ ├── user_verification_attempted.json │ │ │ ├── user_verification_completed.json │ │ │ ├── vault_report.json │ │ │ ├── verify_domain.json │ │ │ ├── view_page.json │ │ │ └── view_vault_item_attachment.json │ │ ├── examples │ │ ├── failure │ │ │ ├── anonymous │ │ │ │ ├── antiphishing_redirect_bad_domain_id.json │ │ │ │ ├── bad_domain_id.json │ │ │ │ ├── bad_uuid_format.json │ │ │ │ ├── change_password_guided_without_domain.json │ │ │ │ ├── incorrect_date_format.json │ │ │ │ ├── os_missing_type.json │ │ │ │ ├── ua_in_browse_context.json │ │ │ │ ├── undefined_platform.json │ │ │ │ └── unexpected_property_name.json │ │ │ └── user │ │ │ │ ├── extra_click_properties.json │ │ │ │ ├── import_data_missing_file_type.json │ │ │ │ ├── incorrect_date_time_format.json │ │ │ │ ├── sync_missing_properties.json │ │ │ │ ├── sync_missing_trigger.json │ │ │ │ ├── unexpected_category.json │ │ │ │ └── use_account_recovery_key__flow_id_error.json │ │ └── success │ │ │ ├── anonymous │ │ │ ├── authenticator_app │ │ │ │ ├── authenticator_add_otp_code.json │ │ │ │ ├── authenticator_remove_otp_code.json │ │ │ │ └── other_authenticators_installed_report.json │ │ │ ├── autofill │ │ │ │ ├── autofill_close_password_generator.json │ │ │ │ ├── autofill_close_suggestion.json │ │ │ │ ├── autofill_data_capture.json │ │ │ │ ├── autofill_data_capture_generated_password.json │ │ │ │ ├── autofill_data_capture_save_password.json │ │ │ │ ├── autofill_display_icons.json │ │ │ │ ├── autofill_generate_password.json │ │ │ │ ├── autofill_password_generator_options_dismiss.json │ │ │ │ ├── autofill_replace_dismiss.json │ │ │ │ ├── autofill_sec_warning.json │ │ │ │ ├── autofill_submit_form.json │ │ │ │ ├── autofill_suggest_data_injection.json │ │ │ │ ├── autofill_suggest_save_password.json │ │ │ │ ├── perform_autofill.json │ │ │ │ └── phishing_attempt_detected_success.json │ │ │ ├── mass_deployment_status.json │ │ │ ├── passkeys │ │ │ │ ├── authenticate_with_passkey_failure.json │ │ │ │ ├── authenticate_with_passkey_success.json │ │ │ │ ├── register_passkey_failure.json │ │ │ │ └── register_passkey_success.json │ │ │ ├── ping.json │ │ │ ├── tools │ │ │ │ ├── antiphishing_display_alert.json │ │ │ │ ├── change_password_guided.json │ │ │ │ ├── launch_password_changer.json │ │ │ │ └── restore_password.json │ │ │ └── vault │ │ │ │ ├── add_two_factor_authentication_to_credential.json │ │ │ │ ├── anon_add_credential.json │ │ │ │ ├── anon_edit_credential.json │ │ │ │ ├── anon_edit_credential_associated_apps_list.json │ │ │ │ ├── anon_edit_credential_associated_domains_list.json │ │ │ │ ├── copy_vault_item_field_details.json │ │ │ │ ├── master_password_health_report.json │ │ │ │ ├── open_external_link.json │ │ │ │ ├── remove_two_factor_authentication_from_credential.json │ │ │ │ ├── reveal_vault_item_field.json │ │ │ │ └── update_credential.json │ │ │ └── user │ │ │ ├── account_creation │ │ │ ├── create_account.json │ │ │ ├── create_account_android.json │ │ │ ├── create_account_ios.json │ │ │ ├── create_account_web.json │ │ │ └── signup_to_dashlane.json │ │ │ ├── add_new_payment_method.json │ │ │ ├── admin_change_login_email.json │ │ │ ├── antiphishing_redirect.json │ │ │ ├── attribution │ │ │ ├── first_launch.json │ │ │ ├── first_launch_android.json │ │ │ ├── first_launch_ios.json │ │ │ └── first_launch_saex.json │ │ │ ├── authenticate_with_passkey.json │ │ │ ├── authentication │ │ │ ├── add_new_device.json │ │ │ ├── ask_authentication.json │ │ │ ├── ask_authentication_with_verification_mode.json │ │ │ ├── ask_use_another_authentication.json │ │ │ ├── change_two_factor_authentication_setting.json │ │ │ ├── change_two_factor_authentication_setting_error.json │ │ │ ├── delete_u2f_authenticator.json │ │ │ ├── delete_u2f_authenticator_error.json │ │ │ ├── forget_master_password.json │ │ │ ├── lock_app.json │ │ │ ├── login.json │ │ │ ├── login_with_otp.json │ │ │ ├── logout.json │ │ │ ├── open_extension_logged_in.json │ │ │ ├── password_manager_launch.json │ │ │ ├── resend_token.json │ │ │ ├── transfer_new_device.json │ │ │ └── use_another_account.json │ │ │ ├── authenticator_app │ │ │ ├── authenticator_add_otp_code.json │ │ │ ├── authenticator_download_password_manager.json │ │ │ ├── authenticator_launch.json │ │ │ ├── authenticator_push_action.json │ │ │ └── authenticator_remove_otp_code.json │ │ │ ├── autofill │ │ │ ├── autofill_data_capture.json │ │ │ ├── autofill_data_capture_generated_password.json │ │ │ ├── autofill_data_capture_never_again.json │ │ │ ├── autofill_data_capture_save_password.json │ │ │ ├── autofill_disable_field.json │ │ │ ├── autofill_disable_site.json │ │ │ ├── autofill_modify_password_generator.json │ │ │ ├── autofill_options_dismiss.json │ │ │ ├── autofill_reactivation_dismiss.json │ │ │ ├── autofill_sec_warning.json │ │ │ ├── autofill_show_more.json │ │ │ ├── autofill_submit_form.json │ │ │ ├── autofill_suggest_data_injection.json │ │ │ ├── autofill_suggest_save_password.json │ │ │ ├── change_classification_autofill.json │ │ │ ├── correct_autofill.json │ │ │ ├── perform_autofill.json │ │ │ ├── phishing_attempt_detected_success.json │ │ │ └── right_click_menu_action.json │ │ │ ├── buy_seat.json │ │ │ ├── cancel_plan.json │ │ │ ├── change_contact_email.json │ │ │ ├── change_team_plan_tier.json │ │ │ ├── download_audit_logs_data.json │ │ │ ├── download_user_data.json │ │ │ ├── family_members.json │ │ │ ├── follow_up_notification.json │ │ │ ├── interact_in_tac_message.json │ │ │ ├── load_dark_web_insights_results.json │ │ │ ├── migrate_auth_method.json │ │ │ ├── migrate_crypto.json │ │ │ ├── open_domain_dark_web_monitoring.json │ │ │ ├── open_help_center.json │ │ │ ├── open_pricing_page.json │ │ │ ├── performance.json │ │ │ ├── popover_manual_sync.json │ │ │ ├── popover_manual_sync_failed.json │ │ │ ├── purchase_subscription_success.json │ │ │ ├── receive_remote_file_update.json │ │ │ ├── recovery │ │ │ ├── create_account_recovery_key.json │ │ │ ├── create_account_recovery_key_error.json │ │ │ ├── delete_account_recovery_key.json │ │ │ ├── use_account_recovery_key.json │ │ │ ├── use_account_recovery_key__flow_id.json │ │ │ └── use_account_recovery_key_error.json │ │ │ ├── register_passkey.json │ │ │ ├── restart_plan.json │ │ │ ├── send_manual_invite.json │ │ │ ├── settings │ │ │ ├── toggle_analytics.json │ │ │ └── update_communications_preferences.json │ │ │ ├── setup_confidential_scim.json │ │ │ ├── setup_risk_detection.json │ │ │ ├── setup_splunk_integration.json │ │ │ ├── setup_sso.json │ │ │ ├── sharing │ │ │ ├── respond_shared_item.json │ │ │ ├── share_item.json │ │ │ ├── sharing_outcome.json │ │ │ ├── sharing_outcome_item_sharing.json │ │ │ ├── sharing_select.json │ │ │ ├── sharing_start.json │ │ │ ├── sharing_start_item_sharing.json │ │ │ └── update_shared_item.json │ │ │ ├── show_version_validity_message.json │ │ │ ├── submit_data.json │ │ │ ├── sync_extra_fields.json │ │ │ ├── sync_required_fields.json │ │ │ ├── technical │ │ │ ├── mv3_extension_task_interruption.json │ │ │ └── mv3_extension_task_report.json │ │ │ ├── tools │ │ │ ├── activate_vpn.json │ │ │ ├── activate_vpn_error.json │ │ │ ├── change_master_password.json │ │ │ ├── change_master_password_error.json │ │ │ ├── change_password_guided.json │ │ │ ├── change_protect_with_master_password_setting.json │ │ │ ├── download_vpn_client.json │ │ │ ├── export_data.json │ │ │ ├── generate_password.json │ │ │ ├── generate_public_api_key.json │ │ │ ├── launch_password_changer.json │ │ │ ├── restore_password.json │ │ │ ├── setup_nudges.json │ │ │ └── toggle_nudge.json │ │ │ ├── ui │ │ │ ├── call_to_action_device_sync_limit.json │ │ │ ├── call_to_action_essentials.json │ │ │ ├── call_to_action_redeem_offer.json │ │ │ ├── call_to_action_scim_idp_error.json │ │ │ ├── call_to_action_trial_modal.json │ │ │ ├── click_buy_dashlane_cta.json │ │ │ ├── click_login.json │ │ │ ├── complete_onboarding_task.json │ │ │ ├── complete_tac_onboarding_task.json │ │ │ ├── submit_admin_profiling_questions.json │ │ │ ├── submit_in_product_form_answer.json │ │ │ ├── view_day1_learn_more.json │ │ │ └── view_input_email.json │ │ │ ├── update_device_settings.json │ │ │ ├── update_payment_method.json │ │ │ ├── user_change_login_email.json │ │ │ ├── user_settings.json │ │ │ ├── user_verification_attempted.json │ │ │ ├── user_verification_completed.json │ │ │ ├── vault │ │ │ ├── add_two_factor_authentication_to_credential.json │ │ │ ├── attach_to_vault_item.json │ │ │ ├── copy_vault_item_field_details.json │ │ │ ├── copy_vault_item_field_list.json │ │ │ ├── credential_health_report.json │ │ │ ├── delete_multi_credentials.json │ │ │ ├── delete_secure_note.json │ │ │ ├── dismiss_security_alert.json │ │ │ ├── download_vault_item_attachment.json │ │ │ ├── edit_credential.json │ │ │ ├── excluded_from_security_score.json │ │ │ ├── filter_by_collection.json │ │ │ ├── import_data_failure.json │ │ │ ├── import_data_success.json │ │ │ ├── open_copy_vault_item_details.json │ │ │ ├── open_external_vault_item_field.json │ │ │ ├── open_vault_item_dropdown.json │ │ │ ├── receive_security_alert.json │ │ │ ├── reveal_vault_item_field.json │ │ │ ├── search_vault_item.json │ │ │ ├── select_collection.json │ │ │ ├── select_space.json │ │ │ ├── select_vault_item.json │ │ │ ├── update_collection.json │ │ │ ├── use_vault_item.json │ │ │ └── view_vault_item_attachment.json │ │ │ ├── vault_report.json │ │ │ └── verify_domain.json │ │ ├── meta │ │ ├── definition.json │ │ ├── event.json │ │ └── properties.json │ │ └── version.txt └── vault-xml │ ├── CONTRIBUTING.md │ ├── README.md │ ├── vault-xml-domain-data-source │ └── src │ │ └── main │ │ └── kotlin │ │ └── com │ │ └── dashlane │ │ └── xml │ │ └── model │ │ ├── TransactionDefinitions.kt │ │ ├── TransactionType.kt │ │ ├── Utils.kt │ │ ├── VaultExampleRepository.kt │ │ ├── VaultModel.kt │ │ └── VaultModelRepository.kt │ ├── vault-xml-domain-generator │ └── src │ │ └── main │ │ ├── kotlin │ │ └── com │ │ │ └── dashlane │ │ │ └── xml │ │ │ └── generator │ │ │ ├── Main.kt │ │ │ ├── TemplateFactory.kt │ │ │ └── templates │ │ │ ├── PropertiesTemplate.kt │ │ │ └── SyncObjectsTemplate.kt │ │ └── resources │ │ ├── SyncConflictDuplicates.kt.ftl │ │ ├── SyncObject.kt.ftl │ │ ├── SyncObjectType.kt.ftl │ │ ├── SyncObjectXml.kt.ftl │ │ ├── SyncObjectXmlConverters.kt.ftl │ │ ├── SyncObjectXmlName.kt.ftl │ │ ├── SyncSensitiveFields.kt.ftl │ │ ├── SyncTransactionName.kt.ftl │ │ └── SyncUserContentFields.kt.ftl │ ├── vault-xml-domain │ └── src │ │ └── main │ │ └── kotlin │ │ └── com │ │ └── dashlane │ │ └── xml │ │ └── domain │ │ ├── SyncConflictDuplicates.kt │ │ ├── SyncObfuscatedValue.kt │ │ ├── SyncObject.kt │ │ ├── SyncObjectBuilder.kt │ │ ├── SyncObjectType.kt │ │ ├── SyncObjectTypeUtils.kt │ │ ├── SyncObjectUtils.kt │ │ ├── SyncObjectXml.kt │ │ ├── SyncObjectXmlConverters.kt │ │ ├── SyncObjectXmlName.kt │ │ ├── SyncSensitiveFields.kt │ │ ├── SyncTransactionName.kt │ │ ├── SyncUserContentFields.kt │ │ ├── properties │ │ ├── AddressXml.kt │ │ ├── AuthCategoryXml.kt │ │ ├── AuthentifiantXml.kt │ │ ├── BankStatementXml.kt │ │ ├── CollectionXml.kt │ │ ├── CompanyXml.kt │ │ ├── DataChangeHistoryXml.kt │ │ ├── DriverLicenceXml.kt │ │ ├── EmailXml.kt │ │ ├── FiscalStatementXml.kt │ │ ├── GeneratedPasswordXml.kt │ │ ├── IdCardXml.kt │ │ ├── IdentityXml.kt │ │ ├── PasskeyXml.kt │ │ ├── PassportXml.kt │ │ ├── PaymentCreditCardXml.kt │ │ ├── PaymentPaypalXml.kt │ │ ├── PersonalWebsiteXml.kt │ │ ├── PhoneXml.kt │ │ ├── SecretXml.kt │ │ ├── SecureFileInfoXml.kt │ │ ├── SecureNoteCategoryXml.kt │ │ ├── SecureNoteXml.kt │ │ ├── SecurityBreachXml.kt │ │ ├── SettingsXml.kt │ │ ├── SocialSecurityStatementXml.kt │ │ ├── SyncObjectXml.kt │ │ └── WiFiXml.kt │ │ ├── time │ │ ├── Instant.kt │ │ ├── LocalDate.kt │ │ ├── Month.kt │ │ └── Year.kt │ │ └── utils │ │ ├── Base64Utils.kt │ │ ├── Country.kt │ │ ├── MapUtils.kt │ │ └── XmlValueUtils.kt │ ├── vault-xml-serializer │ └── src │ │ └── main │ │ └── kotlin │ │ └── com │ │ └── dashlane │ │ └── xml │ │ └── serializer │ │ ├── XmlDeserializer.kt │ │ ├── XmlDeserializerImpl.kt │ │ ├── XmlException.kt │ │ ├── XmlFilterReader.kt │ │ ├── XmlName.kt │ │ ├── XmlSerialization.kt │ │ ├── XmlSerializer.kt │ │ ├── XmlSerializerImpl.kt │ │ └── utils │ │ └── CollectionUtils.kt │ └── vault-xml │ └── src │ └── main │ └── kotlin │ └── com │ └── dashlane │ └── xml │ ├── SyncObjectEnum.kt │ ├── XmlBackup.kt │ ├── XmlData.kt │ ├── XmlObfuscatedValue.kt │ ├── XmlTransaction.kt │ ├── XmlTypeException.kt │ └── utils │ └── MapUtils.kt ├── features ├── account-recovery-key │ ├── domain │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── dashlane │ │ │ └── accountrecoverykey │ │ │ ├── AccountRecoveryKeyRepository.kt │ │ │ ├── AccountRecoveryKeySettingStateRefresher.kt │ │ │ └── setting │ │ │ ├── AccountRecoveryKeySettingState.kt │ │ │ └── AccountRecoveryKeySettingStateHolder.kt │ └── ui │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── accountrecoverykey │ │ │ ├── AccountRecoveryKeyDestination.kt │ │ │ ├── AccountRecoveryKeySettingsNavigation.kt │ │ │ ├── AccountRecoveryKeySetupNavigation.kt │ │ │ ├── activation │ │ │ ├── confirm │ │ │ │ ├── AccountRecoveryKeyConfirmScreen.kt │ │ │ │ ├── AccountRecoveryKeyConfirmState.kt │ │ │ │ └── AccountRecoveryKeyConfirmViewModel.kt │ │ │ ├── generate │ │ │ │ ├── AccountRecoveryKeyGenerateModule.kt │ │ │ │ ├── AccountRecoveryKeyGenerateScreen.kt │ │ │ │ ├── AccountRecoveryKeyGenerateState.kt │ │ │ │ ├── AccountRecoveryKeyGenerateUseCase.kt │ │ │ │ └── AccountRecoveryKeyGenerateViewModel.kt │ │ │ ├── intro │ │ │ │ ├── AccountRecoveryKeyActivationIntroScreen.kt │ │ │ │ ├── AccountRecoveryKeyActivationIntroState.kt │ │ │ │ └── AccountRecoveryKeyActivationIntroViewModel.kt │ │ │ └── success │ │ │ │ └── AccountRecoveryKeySuccessScreen.kt │ │ │ ├── enforce │ │ │ └── AccountRecoveryKeyEnforcer.kt │ │ │ └── setting │ │ │ ├── AccountRecoveryKeyDetailSettingScreen.kt │ │ │ ├── AccountRecoveryKeyDetailSettingState.kt │ │ │ └── AccountRecoveryKeyDetailSettingViewModel.kt │ │ └── res │ │ └── values │ │ └── strings_account_recovery_key.xml ├── account-summary │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── accountsummary │ │ │ ├── AccountSummaryDestination.kt │ │ │ ├── AccountSummaryNavigation.kt │ │ │ ├── AccountSummaryScreen.kt │ │ │ ├── AccountSummaryViewModel.kt │ │ │ ├── AccountSummaryViewState.kt │ │ │ ├── changecontact │ │ │ ├── ChangeContactEmailScreen.kt │ │ │ ├── ChangeContactEmailState.kt │ │ │ └── ChangeContactEmailViewModel.kt │ │ │ ├── changelogin │ │ │ ├── ChangeLoginEmailModule.kt │ │ │ ├── ChangeLoginEmailScreen.kt │ │ │ ├── ChangeLoginEmailState.kt │ │ │ ├── ChangeLoginEmailViewModel.kt │ │ │ ├── ChangeLoginUseCase.kt │ │ │ └── verification │ │ │ │ ├── EmailVerificationModule.kt │ │ │ │ ├── EmailVerificationScreen.kt │ │ │ │ ├── EmailVerificationState.kt │ │ │ │ ├── EmailVerificationUseCase.kt │ │ │ │ └── EmailVerificationViewModel.kt │ │ │ └── common │ │ │ └── ChangeEmailContent.kt │ │ └── res │ │ └── values │ │ └── strings_account_summary.xml ├── activate-totp │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ ├── activatetotp │ │ │ └── ViewBindingUtil.kt │ │ │ └── disabletotp │ │ │ ├── DisableTotpActivity.kt │ │ │ ├── DisableTotpDeactivationErrorFragment.kt │ │ │ ├── DisableTotpEnforcedIntroActivity.kt │ │ │ ├── DisableTotpEnforcedIntroScreen.kt │ │ │ ├── deactivation │ │ │ ├── DisableTotpDeactivationFragment.kt │ │ │ └── DisableTotpDeactivationViewModel.kt │ │ │ └── token │ │ │ ├── DisableTotpEnterTokenFragment.kt │ │ │ ├── TotpRecoveryCodeAlertDialogBuilder.kt │ │ │ └── TotpRecoveryCodeDialogViewModel.kt │ │ └── res │ │ ├── drawable │ │ ├── background_enable_totp_surface.xml │ │ ├── ic_enable_totp_recovery_info_option.xml │ │ ├── illu_enable_totp_complete.xml │ │ └── picto_error_fail_circle.xml │ │ ├── layout │ │ ├── activate_totp_error.xml │ │ ├── activate_totp_loading.xml │ │ ├── activity_disable_totp.xml │ │ ├── dialog_2fa_recovery.xml │ │ └── fragment_disable_totp_enter_token.xml │ │ ├── navigation │ │ └── navigation_disable_totp.xml │ │ └── values │ │ └── strings.xml ├── authenticator │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── authenticator │ │ │ ├── AuthenticatorBaseViewModelContract.kt │ │ │ ├── AuthenticatorBoardingActivity.kt │ │ │ ├── AuthenticatorEnterActivationKey.kt │ │ │ ├── AuthenticatorLogger.kt │ │ │ ├── AuthenticatorMultipleMatchesResult.kt │ │ │ ├── AuthenticatorResultActivity.kt │ │ │ ├── AuthenticatorUtils.kt │ │ │ ├── dashboard │ │ │ ├── AuthenticatorDashboardCredentialItemAdapter.kt │ │ │ ├── AuthenticatorDashboardCredentialItemViewHolder.kt │ │ │ ├── AuthenticatorDashboardEditState.kt │ │ │ ├── AuthenticatorDashboardUiState.kt │ │ │ ├── AuthenticatorDashboardViewModel.kt │ │ │ ├── AuthenticatorDashboardViewModelContract.kt │ │ │ └── AuthenticatorDashboardViewProxy.kt │ │ │ ├── item │ │ │ └── AuthenticatorViewProxy.kt │ │ │ ├── suggestions │ │ │ ├── AuthenticatorBoardingResult.kt │ │ │ ├── AuthenticatorSuggestionsCredentialItemAdapter.kt │ │ │ ├── AuthenticatorSuggestionsCredentialItemViewHolder.kt │ │ │ ├── AuthenticatorSuggestionsUiState.kt │ │ │ ├── AuthenticatorSuggestionsViewModel.kt │ │ │ ├── AuthenticatorSuggestionsViewModelContract.kt │ │ │ └── ui │ │ │ │ ├── AuthenticatorAllSetup.kt │ │ │ │ ├── AuthenticatorFaq.kt │ │ │ │ ├── AuthenticatorHas2FACompatibleLogins.kt │ │ │ │ ├── AuthenticatorNo2FACompatibleLogins.kt │ │ │ │ ├── AuthenticatorNoLoginOnboarding.kt │ │ │ │ └── AuthenticatorSuggestionScreen.kt │ │ │ ├── ui │ │ │ ├── AuthenticatorBoardingScreen.kt │ │ │ └── AuthenticatorResultScreen.kt │ │ │ └── util │ │ │ ├── AuthenticatorDialogHelper.kt │ │ │ └── SetUpAuthenticatorResultContract.kt │ │ └── res │ │ ├── drawable │ │ ├── authenticator_list_background.xml │ │ ├── ic_authenticator.xml │ │ ├── ic_authenticator_edit_button.xml │ │ ├── ic_authenticator_item_copy.xml │ │ ├── ic_authenticator_item_delete.xml │ │ └── ic_refresh.xml │ │ ├── layout │ │ ├── activity_enter_activation_key.xml │ │ ├── activity_mutliple_matches_result.xml │ │ ├── authenticator_credential_item.xml │ │ ├── authenticator_credential_item_otp.xml │ │ ├── authenticator_credential_multiple_matches_item.xml │ │ ├── fragment_authenticator_dashboard.xml │ │ ├── header_authenticator_credential_item_otp_header.xml │ │ └── item_authenticator_credential_item_otp.xml │ │ └── values │ │ └── strings.xml ├── biometric │ ├── domain │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── dashlane │ │ │ └── biometric │ │ │ └── BiometricSetupRepository.kt │ └── ui │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── biometric │ │ │ ├── BiometricSetupActivity.kt │ │ │ ├── BiometricSetupModule.kt │ │ │ ├── BiometricSetupScreen.kt │ │ │ ├── BiometricSetupState.kt │ │ │ ├── BiometricSetupUseCase.kt │ │ │ └── BiometricSetupViewModel.kt │ │ └── res │ │ └── values │ │ └── strings_biometric.xml ├── change-master-password │ ├── domain │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── dashlane │ │ │ └── changemasterpassword │ │ │ ├── ChangeMasterPasswordRepository.kt │ │ │ └── MasterPasswordChanger.kt │ └── ui │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── changemasterpassword │ │ │ ├── ChangeMasterPasswordNavigation.kt │ │ │ ├── ChangeMasterPasswordOrigin.kt │ │ │ ├── ChangeMasterPasswordScreen.kt │ │ │ ├── ChangeMasterPasswordState.kt │ │ │ ├── ChangeMasterPasswordViewModel.kt │ │ │ ├── success │ │ │ ├── ChangeMasterPasswordSuccessScreen.kt │ │ │ ├── ChangeMasterPasswordSuccessState.kt │ │ │ └── ChangeMasterPasswordSuccessViewModel.kt │ │ │ └── warning │ │ │ ├── ChangeMasterPasswordWarningScreen.kt │ │ │ ├── ChangeMasterPasswordWarningState.kt │ │ │ └── ChangeMasterPasswordWarningViewModel.kt │ │ └── res │ │ ├── drawable │ │ └── ic_sync_multi_device.xml │ │ └── values │ │ └── strings_change_master_password.xml ├── create-account │ ├── domain │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── dashlane │ │ │ └── createaccount │ │ │ ├── AccountCreationSetup.kt │ │ │ ├── AccountCreatorImpl.kt │ │ │ ├── AccountCreatorModule.kt │ │ │ ├── CreateAccountAuthModule.kt │ │ │ ├── CreateAccountRepository.kt │ │ │ └── passwordless │ │ │ ├── MplessAccountCreationRepository.kt │ │ │ └── UserData.kt │ └── ui │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── createaccount │ │ │ ├── CreateAccountDestination.kt │ │ │ ├── biometric │ │ │ ├── CreateAccountBiometricModule.kt │ │ │ ├── CreateAccountBiometricScreen.kt │ │ │ ├── CreateAccountBiometricState.kt │ │ │ ├── CreateAccountBiometricUseCase.kt │ │ │ └── CreateAccountBiometricViewModel.kt │ │ │ ├── email │ │ │ ├── CreateAccountEmailModule.kt │ │ │ ├── CreateAccountEmailScreen.kt │ │ │ ├── CreateAccountEmailState.kt │ │ │ ├── CreateAccountEmailUseCase.kt │ │ │ └── CreateAccountEmailViewModel.kt │ │ │ ├── password │ │ │ ├── CreateAccountPasswordModule.kt │ │ │ ├── CreateAccountPasswordScreen.kt │ │ │ ├── CreateAccountPasswordState.kt │ │ │ ├── CreateAccountPasswordUseCase.kt │ │ │ └── CreateAccountPasswordViewModel.kt │ │ │ ├── passwordless │ │ │ ├── MplessAccountCreationViewModel.kt │ │ │ ├── MplessDestination.kt │ │ │ ├── biometrics │ │ │ │ ├── BiometricSetupState.kt │ │ │ │ ├── BiometricsSetupScreen.kt │ │ │ │ └── BiometricsSetupViewModel.kt │ │ │ ├── confirmation │ │ │ │ ├── ConfirmationScreen.kt │ │ │ │ ├── ConfirmationScreenViewModel.kt │ │ │ │ └── ConfirmationState.kt │ │ │ ├── info │ │ │ │ └── InfoScreen.kt │ │ │ └── termsandconditions │ │ │ │ ├── TermsAndConditionsScreen.kt │ │ │ │ ├── TermsAndConditionsState.kt │ │ │ │ └── TermsAndConditionsViewModel.kt │ │ │ └── tos │ │ │ ├── CreateAccountTermsAndConditionsModule.kt │ │ │ ├── CreateAccountTermsAndConditionsScreen.kt │ │ │ ├── CreateAccountTermsAndConditionsState.kt │ │ │ ├── CreateAccountTermsAndConditionsUseCase.kt │ │ │ └── CreateAccountTermsAndConditionsViewModel.kt │ │ └── res │ │ └── values │ │ └── strings_create_account.xml ├── credentialmanager │ ├── .gitignore │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ ├── credentialmanager │ │ │ ├── CredentialLoader.kt │ │ │ ├── CredentialManagerDAO.kt │ │ │ ├── CredentialManagerDAOImpl.kt │ │ │ ├── CredentialManagerHandler.kt │ │ │ ├── CredentialManagerIntent.kt │ │ │ ├── CredentialManagerLocker.kt │ │ │ ├── CredentialManagerLogger.kt │ │ │ ├── CredentialManagerModule.kt │ │ │ ├── DashlaneCredentialProviderService.kt │ │ │ ├── WearCredentialManagerUtil.kt │ │ │ ├── authentication │ │ │ │ └── CredentialBiometricAuthProvider.kt │ │ │ ├── credential │ │ │ │ ├── CredentialPasskeyManager.kt │ │ │ │ ├── CredentialPasswordManager.kt │ │ │ │ └── KeyUtils.kt │ │ │ ├── model │ │ │ │ ├── CloudPasskeyException.kt │ │ │ │ ├── CredentialManagerPlatform.kt │ │ │ │ ├── DashlaneCredentialManagerException.kt │ │ │ │ ├── PasskeyPrivilegedApplications.kt │ │ │ │ ├── PrivilegedAllowlist.kt │ │ │ │ ├── Util.kt │ │ │ │ └── fido │ │ │ │ │ ├── AuthenticatorFlags.kt │ │ │ │ │ ├── FidoPublicKeyCredential.kt │ │ │ │ │ ├── common │ │ │ │ │ ├── AuthenticatorAttachment.kt │ │ │ │ │ ├── AuthenticatorSelectionCriteria.kt │ │ │ │ │ ├── ClientExtensionResults.kt │ │ │ │ │ ├── ClientJson.kt │ │ │ │ │ ├── CredentialType.kt │ │ │ │ │ └── RequestType.kt │ │ │ │ │ ├── request │ │ │ │ │ ├── PasskeyCreationOptions.kt │ │ │ │ │ └── PasskeyRequestOptions.kt │ │ │ │ │ └── response │ │ │ │ │ ├── AuthenticatorAssertionResponse.kt │ │ │ │ │ ├── AuthenticatorAttestationResponse.kt │ │ │ │ │ └── AuthenticatorResponse.kt │ │ │ └── ui │ │ │ │ ├── CredentialManagerActivity.kt │ │ │ │ ├── CredentialManagerState.kt │ │ │ │ └── CredentialManagerViewModel.kt │ │ │ └── passkeys │ │ │ ├── PasskeysRestrictionsCheckerImpl.kt │ │ │ ├── algorithm │ │ │ └── PasskeyAlgorithm.kt │ │ │ └── hilt │ │ │ └── PasskeyModule.kt │ │ └── res │ │ ├── drawable-nodpi │ │ └── round_dashlane_logomark.png │ │ ├── values │ │ └── strings.xml │ │ ├── xml-v34 │ │ └── provider.xml │ │ └── xml │ │ └── provider.xml ├── csv-export │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ └── com │ │ │ └── dashlane │ │ │ └── csvexport │ │ │ ├── CSVExportResultActivityListener.kt │ │ │ ├── CSVExportScreen.kt │ │ │ ├── CSVExportState.kt │ │ │ ├── CSVExportViewModel.kt │ │ │ ├── CsvExportActivity.kt │ │ │ ├── exporter │ │ │ ├── CSVEncoder.kt │ │ │ ├── CSVExporter.kt │ │ │ └── CSVFileWriter.kt │ │ │ └── model │ │ │ ├── AuthentifiantExport.kt │ │ │ └── ExportSchema.kt │ │ └── res │ │ └── values │ │ └── strings_csv_export.xml ├── csv-import │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── csvimport │ │ │ ├── CsvSendActionHandler.kt │ │ │ ├── csvimport │ │ │ ├── CsvAuthentifiant.kt │ │ │ ├── CsvImportManager.kt │ │ │ ├── CsvImportUtils.kt │ │ │ ├── CsvImportViewTypeProvider.kt │ │ │ ├── CsvSchema.kt │ │ │ ├── ImportAuthentifiantHelper.kt │ │ │ └── view │ │ │ │ ├── CsvImportActivity.kt │ │ │ │ ├── CsvImportState.kt │ │ │ │ └── CsvImportViewModel.kt │ │ │ ├── intro │ │ │ ├── CsvFileImportIntroActivity.kt │ │ │ └── CsvFileImportIntroScreen.kt │ │ │ ├── matchcsvfields │ │ │ ├── MatchCsvFieldsActivity.kt │ │ │ ├── MatchCsvFieldsItem.kt │ │ │ ├── MatchCsvFieldsViewModel.kt │ │ │ ├── MatchCsvFieldsViewProxy.kt │ │ │ └── MatchCsvFieldsViewState.kt │ │ │ └── utils │ │ │ ├── Intents.kt │ │ │ ├── OnSwipeTouchListener.kt │ │ │ ├── ParseCsv.kt │ │ │ └── Utils.kt │ │ └── res │ │ ├── color │ │ ├── button_csv_import_background_tint.xml │ │ ├── button_csv_import_ripple_color.xml │ │ └── button_csv_import_text_color.xml │ │ ├── drawable │ │ ├── ic_arrow_down_text_secondary_24dp.xml │ │ └── ic_arrow_up_text_secondary_24dp.xml │ │ ├── layout-h520dp │ │ └── include_custom_csv_import_buttons.xml │ │ ├── layout │ │ ├── activity_csv_import.xml │ │ ├── activity_custom_csv_import.xml │ │ ├── include_custom_csv_import_buttons.xml │ │ └── list_item_custom_csv_import.xml │ │ ├── values-h520dp │ │ └── dimens.xml │ │ ├── values-sw720dp │ │ └── dimens.xml │ │ └── values │ │ ├── dimens.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ └── widgets.xml ├── darkweb-monitoring │ ├── domain │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── com │ │ │ └── dashlane │ │ │ └── darkweb │ │ │ ├── CipheredInfo.kt │ │ │ ├── DarkWebEmailStatus.kt │ │ │ ├── DarkWebMonitoringCryptography.kt │ │ │ ├── DarkWebMonitoringLeakedPasswordsAnalysis.kt │ │ │ └── DarkWebMonitoringManager.kt │ └── ui │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── darkweb │ │ │ └── ui │ │ │ ├── result │ │ │ └── DarkWebSetupResultActivity.kt │ │ │ └── setup │ │ │ ├── DarkWebSetupMailActivity.kt │ │ │ ├── DarkWebSetupMailState.kt │ │ │ ├── DarkWebSetupMailViewModel.kt │ │ │ ├── DarkWebSetupMailViewModelContract.kt │ │ │ └── DarkWebSetupMailViewProxy.kt │ │ └── res │ │ ├── drawable │ │ ├── logo_darkweb.xml │ │ └── logo_darkweb_result.xml │ │ ├── layout │ │ ├── activity_darkweb_setup_mail.xml │ │ └── activity_darkweb_setup_result.xml │ │ └── values │ │ └── strings.xml ├── follow-up-notification │ ├── README.md │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── followupnotification │ │ │ ├── FollowUpNotificationComponentModule.kt │ │ │ ├── FollowUpNotificationEntryPoint.kt │ │ │ ├── api │ │ │ ├── FollowUpNotificationApi.kt │ │ │ ├── FollowUpNotificationApiImpl.kt │ │ │ ├── FollowUpNotificationApiNoOperationImpl.kt │ │ │ ├── FollowUpNotificationApiProvider.kt │ │ │ ├── FollowUpNotificationApiProviderImpl.kt │ │ │ ├── FollowUpNotificationLockManager.kt │ │ │ └── FollowUpNotificationPermissionManager.kt │ │ │ ├── data │ │ │ ├── FollowUpNotificationRepository.kt │ │ │ └── FollowUpNotificationRepositoryMemoryImpl.kt │ │ │ ├── discovery │ │ │ ├── FollowUpNotificationDiscoveryActivity.kt │ │ │ └── FollowUpNotificationDiscoveryContract.kt │ │ │ ├── domain │ │ │ ├── CopyFollowUpNotificationToClipboard.kt │ │ │ ├── CopyFollowUpNotificationToClipboardImpl.kt │ │ │ ├── CreateFollowUpNotification.kt │ │ │ ├── CreateFollowUpNotificationImpl.kt │ │ │ ├── FollowUpNotification.kt │ │ │ ├── FollowUpNotificationSettingModel.kt │ │ │ ├── FollowUpNotificationSettings.kt │ │ │ ├── FollowUpNotificationSettingsImpl.kt │ │ │ └── FollowUpNotificationsTypes.kt │ │ │ └── services │ │ │ ├── FollowUpNotificationDiscoveryService.kt │ │ │ ├── FollowUpNotificationDisplayService.kt │ │ │ ├── FollowUpNotificationDisplayServiceImpl.kt │ │ │ ├── FollowUpNotificationDynamicData.kt │ │ │ ├── FollowUpNotificationDynamicDataImpl.kt │ │ │ ├── FollowUpNotificationFlags.kt │ │ │ ├── FollowUpNotificationFlagsImpl.kt │ │ │ ├── FollowUpNotificationLogger.kt │ │ │ ├── FollowUpNotificationLoggerNoOp.kt │ │ │ ├── FollowUpNotificationReceiver.kt │ │ │ ├── FollowUpNotificationSettingsService.kt │ │ │ ├── FollowUpNotificationVaultItemCopyListenerImpl.kt │ │ │ ├── FollowUpNotificationsStrings.kt │ │ │ ├── FollowUpNotificationsStringsImpl.kt │ │ │ ├── VaultItemContentService.kt │ │ │ └── VaultItemContentServiceImpl.kt │ │ └── res │ │ ├── drawable │ │ ├── bg_attribute_separator.xml │ │ ├── bg_notification_quick_start.xml │ │ └── ic_follow_up_preview.xml │ │ ├── layout │ │ ├── activity_follow_up_notification_discovery.xml │ │ ├── follow_up_notification_container.xml │ │ ├── follow_up_notification_field.xml │ │ ├── follow_up_notification_header.xml │ │ └── follow_up_notification_separator.xml │ │ └── values │ │ ├── follow_up_notification_styles.xml │ │ ├── strings_follow_up.xml │ │ ├── strings_in_context_discovery.xml │ │ ├── strings_notification.xml │ │ └── strings_notification_center_item.xml ├── guided-password-change │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── guidedpasswordchange │ │ │ ├── OnboardingGuidedPasswordChangeActivity.kt │ │ │ └── internal │ │ │ ├── OnboardingGuidedPasswordChangeContract.kt │ │ │ ├── OnboardingGuidedPasswordChangeDataProvider.kt │ │ │ ├── OnboardingGuidedPasswordChangePresenter.kt │ │ │ └── OnboardingGuidedPasswordChangeViewProxy.kt │ │ └── res │ │ ├── color │ │ ├── guided_password_change_step_icon_background_tint_selector.xml │ │ ├── guided_password_change_step_icon_foreground_tint_selector.xml │ │ └── guided_password_change_step_text_tint_selector.xml │ │ ├── drawable │ │ ├── guided_password_change_step1.xml │ │ ├── guided_password_change_step2.xml │ │ ├── guided_password_change_step3.xml │ │ ├── guided_password_change_step4.xml │ │ └── ic_back.xml │ │ ├── layout │ │ ├── activity_onboarding_guided_password_change.xml │ │ ├── guided_password_change_steps.xml │ │ ├── include_guided_password_change.xml │ │ └── include_guided_password_change_land.xml │ │ ├── raw-night │ │ └── lottie_guided_change_keyboard.json │ │ ├── raw │ │ ├── lottie_guided_change_keyboard.json │ │ └── lottie_guided_change_webcard.json │ │ ├── values-land │ │ └── forwarders.xml │ │ └── values │ │ ├── forwarders.xml │ │ └── strings.xml ├── home-vault-list │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── home │ │ │ └── vaultlist │ │ │ ├── VaultListContent.kt │ │ │ ├── VaultListResourceProvider.kt │ │ │ ├── VaultListScreen.kt │ │ │ └── VaultListViewModel.kt │ │ └── res │ │ └── values │ │ └── strings.xml ├── import-logins │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── importlogins │ │ │ ├── ImportLoginsFragment.kt │ │ │ ├── ImportLoginsState.kt │ │ │ ├── ImportLoginsViewModel.kt │ │ │ └── ui │ │ │ └── ImportLoginsScreen.kt │ │ └── res │ │ ├── navigation │ │ └── import_logins_navigation.xml │ │ └── values │ │ └── strings_import_logins.xml ├── inappautofill │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── tokenizer.json │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ ├── autofill │ │ │ ├── AutoFillBlackListImpl.kt │ │ │ ├── AutofillAnalyzerDef.kt │ │ │ ├── AutofillOrigin.java │ │ │ ├── ClientStateUtil.kt │ │ │ ├── FillRequestHandler.kt │ │ │ ├── SaveRequestHandler.kt │ │ │ ├── actionssources │ │ │ │ ├── model │ │ │ │ │ └── ActionsSourcesRepository.kt │ │ │ │ └── view │ │ │ │ │ ├── ActionsSourcesActivity.kt │ │ │ │ │ ├── ActionsSourcesListContent.kt │ │ │ │ │ ├── ActionsSourcesScreen.kt │ │ │ │ │ ├── ActionsSourcesState.kt │ │ │ │ │ └── ActionsSourcesViewModel.kt │ │ │ ├── announcement │ │ │ │ └── KeyboardAutofillService.kt │ │ │ ├── askchangepassword │ │ │ │ └── AskChangePasswordBottomSheetScreen.kt │ │ │ ├── changepassword │ │ │ │ ├── AutoFillChangePasswordConfiguration.kt │ │ │ │ ├── AutofillChangePasswordActivityIntentProvider.kt │ │ │ │ ├── AutofillChangePasswordLogger.kt │ │ │ │ ├── ChangePasswordContract.kt │ │ │ │ ├── ChangePasswordDataProvider.kt │ │ │ │ ├── ChangePasswordDialogFragment.kt │ │ │ │ ├── ChangePasswordState.kt │ │ │ │ ├── ChangePasswordViewModel.kt │ │ │ │ ├── ChangePasswordViewProxy.kt │ │ │ │ ├── domain │ │ │ │ │ ├── AutofillChangePasswordErrors.kt │ │ │ │ │ ├── AutofillChangePasswordResultHandler.kt │ │ │ │ │ ├── AutofillUpdateAccountService.kt │ │ │ │ │ └── CredentialUpdateInfo.kt │ │ │ │ └── view │ │ │ │ │ ├── AskChangePasswordDialogFragment.kt │ │ │ │ │ ├── AskChangePasswordViewProxy.kt │ │ │ │ │ └── AutofillChangePasswordActivity.kt │ │ │ ├── createaccount │ │ │ │ ├── AutofillCreateAccountActivityIntentProvider.kt │ │ │ │ ├── AutofillCreateAccountLogger.kt │ │ │ │ ├── CreateAccountDataProvider.kt │ │ │ │ ├── domain │ │ │ │ │ ├── AutofillCreateAccountErrors.kt │ │ │ │ │ ├── AutofillCreateAccountResultHandler.kt │ │ │ │ │ ├── AutofillCreateAccountService.kt │ │ │ │ │ └── CredentialInfo.kt │ │ │ │ └── view │ │ │ │ │ ├── AutofillCreateAccountActivity.kt │ │ │ │ │ ├── CreateAccountDialogFragment.kt │ │ │ │ │ ├── CreateAccountState.kt │ │ │ │ │ └── CreateAccountViewModel.kt │ │ │ ├── dagger │ │ │ │ ├── AutofillApiInternalBindModule.kt │ │ │ │ ├── AutofillApiInternalModule.kt │ │ │ │ └── AutofillPhishdroidModule.kt │ │ │ ├── emptywebsitewarning │ │ │ │ ├── AutofillEmptyWebsiteWarningService.kt │ │ │ │ ├── EmptyWebsiteWarningActivityIntentProvider.kt │ │ │ │ ├── EmptyWebsiteWarningState.kt │ │ │ │ ├── EmptyWebsiteWarningViewModel.kt │ │ │ │ ├── model │ │ │ │ │ └── AccountWrapper.kt │ │ │ │ ├── presenter │ │ │ │ │ └── EmptyWebsiteWarningPresenter.kt │ │ │ │ ├── ui │ │ │ │ │ └── EmptyWebsiteBottomSheetScreen.kt │ │ │ │ └── view │ │ │ │ │ └── EmptyWebsiteWarningActivity.kt │ │ │ ├── fillresponse │ │ │ │ ├── AssociatedWebsiteUtils.kt │ │ │ │ ├── ChangePasswordActionIntentProvider.kt │ │ │ │ ├── CreateAccountActionIntentProvider.kt │ │ │ │ ├── DataSetCreator.kt │ │ │ │ ├── DatasetWrapper.kt │ │ │ │ ├── DatasetWrapperBuilder.kt │ │ │ │ ├── EmptyWebsiteWarningIntentProvider.kt │ │ │ │ ├── FillResponseCreator.kt │ │ │ │ ├── FillResponseWrapper.kt │ │ │ │ ├── FillResponseWrapperUtil.kt │ │ │ │ ├── InlinePresentationProvider.kt │ │ │ │ ├── PauseActionIntentProvider.kt │ │ │ │ ├── RemoteViewProvider.kt │ │ │ │ ├── Util.kt │ │ │ │ ├── ViewAllAccountsActionIntentProvider.kt │ │ │ │ └── filler │ │ │ │ │ ├── AuthentifiantFiller.kt │ │ │ │ │ ├── CreditCardFiller.kt │ │ │ │ │ ├── EmailFiller.kt │ │ │ │ │ ├── Filler.kt │ │ │ │ │ ├── OtpCodeFiller.kt │ │ │ │ │ ├── PauseFiller.kt │ │ │ │ │ └── ViewAllAccountsFiller.kt │ │ │ ├── frozenautofill │ │ │ │ ├── FrozenAutofillActivity.kt │ │ │ │ ├── FrozenAutofillBottomSheet.kt │ │ │ │ ├── FrozenAutofillState.kt │ │ │ │ └── FrozenAutofillViewModel.kt │ │ │ ├── generatepassword │ │ │ │ ├── AutofillGeneratePasswordLogger.kt │ │ │ │ ├── GeneratePasswordContract.kt │ │ │ │ ├── GeneratePasswordSpecialMode.kt │ │ │ │ ├── GeneratePasswordState.kt │ │ │ │ ├── GeneratePasswordViewModel.kt │ │ │ │ └── GeneratePasswordViewProxy.kt │ │ │ ├── internal │ │ │ │ ├── ApplicationFormSourceDeviceStatus.kt │ │ │ │ ├── AutofillApiEntryPoint.kt │ │ │ │ ├── AutofillFormSourcesStrings.kt │ │ │ │ └── AutofillLimiter.kt │ │ │ ├── linkservices │ │ │ │ ├── AutofillApiRememberedAccountToaster.kt │ │ │ │ ├── AutofillLinkServiceFragment.kt │ │ │ │ ├── AutofillLinkServiceNavigation.kt │ │ │ │ ├── model │ │ │ │ │ ├── FormSourcesDataProvider.kt │ │ │ │ │ └── FormSourcesDataProviderImpl.kt │ │ │ │ ├── rememberaccount │ │ │ │ │ ├── RememberAccountLogger.kt │ │ │ │ │ ├── RememberAccountRepository.kt │ │ │ │ │ ├── RememberAccountState.kt │ │ │ │ │ ├── RememberAccountViewModel.kt │ │ │ │ │ ├── ui │ │ │ │ │ │ ├── RememberAccountBottomSheet.kt │ │ │ │ │ │ └── RememberAccountScreen.kt │ │ │ │ │ └── view │ │ │ │ │ │ └── RememberAccountContentPresenter.kt │ │ │ │ └── services │ │ │ │ │ ├── FormSourceAuthentifiantLinker.kt │ │ │ │ │ ├── TriggerRememberViewAllAccount.kt │ │ │ │ │ └── migration │ │ │ │ │ ├── AppMetaDataToLinkedAppsMigration.kt │ │ │ │ │ ├── RememberToLinkedAppsMigration.kt │ │ │ │ │ └── RememberedFormSource.kt │ │ │ ├── logs │ │ │ │ └── AutofillUsageLog.kt │ │ │ ├── model │ │ │ │ ├── ItemToFill.kt │ │ │ │ └── ItemToFillExtension.kt │ │ │ ├── navigation │ │ │ │ ├── AutofillBottomSheetNavigator.kt │ │ │ │ ├── AutofillBottomSheetNavigatorImpl.kt │ │ │ │ ├── AutofillBottomSheetRootFragment.kt │ │ │ │ ├── AutofillNavigator.kt │ │ │ │ ├── AutofillNavigatorImpl.kt │ │ │ │ └── WaitForNavigationDecisionFragment.kt │ │ │ ├── passwordendpoint │ │ │ │ └── OsSettingsRedirectionActivity.kt │ │ │ ├── pause │ │ │ │ ├── AskPauseRepository.kt │ │ │ │ ├── AskPauseState.kt │ │ │ │ ├── AskPauseViewModel.kt │ │ │ │ ├── AutofillPauseActivityIntentProvider.kt │ │ │ │ ├── model │ │ │ │ │ ├── AutofillFormSourceIcon.kt │ │ │ │ │ ├── PauseDurations.kt │ │ │ │ │ └── PausedFormSource.kt │ │ │ │ ├── presenter │ │ │ │ │ └── AutofillFormSourceProvider.kt │ │ │ │ ├── services │ │ │ │ │ ├── MutexPausedFormSourcesProvider.kt │ │ │ │ │ ├── PausedAutofillLimiter.kt │ │ │ │ │ ├── PausedFormSourcesProvider.kt │ │ │ │ │ ├── PausedFormSourcesRepository.kt │ │ │ │ │ └── RemovePauseContract.kt │ │ │ │ └── view │ │ │ │ │ ├── AskPauseBottomSheetScreen.kt │ │ │ │ │ ├── AutofillFormSourceThumbnail.kt │ │ │ │ │ └── AutofillPauseActivity.kt │ │ │ ├── phishing │ │ │ │ ├── AntiPhishingCapabilityChecker.kt │ │ │ │ ├── AutofillPhishingWarningFragment.kt │ │ │ │ ├── PhishingWarningRepository.kt │ │ │ │ ├── PhishingWarningState.kt │ │ │ │ ├── PhishingWarningViewModel.kt │ │ │ │ ├── cleaner │ │ │ │ │ └── AntiPhishingFilesCleaner.kt │ │ │ │ └── ui │ │ │ │ │ ├── PhishingWarningDialog.kt │ │ │ │ │ └── PhishingWarningScreen.kt │ │ │ ├── request │ │ │ │ ├── autofill │ │ │ │ │ └── database │ │ │ │ │ │ └── ItemLoader.kt │ │ │ │ └── save │ │ │ │ │ ├── AutofillSaveRequestLogger.kt │ │ │ │ │ ├── SaveAuthentifiantRequest.kt │ │ │ │ │ ├── SaveCallback.kt │ │ │ │ │ ├── SaveCreditCardRequest.kt │ │ │ │ │ ├── SaveRequest.kt │ │ │ │ │ └── SaveRequestActivity.kt │ │ │ ├── securitywarnings │ │ │ │ ├── AutofillSecurityWarningsLogger.kt │ │ │ │ ├── MismatchSourceState.kt │ │ │ │ ├── MismatchSourceViewModel.kt │ │ │ │ ├── UnsecureSourceState.kt │ │ │ │ ├── UnsecureSourceViewModel.kt │ │ │ │ ├── data │ │ │ │ │ ├── AutofillFormSourceUtil.kt │ │ │ │ │ ├── SecurityWarningAction.kt │ │ │ │ │ ├── SecurityWarningType.kt │ │ │ │ │ └── SecurityWarningsJson.kt │ │ │ │ ├── model │ │ │ │ │ ├── ExternalRepositoryRememberSecurityWarningsService.kt │ │ │ │ │ ├── RememberSecurityWarning.kt │ │ │ │ │ ├── RememberSecurityWarningsRepository.kt │ │ │ │ │ ├── RememberSecurityWarningsService.kt │ │ │ │ │ ├── SecurityWarningsProcessor.kt │ │ │ │ │ └── SecurityWarningsView.kt │ │ │ │ ├── ui │ │ │ │ │ ├── MismatchSourceWarningBottomSheet.kt │ │ │ │ │ ├── UnknownSourceWarningBottomSheet.kt │ │ │ │ │ └── UnsecureSourceWarningDialog.kt │ │ │ │ └── view │ │ │ │ │ ├── BottomSheetMismatchSecurityWarningDialogFragment.kt │ │ │ │ │ ├── BottomSheetUnknownSecurityWarningDialogFragment.kt │ │ │ │ │ ├── IncorrectSecurityWarningDialogFragment.kt │ │ │ │ │ └── SecurityWarningsViewProxy.kt │ │ │ ├── smsotp │ │ │ │ ├── SmsOtpAutofillViewModel.kt │ │ │ │ ├── SmsOtpBottomSheetScreen.kt │ │ │ │ └── SmsOtpState.kt │ │ │ ├── totp │ │ │ │ ├── AutofillTotpCopyService.kt │ │ │ │ └── TotpResult.kt │ │ │ ├── ui │ │ │ │ ├── AutoFillResponseActivity.kt │ │ │ │ ├── AutofillCard.kt │ │ │ │ ├── AutofillPerformedCallback.kt │ │ │ │ ├── DashlaneAutofillDecoration.kt │ │ │ │ ├── FillSuggestionToActivityResult.kt │ │ │ │ └── SmsOtpAutofillActivity.kt │ │ │ ├── unlockfill │ │ │ │ ├── AutofillAuthActivity.kt │ │ │ │ ├── AutofillAuthChangePasswordActivity.kt │ │ │ │ └── UnlockedAuthentifiant.kt │ │ │ ├── util │ │ │ │ ├── AutoFillFormSourceIdentifier.kt │ │ │ │ ├── AutofillEntryUtil.kt │ │ │ │ ├── AutofillLogUtil.kt │ │ │ │ ├── AutofillNavigationService.kt │ │ │ │ ├── AutofillSummaryExt.kt │ │ │ │ ├── DatasetUtil.kt │ │ │ │ ├── IdGeneratorImpl.kt │ │ │ │ ├── SaveInfoWrapper.kt │ │ │ │ └── SmsOtpPossibleChecker.kt │ │ │ └── viewallaccounts │ │ │ │ ├── AutofillSearch.kt │ │ │ │ ├── AutofillViewAllAccountsLogger.kt │ │ │ │ ├── AutofillViewAllItemsActivityIntentProvider.kt │ │ │ │ ├── services │ │ │ │ └── ViewAllAccountSelectionNotifier.kt │ │ │ │ └── view │ │ │ │ ├── AuthentifiantSearchViewTypeProviderFactory.kt │ │ │ │ ├── AutofillViewAllItemsActivity.kt │ │ │ │ ├── SearchAuthentifiantDialogResponse.kt │ │ │ │ ├── ViewAllItemsDialogFragment.kt │ │ │ │ ├── ViewAllItemsSecurityWarningsViewProxy.kt │ │ │ │ ├── ViewAllItemsState.kt │ │ │ │ ├── ViewAllItemsViewModel.kt │ │ │ │ └── ViewAllItemsViewProxy.kt │ │ │ └── autofillapi │ │ │ ├── AutoFillAPIService.kt │ │ │ ├── ChromeAutofillDetector.kt │ │ │ ├── ChromeAutofillSettingsHelper.kt │ │ │ └── ChromeAutofillStatus.kt │ │ └── res │ │ ├── drawable │ │ ├── background_link_service.xml │ │ ├── background_password_limit_body.xml │ │ ├── handle_round_rectangle_shape.xml │ │ ├── ic_arrow_down.xml │ │ ├── ic_auto_login_outlinedauto_login_empty_state.xml │ │ ├── ic_autofill_change_password.xml │ │ ├── ic_autofill_create_account_add.xml │ │ ├── ic_close_outlinedauto_login_error_state.xml │ │ ├── ic_help_outlined.xml │ │ ├── ic_inline_add_account.xml │ │ ├── ic_inline_change_password.xml │ │ ├── ic_inline_email.xml │ │ ├── ic_inline_login.xml │ │ ├── ic_inline_onboarding.xml │ │ ├── ic_inline_sms_otp.xml │ │ ├── ic_inline_view_all_account.xml │ │ ├── ic_notification_action_code_copy.xml │ │ ├── ic_notification_action_dismiss.xml │ │ ├── ic_vault_outlined.xml │ │ ├── ic_warning_outlined.xml │ │ └── illu_mobile_onboarding_vault.xml │ │ ├── layout-land │ │ ├── autofill_list_empty_state.xml │ │ └── autofill_list_error_state.xml │ │ ├── layout │ │ ├── activity_transparent_navigation.xml │ │ ├── autofill_list_empty_state.xml │ │ ├── autofill_list_error_state.xml │ │ ├── bottom_sheet_change_password_layout.xml │ │ ├── bottom_sheet_create_account_layout.xml │ │ ├── dialog_keyboard_autofill_announcement.xml │ │ ├── fragment_unlink_accounts.xml │ │ ├── include_generate_password.xml │ │ ├── list_change_password_item.xml │ │ ├── list_create_account_item.xml │ │ ├── list_dashlane_login_item.xml │ │ ├── list_dashlane_pause_item.xml │ │ ├── list_invisible_item.xml │ │ ├── list_item_autofill_api.xml │ │ ├── list_item_autofill_otp.xml │ │ ├── list_item_scrolling.xml │ │ ├── list_linked_accounts_item.xml │ │ ├── list_view_all_accounts_item.xml │ │ ├── list_view_all_accounts_item_empty.xml │ │ └── view_all_items_dialog_fragment.xml │ │ ├── navigation │ │ ├── autofill_activity_navigation.xml │ │ └── autofill_bottom_sheet_dialog_navigation.xml │ │ ├── values │ │ ├── autofill_actioned_sources_strings.xml │ │ ├── autofill_ask_pause_strings.xml │ │ ├── autofill_change_password_strings.xml │ │ ├── autofill_create_account_strings.xml │ │ ├── autofill_dropdown_suggestions.xml │ │ ├── autofill_empty_website_warning.xml │ │ ├── autofill_frozen_strings.xml │ │ ├── autofill_generate_password_strings.xml │ │ ├── autofill_inline_suggestions.xml │ │ ├── autofill_keyboard_announcement.xml │ │ ├── autofill_link_services_strings.xml │ │ ├── autofill_phishing_warning_strings.xml │ │ ├── autofill_security_warnings_strings.xml │ │ ├── autofill_sms_otp.xml │ │ └── strings.xml │ │ └── xml-v31 │ │ └── autofill_service_config.xml ├── login │ ├── domain │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── com │ │ │ └── dashlane │ │ │ └── login │ │ │ ├── LoginLogger.kt │ │ │ ├── LoginRepository.kt │ │ │ ├── LoginStrategy.kt │ │ │ ├── accountrecoverykey │ │ │ └── LoginAccountRecoveryKeyRepository.kt │ │ │ ├── monobucket │ │ │ └── MonobucketUseCase.kt │ │ │ ├── pages │ │ │ └── enforce2fa │ │ │ │ └── HasEnforced2FaLimitUseCase.kt │ │ │ └── password │ │ │ ├── InitialSync.kt │ │ │ └── LoginPasswordRepository.kt │ ├── login-wear │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── dashlane │ │ │ │ └── wear │ │ │ │ └── login │ │ │ │ ├── WearLoginNavigation.kt │ │ │ │ ├── WearLoginRepository.kt │ │ │ │ ├── WearLoginScreen.kt │ │ │ │ ├── WearLoginViewModel.kt │ │ │ │ ├── common │ │ │ │ ├── credentialmanager │ │ │ │ │ ├── WearCredentialManagerViewModel.kt │ │ │ │ │ └── WearSetupCredentialManagerScreen.kt │ │ │ │ ├── secondfactor │ │ │ │ │ ├── WearSecondFactorInputScreen.kt │ │ │ │ │ └── WearSecondFactorViewModel.kt │ │ │ │ └── ui │ │ │ │ │ ├── CheckYourPhoneScreenContent.kt │ │ │ │ │ └── WearLoginErrorContent.kt │ │ │ │ ├── paywall │ │ │ │ ├── FreeUserPaywallScreen.kt │ │ │ │ └── FreeUserPaywallViewModel.kt │ │ │ │ └── remote │ │ │ │ ├── authorize │ │ │ │ ├── WearAuthorizeScreen.kt │ │ │ │ ├── WearAuthorizeState.kt │ │ │ │ └── WearAuthorizeViewModel.kt │ │ │ │ ├── qr │ │ │ │ ├── WearQrCodeScreen.kt │ │ │ │ ├── WearQrCodeState.kt │ │ │ │ ├── WearQrCodeViewModel.kt │ │ │ │ └── ui │ │ │ │ │ ├── WearQrCode.kt │ │ │ │ │ └── WearQrConfirmEmail.kt │ │ │ │ └── welcome │ │ │ │ └── WearWelcomeScreen.kt │ │ │ └── res │ │ │ └── values │ │ │ ├── authorize_strings.xml │ │ │ ├── check_your_phone.xml │ │ │ ├── credential_manager_strings.xml │ │ │ ├── free_user_paywall.xml │ │ │ ├── secret_transfer_strings.xml │ │ │ ├── totp_strings.xml │ │ │ └── welcome_strings.xml │ └── ui │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── login │ │ │ ├── LocalLoginDestination.kt │ │ │ ├── LoginDestination.kt │ │ │ ├── biometric │ │ │ ├── LoginBiometricScreen.kt │ │ │ ├── LoginBiometricState.kt │ │ │ ├── LoginBiometricViewModel.kt │ │ │ └── recovery │ │ │ │ ├── BiometricRecoveryDestination.kt │ │ │ │ ├── BiometricRecoveryNavigation.kt │ │ │ │ ├── BiometricRecoveryScreen.kt │ │ │ │ ├── BiometricRecoveryState.kt │ │ │ │ └── BiometricRecoveryViewModel.kt │ │ │ ├── devicelimit │ │ │ ├── DeviceLimitActivity.kt │ │ │ ├── DeviceLimitScreen.kt │ │ │ ├── DeviceLimitState.kt │ │ │ └── DeviceLimitViewModel.kt │ │ │ ├── email │ │ │ ├── LoginEmailScreen.kt │ │ │ ├── LoginEmailState.kt │ │ │ └── LoginEmailViewModel.kt │ │ │ ├── monobucket │ │ │ ├── MonobucketActivity.kt │ │ │ ├── MonobucketScreen.kt │ │ │ ├── MonobucketState.kt │ │ │ └── MonobucketViewModel.kt │ │ │ ├── password │ │ │ ├── LoginPasswordScreen.kt │ │ │ ├── LoginPasswordState.kt │ │ │ └── LoginPasswordViewModel.kt │ │ │ ├── pin │ │ │ ├── LoginPinScreen.kt │ │ │ ├── LoginPinState.kt │ │ │ ├── LoginPinViewModel.kt │ │ │ └── PinErrorBottomSheet.kt │ │ │ ├── progress │ │ │ ├── LoginSyncProgressActivity.kt │ │ │ ├── LoginSyncProgressScreen.kt │ │ │ ├── LoginSyncProgressState.kt │ │ │ └── LoginSyncProgressViewModel.kt │ │ │ ├── sso │ │ │ ├── LoginSsoScreen.kt │ │ │ ├── LoginSsoState.kt │ │ │ └── LoginSsoViewModel.kt │ │ │ ├── token │ │ │ ├── LoginTokenScreen.kt │ │ │ ├── LoginTokenState.kt │ │ │ └── LoginTokenViewModel.kt │ │ │ └── totp │ │ │ ├── LoginTotpScreen.kt │ │ │ ├── LoginTotpState.kt │ │ │ └── LoginTotpViewModel.kt │ │ └── res │ │ └── values │ │ ├── strings_account_recovery.xml │ │ └── strings_login.xml ├── m2w │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── m2w │ │ │ ├── M2wActivityResultContract.kt │ │ │ ├── M2wConnectActivity.kt │ │ │ ├── M2wConnectViewModel.kt │ │ │ ├── M2wConnectViewModelContract.kt │ │ │ ├── M2wConnectViewProxy.kt │ │ │ ├── M2wIntentCoordinator.kt │ │ │ ├── M2wIntroActivity.kt │ │ │ └── ui │ │ │ └── M2wIntroScreen.kt │ │ └── res │ │ ├── drawable │ │ ├── logo_m2w.xml │ │ └── m2w_url_background.xml │ │ ├── layout-land │ │ └── include_m2w_connect_url.xml │ │ ├── layout │ │ ├── activity_m2w_connect.xml │ │ └── include_m2w_connect_url.xml │ │ └── values │ │ └── strings.xml ├── notification-center │ └── domain │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── notificationcenter │ │ │ ├── NotificationCenterDef.kt │ │ │ ├── NotificationCenterRepository.kt │ │ │ └── view │ │ │ ├── ActionItemSection.kt │ │ │ ├── ActionItemType.kt │ │ │ └── NotificationItem.kt │ │ └── res │ │ └── values │ │ └── strings_notification_center.xml ├── password-health-dashboard │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── passwordhealth │ │ │ └── identitydashboard │ │ │ ├── IdentityDashboardContract.kt │ │ │ ├── IdentityDashboardDataProvider.kt │ │ │ ├── IdentityDashboardPresenter.kt │ │ │ ├── IdentityDashboardViewProxy.kt │ │ │ ├── PasswordAnalysisScoreViewProxy.kt │ │ │ ├── breach │ │ │ ├── BreachLoader.kt │ │ │ └── BreachUIUtils.kt │ │ │ ├── hilt │ │ │ └── JsonModule.kt │ │ │ ├── item │ │ │ ├── IdentityDashboardItem.kt │ │ │ ├── IdentityDashboardPasswordHealthItem.kt │ │ │ └── identityprotection │ │ │ │ ├── IdentityDashboardProtectionPackageActive.kt │ │ │ │ └── IdentityDashboardProtectionPackageActiveItem.kt │ │ │ ├── password │ │ │ ├── AuthentifiantSecurityDataProvider.kt │ │ │ ├── AuthentifiantSecurityEvaluator.kt │ │ │ ├── PasswordAnalysisContract.kt │ │ │ └── PasswordAnalysisCountBadgeDrawable.kt │ │ │ └── view │ │ │ └── IdentityDashboardOnboardingView.kt │ │ └── res │ │ ├── layout │ │ ├── fragment_dashboard_identity.xml │ │ ├── fragment_dashboard_password_analysis.xml │ │ ├── include_password_analysis_score.xml │ │ ├── item_id_password_health.xml │ │ ├── item_id_password_health_count.xml │ │ └── item_id_protection_package_active.xml │ │ ├── raw │ │ ├── lottie_identity_dashboard_score_indeterminate.json │ │ └── lottie_identity_dashboard_score_progress.json │ │ └── values │ │ ├── strings_security_dashboard.xml │ │ └── theme_separator_legacy.xml ├── pin │ ├── domain │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── dashlane │ │ │ └── pin │ │ │ └── PinSetupRepository.kt │ └── ui │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── pin │ │ │ ├── settings │ │ │ ├── PinSettingsActivity.kt │ │ │ ├── PinSettingsDestination.kt │ │ │ ├── PinSettingsNavigation.kt │ │ │ └── success │ │ │ │ ├── PinSettingSuccessModule.kt │ │ │ │ ├── PinSettingSuccessUseCase.kt │ │ │ │ ├── PinSettingSuccessViewModel.kt │ │ │ │ ├── PinSettingsSuccessScreen.kt │ │ │ │ └── PinSettingsSuccessState.kt │ │ │ └── setup │ │ │ ├── PinSetupScreen.kt │ │ │ ├── PinSetupState.kt │ │ │ └── PinSetupViewModel.kt │ │ └── res │ │ └── values │ │ └── strings_pin_lock.xml ├── premium │ ├── domain │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── dashlane │ │ │ │ └── premium │ │ │ │ ├── StoreOffersCache.kt │ │ │ │ ├── StoreOffersManager.kt │ │ │ │ ├── enddate │ │ │ │ ├── EndDateFormatter.kt │ │ │ │ ├── FormattedEndDate.kt │ │ │ │ └── FormattedEndDateProvider.kt │ │ │ │ └── offer │ │ │ │ ├── common │ │ │ │ ├── InAppBillingDebugPreference.kt │ │ │ │ ├── ProductDetailsManager.kt │ │ │ │ ├── StoreOffersFormatter.kt │ │ │ │ ├── UserBenefitStatusProvider.kt │ │ │ │ └── model │ │ │ │ │ ├── FormattedStoreOffer.kt │ │ │ │ │ ├── OfferType.kt │ │ │ │ │ ├── ProductDetailsWrapper.kt │ │ │ │ │ ├── ProductPeriodicity.kt │ │ │ │ │ └── UserBenefitStatus.kt │ │ │ │ └── details │ │ │ │ └── TransitionHelper.kt │ │ │ └── res │ │ │ └── values │ │ │ ├── strings_end_date.xml │ │ │ └── strings_offers.xml │ └── ui │ │ ├── sampledata │ │ └── current_plan_benefits │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── premium │ │ │ ├── current │ │ │ ├── CurrentPlanActivity.kt │ │ │ ├── CurrentPlanDataRepository.kt │ │ │ ├── CurrentPlanLogger.kt │ │ │ ├── CurrentPlanState.kt │ │ │ ├── CurrentPlanViewModel.kt │ │ │ ├── model │ │ │ │ ├── CurrentPlan.kt │ │ │ │ └── CurrentPlanType.kt │ │ │ ├── other │ │ │ │ ├── CurrentBenefitsBuilder.kt │ │ │ │ ├── CurrentPlanStatusProvider.kt │ │ │ │ └── CurrentPlanStatusProviderImpl.kt │ │ │ └── ui │ │ │ │ ├── BenefitItem.kt │ │ │ │ ├── CurrentPlanHeader.kt │ │ │ │ ├── CurrentPlanScreen.kt │ │ │ │ └── DarkWebMonitoringBottomSheet.kt │ │ │ ├── offer │ │ │ ├── OffersModule.kt │ │ │ ├── common │ │ │ │ ├── OffersLogger.kt │ │ │ │ ├── OffersLoggerImpl.kt │ │ │ │ ├── ProductDetailsManagerImpl.kt │ │ │ │ ├── PurchaseCheckingCoordinator.kt │ │ │ │ ├── StoreOffersFormatterImpl.kt │ │ │ │ ├── UserBenefitStatusProviderImpl.kt │ │ │ │ ├── YearlySavingCalculator.kt │ │ │ │ └── model │ │ │ │ │ ├── IntroOfferType.kt │ │ │ │ │ ├── Offers.kt │ │ │ │ │ ├── ProductDetailsWrapperUtils.kt │ │ │ │ │ └── PromotionTypeUtils.kt │ │ │ ├── details │ │ │ │ ├── BenefitsBuilder.kt │ │ │ │ ├── ConflictingBillingPlatformProvider.kt │ │ │ │ ├── OfferDetailsDataProvider.kt │ │ │ │ ├── OfferDetailsFragment.kt │ │ │ │ ├── OfferDetailsScreen.kt │ │ │ │ ├── OfferDetailsViewModel.kt │ │ │ │ ├── OfferDetailsViewState.kt │ │ │ │ └── ui │ │ │ │ │ ├── ActionBottomBar.kt │ │ │ │ │ ├── BenefitRow.kt │ │ │ │ │ ├── BenefitsList.kt │ │ │ │ │ ├── DisclaimerContent.kt │ │ │ │ │ └── PurchaseButton.kt │ │ │ └── list │ │ │ │ ├── OfferListContract.kt │ │ │ │ ├── OfferListDataProvider.kt │ │ │ │ ├── OfferListPresenter.kt │ │ │ │ ├── OfferListViewProxy.kt │ │ │ │ ├── OffersBuilder.kt │ │ │ │ ├── model │ │ │ │ ├── CurrentOffer.kt │ │ │ │ ├── DiscountCallOut.kt │ │ │ │ ├── OfferOverview.kt │ │ │ │ └── Pricing.kt │ │ │ │ ├── ui │ │ │ │ ├── OfferCard.kt │ │ │ │ └── PricingBox.kt │ │ │ │ └── view │ │ │ │ ├── OfferListFragment.kt │ │ │ │ └── OffersActivity.kt │ │ │ ├── paywall │ │ │ ├── common │ │ │ │ ├── PaywallActivity.kt │ │ │ │ ├── PaywallIntroScreen.kt │ │ │ │ ├── PaywallIntroState.kt │ │ │ │ ├── PaywallLogger.kt │ │ │ │ ├── PaywallLoggerImpl.kt │ │ │ │ ├── PaywallScreen.kt │ │ │ │ └── PaywallViewModel.kt │ │ │ ├── dagger │ │ │ │ └── PaywallModule.kt │ │ │ ├── darkwebmonitoring │ │ │ │ └── PaywallScreenDWM.kt │ │ │ ├── frozenaccount │ │ │ │ └── PaywallScreenFrozenAccount.kt │ │ │ ├── trialended │ │ │ │ ├── TrialEndedFragment.kt │ │ │ │ ├── TrialEndedScreen.kt │ │ │ │ └── TrialEndedViewModel.kt │ │ │ └── vpn │ │ │ │ └── PaywallScreenVPN.kt │ │ │ └── utils │ │ │ └── PriceUtils.kt │ │ └── res │ │ ├── drawable-nodpi │ │ └── illu_premium_dwm.png │ │ ├── drawable │ │ ├── current_plan_header_background.xml │ │ ├── ic_action_item_premium_star.xml │ │ ├── ic_check_offer_details_benefit_icon.xml │ │ ├── ic_current_benefit.xml │ │ ├── ic_current_benefit_more_info.xml │ │ ├── ic_current_plan_diamond.xml │ │ ├── ic_paywall_dwm.xml │ │ ├── ic_paywall_password_limit.xml │ │ ├── ic_paywall_secure_notes.xml │ │ ├── ic_paywall_sharing.xml │ │ ├── ic_paywall_vpn.xml │ │ ├── ic_vpn_paywall_shield.xml │ │ ├── ic_vpn_paywall_web.xml │ │ └── logo_hotspot_shield_seek.xml │ │ ├── layout │ │ ├── activity_offers.xml │ │ ├── dialog_trial_awareness.xml │ │ ├── fragment_offer_list.xml │ │ ├── offer_empty_screen.xml │ │ ├── offer_list_container.xml │ │ ├── offer_list_content.xml │ │ └── offer_list_tab_item.xml │ │ ├── navigation │ │ └── offers_navigation.xml │ │ ├── raw │ │ └── lottie_free_trial_started.json │ │ └── values │ │ ├── strings_current_plan.xml │ │ ├── strings_intro_offers_action_item.xml │ │ ├── strings_intro_offers_announcement_dialog.xml │ │ ├── strings_offers.xml │ │ ├── strings_paywall.xml │ │ └── widgets.xml ├── search │ └── src │ │ └── main │ │ ├── kotlin │ │ └── com │ │ │ └── dashlane │ │ │ └── search │ │ │ ├── SearchLogger.kt │ │ │ ├── SearchRequest.kt │ │ │ ├── SearchScreen.kt │ │ │ ├── SearchState.kt │ │ │ ├── SearchVaultListItem.kt │ │ │ ├── SearchViewModel.kt │ │ │ ├── fab │ │ │ └── SearchFabViewModel.kt │ │ │ └── helper │ │ │ └── SearchResultHelper.kt │ │ └── res │ │ └── values │ │ └── strings_search.xml ├── secret-transfer │ ├── domain │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── dashlane │ │ │ └── secrettransfer │ │ │ ├── SecretTransferUseCase.kt │ │ │ └── domain │ │ │ ├── SecretTransferAnalytics.kt │ │ │ ├── SecretTransferConstants.kt │ │ │ ├── SecretTransferError.kt │ │ │ ├── SecretTransferException.kt │ │ │ ├── SecretTransferKeySet.kt │ │ │ ├── SecretTransferPayload.kt │ │ │ ├── SecretTransferPublicKey.kt │ │ │ ├── SecretTransferUri.kt │ │ │ └── SodiumSecretTransferPublicKey.kt │ ├── qr │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── dashlane │ │ │ │ └── secrettransfer │ │ │ │ └── qrcode │ │ │ │ ├── QRCode.kt │ │ │ │ ├── QrCodeGenerator.kt │ │ │ │ ├── QrCodeScreen.kt │ │ │ │ ├── QrCodeState.kt │ │ │ │ ├── QrCodeUseCase.kt │ │ │ │ └── QrCodeViewModel.kt │ │ │ └── res │ │ │ └── values │ │ │ ├── qr_code_strings.xml │ │ │ ├── secret_transfer_strings.xml │ │ │ └── string_accessibility_label.xml │ └── ui │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── secrettransfer │ │ │ └── view │ │ │ ├── SecretTransferActivity.kt │ │ │ ├── SecretTransferState.kt │ │ │ ├── SecretTransferViewModel.kt │ │ │ ├── intro │ │ │ ├── SecretTransferIntroScreen.kt │ │ │ ├── SecretTransferIntroState.kt │ │ │ └── SecretTransferIntroViewModel.kt │ │ │ ├── success │ │ │ └── SecretTransferSuccess.kt │ │ │ └── universal │ │ │ ├── passphrase │ │ │ └── PassphraseVerificationScreen.kt │ │ │ └── pending │ │ │ ├── SecretTransferPendingScreen.kt │ │ │ ├── SecretTransferPendingState.kt │ │ │ └── SecretTransferPendingViewModel.kt │ │ └── res │ │ ├── navigation │ │ └── secret_transfer_navigation.xml │ │ └── values │ │ └── strings_secret_transfer.xml ├── secure-archive │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── securearchive │ │ │ ├── BackupActivity.kt │ │ │ ├── BackupActivityIntents.kt │ │ │ ├── BackupCoordinator.kt │ │ │ ├── BackupLogger.kt │ │ │ ├── BackupOperation.kt │ │ │ ├── BackupViewModel.kt │ │ │ ├── BackupViewModelContract.kt │ │ │ ├── BackupViewProxy.kt │ │ │ ├── BackupViewState.kt │ │ │ ├── SecureArchiveDataImporter.kt │ │ │ ├── SecureArchiveManager.kt │ │ │ └── contract │ │ │ ├── BackupActivityResult.kt │ │ │ ├── SecureArchiveExportResultContract.kt │ │ │ ├── SecureArchiveFileSelectResultContract.kt │ │ │ └── SecureArchiveImportResultContract.kt │ │ └── res │ │ ├── layout │ │ └── activity_backup.xml │ │ └── values │ │ └── strings_secure_archive.xml ├── settings │ └── ui │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── settings │ │ │ ├── Settings.kt │ │ │ ├── SettingsComposable.kt │ │ │ ├── SettingsEvent.kt │ │ │ ├── SettingsItemData.kt │ │ │ ├── general │ │ │ ├── SettingsGeneralScreen.kt │ │ │ ├── autofill │ │ │ │ ├── SettingsAutofillModule.kt │ │ │ │ ├── SettingsAutofillState.kt │ │ │ │ ├── SettingsAutofillUseCase.kt │ │ │ │ └── SettingsAutofillViewModel.kt │ │ │ ├── backup │ │ │ │ ├── SettingsBackupModule.kt │ │ │ │ ├── SettingsBackupState.kt │ │ │ │ ├── SettingsBackupUseCase.kt │ │ │ │ └── SettingsBackupViewModel.kt │ │ │ ├── notifications │ │ │ │ ├── SettingsNotificationsModule.kt │ │ │ │ ├── SettingsNotificationsState.kt │ │ │ │ ├── SettingsNotificationsUseCase.kt │ │ │ │ └── SettingsNotificationsViewModel.kt │ │ │ └── usagedata │ │ │ │ ├── SettingsUsageDataModule.kt │ │ │ │ ├── SettingsUsageDataState.kt │ │ │ │ ├── SettingsUsageDataUseCase.kt │ │ │ │ └── SettingsUsageDataViewModel.kt │ │ │ ├── help │ │ │ ├── SettingsHelpModule.kt │ │ │ ├── SettingsHelpScreen.kt │ │ │ ├── SettingsHelpState.kt │ │ │ ├── SettingsHelpUseCase.kt │ │ │ └── SettingsHelpViewModel.kt │ │ │ ├── main │ │ │ ├── SettingsMainScreen.kt │ │ │ ├── account │ │ │ │ ├── SettingsAccountModule.kt │ │ │ │ ├── SettingsAccountState.kt │ │ │ │ ├── SettingsAccountUseCase.kt │ │ │ │ └── SettingsAccountViewModel.kt │ │ │ ├── advanced │ │ │ │ ├── SettingsAdvancedModule.kt │ │ │ │ ├── SettingsAdvancedState.kt │ │ │ │ ├── SettingsAdvancedUseCase.kt │ │ │ │ └── SettingsAdvancedViewModel.kt │ │ │ └── misc │ │ │ │ ├── SettingsMainMiscModule.kt │ │ │ │ ├── SettingsMainMiscState.kt │ │ │ │ ├── SettingsMainMiscUseCase.kt │ │ │ │ └── SettingsMainMiscViewModel.kt │ │ │ ├── search │ │ │ └── SettingsSearchScreen.kt │ │ │ └── security │ │ │ ├── SettingsDialog.kt │ │ │ ├── SettingsSecurityScreen.kt │ │ │ ├── applicationlock │ │ │ ├── SettingsApplicationLockModule.kt │ │ │ ├── SettingsApplicationLockState.kt │ │ │ ├── SettingsApplicationLockUseCase.kt │ │ │ └── SettingsApplicationLockViewModel.kt │ │ │ └── misc │ │ │ ├── SettingsMiscModule.kt │ │ │ ├── SettingsMiscState.kt │ │ │ ├── SettingsMiscUseCase.kt │ │ │ └── SettingsMiscViewModel.kt │ │ └── res │ │ └── values │ │ ├── settings_arrays.xml │ │ ├── strings_general.xml │ │ ├── strings_help.xml │ │ ├── strings_logout.xml │ │ ├── strings_main.xml │ │ ├── strings_security.xml │ │ ├── strings_settings_dialog.xml │ │ └── strings_settings_search.xml ├── sharing-center │ ├── .gitignore │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── sharingcenter │ │ │ ├── SharingCenterModule.kt │ │ │ ├── SharingCenterScreen.kt │ │ │ ├── SharingCenterState.kt │ │ │ ├── SharingCenterUseCases.kt │ │ │ ├── SharingCenterViewModel.kt │ │ │ ├── contact │ │ │ └── SharingContactCreator.kt │ │ │ └── ui │ │ │ ├── ContentTabContent.kt │ │ │ ├── PeopleTabContent.kt │ │ │ ├── RequestTabContent.kt │ │ │ └── SectionHeader.kt │ │ └── res │ │ └── values │ │ └── strings.xml ├── sharing-item-selection │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── sharing │ │ │ └── itemselection │ │ │ ├── NewShareItemSelectionModule.kt │ │ │ ├── NewShareItemSelectionScreen.kt │ │ │ ├── NewShareItemSelectionState.kt │ │ │ ├── NewShareItemSelectionUseCases.kt │ │ │ ├── NewShareItemSelectionViewModel.kt │ │ │ └── NewShareItemsRepository.kt │ │ └── res │ │ └── values │ │ └── strings_sharing.xml ├── sharingv2 │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── sharing │ │ ├── SharingKeysHelperImpl.kt │ │ └── util │ │ └── AuditLogHelperImpl.kt ├── sso │ └── ui │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── sso │ │ │ ├── login │ │ │ ├── RemoteLoginSsoActivity.kt │ │ │ ├── RemoteLoginSsoScreen.kt │ │ │ ├── RemoteLoginSsoState.kt │ │ │ └── RemoteLoginSsoViewModel.kt │ │ │ └── migration │ │ │ ├── MigrationToSsoActivity.kt │ │ │ ├── MigrationToSsoModule.kt │ │ │ ├── MigrationToSsoScreen.kt │ │ │ ├── MigrationToSsoState.kt │ │ │ ├── MigrationToSsoUseCase.kt │ │ │ └── MigrationToSsoViewModel.kt │ │ └── res │ │ └── values │ │ └── strings_sso.xml ├── vpn-third-party │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── vpn │ │ │ └── thirdparty │ │ │ ├── VpnB2bIntroActivity.kt │ │ │ ├── VpnThirdPartyAuthentifiantHelper.kt │ │ │ ├── VpnThirdPartyLogger.kt │ │ │ ├── VpnThirdPartyModule.kt │ │ │ ├── VpnThirdPartyRepository.kt │ │ │ ├── VpnThirdPartyState.kt │ │ │ ├── VpnThirdPartyUseCase.kt │ │ │ ├── VpnThirdPartyViewModel.kt │ │ │ ├── activate │ │ │ ├── VpnThirdPartyActivateAccountActivity.kt │ │ │ ├── VpnThirdPartyActivateAccountContract.kt │ │ │ ├── VpnThirdPartyActivateAccountDataProvider.kt │ │ │ ├── VpnThirdPartyActivateAccountEmailErrorFragment.kt │ │ │ ├── VpnThirdPartyActivateAccountErrorFragment.kt │ │ │ ├── VpnThirdPartyActivateAccountErrorListener.kt │ │ │ ├── VpnThirdPartyActivateAccountLoadingFragment.kt │ │ │ ├── VpnThirdPartyActivateAccountPresenter.kt │ │ │ ├── VpnThirdPartyActivateAccountSuccessFragment.kt │ │ │ ├── VpnThirdPartyActivateAccountViewProxy.kt │ │ │ └── VpnThirdPartySetupEmailFragment.kt │ │ │ ├── ui │ │ │ ├── DisabledVpnB2bScreen.kt │ │ │ ├── VpnAccountContent.kt │ │ │ ├── VpnActivateContent.kt │ │ │ ├── VpnFaqBottomSheetContent.kt │ │ │ └── VpnThirdPartyScreen.kt │ │ │ └── view │ │ │ └── VpnActivateView.kt │ │ └── res │ │ ├── drawable │ │ ├── ic_vpn_activated.xml │ │ ├── ic_vpn_activation_error.xml │ │ └── vpn_third_party_account_background.xml │ │ ├── layout │ │ ├── activity_vpn_third_party_activate_account.xml │ │ ├── fragment_vpn_third_party_activate_account_email_error.xml │ │ ├── fragment_vpn_third_party_activate_account_error.xml │ │ ├── fragment_vpn_third_party_activate_account_loading.xml │ │ ├── fragment_vpn_third_party_activate_account_success.xml │ │ └── fragment_vpn_third_party_setup_email.xml │ │ ├── navigation │ │ └── vpn_third_party_activate_account_navigation.xml │ │ └── values │ │ └── strings.xml └── welcome │ └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── dashlane │ │ └── welcome │ │ ├── WelcomeActivity.kt │ │ └── WelcomePagerAdapter.kt │ └── res │ ├── layout-h520dp │ └── item_welcome.xml │ ├── layout │ ├── activity_welcome.xml │ └── item_welcome.xml │ ├── raw-night │ ├── lottie_welcome_encryption.json │ └── lottie_welcome_trust.json │ ├── raw │ ├── lottie_welcome_alert.json │ ├── lottie_welcome_encryption.json │ ├── lottie_welcome_trust.json │ └── lottie_welcome_trust_background.json │ ├── values-sw600dp │ └── dimens.xml │ └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── libraries ├── abtesting │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── abtesting │ │ ├── AbTest.kt │ │ ├── AbTestStatus.kt │ │ ├── LocalAbTest.kt │ │ ├── LocalAbTestManager.kt │ │ ├── OfflineExperimentReporter.kt │ │ ├── RemoteAbTestManager.kt │ │ └── RemoteConfiguration.kt ├── account-manager │ └── src │ │ └── main │ │ └── kotlin │ │ └── com │ │ └── dashlane │ │ └── authentication │ │ └── accountsmanager │ │ ├── AccountsManager.kt │ │ ├── AccountsManagerPassword.kt │ │ ├── DashlaneAuthenticator.kt │ │ └── DashlaneAuthenticatorService.kt ├── accountstatus │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── accountstatus │ │ │ ├── AccountStatus.kt │ │ │ ├── AccountStatusPostUpdateManager.kt │ │ │ ├── AccountStatusProvider.kt │ │ │ ├── AccountStatusRepository.kt │ │ │ ├── AccountStatusService.kt │ │ │ ├── AccountStatusStorage.kt │ │ │ ├── hilt │ │ │ └── AccountStatusModule.kt │ │ │ ├── premiumstatus │ │ │ ├── DeviceNumberUpdater.kt │ │ │ ├── PremiumStatusUtils.kt │ │ │ └── utils │ │ │ │ └── PlansUtils.kt │ │ │ ├── subscription │ │ │ └── SubscriptionInfoUtils.kt │ │ │ └── subscriptioncode │ │ │ └── SubscriptionCodeRepository.kt │ │ └── res │ │ └── values │ │ └── strings_plans.xml ├── admin-visibility │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── adminvisibility │ │ └── UserVaultVisibilitySnapshotService.kt ├── app-events │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ ├── event │ │ └── AppEvent.kt │ │ └── events │ │ ├── AppEvents.kt │ │ └── BroadcastConstants.kt ├── authentication │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── authentication │ │ │ ├── AuthenticationComponent.kt │ │ │ ├── AuthenticationCryptographyUtils.kt │ │ │ ├── AuthenticationException.kt │ │ │ ├── DataLossTrackingLogger.kt │ │ │ ├── DeviceRegistrationInfo.kt │ │ │ ├── LoginDataMapper.kt │ │ │ ├── LoginDataReset.kt │ │ │ ├── LoginDataResetImpl.kt │ │ │ ├── RemoteKeyFactory.kt │ │ │ ├── SettingsFactory.kt │ │ │ ├── SettingsFactoryImpl.kt │ │ │ ├── SsoServerKeyFactory.kt │ │ │ ├── UserStorage.kt │ │ │ ├── UserStorageImpl.kt │ │ │ ├── create │ │ │ ├── AccountCreationEmailRepository.kt │ │ │ ├── AccountCreationEmailRepositoryImpl.kt │ │ │ ├── AccountCreationRepository.kt │ │ │ ├── AccountCreationRepositoryImpl.kt │ │ │ └── AccountCreator.kt │ │ │ ├── hilt │ │ │ ├── AuthenticationLocalKeyModule.kt │ │ │ └── LoginAuthModule.kt │ │ │ ├── localkey │ │ │ ├── AuthenticationLocalKeyRepository.kt │ │ │ └── AuthenticationLocalKeyRepositoryImpl.kt │ │ │ ├── login │ │ │ ├── AuthenticationAuthTicketHelper.kt │ │ │ ├── AuthenticationAuthTicketHelperImpl.kt │ │ │ ├── AuthenticationDeviceRepository.kt │ │ │ ├── AuthenticationDeviceRepositoryImpl.kt │ │ │ ├── AuthenticationEmailRepository.kt │ │ │ ├── AuthenticationEmailRepositoryImpl.kt │ │ │ ├── AuthenticationPasswordRepository.kt │ │ │ ├── AuthenticationPasswordRepositoryImpl.kt │ │ │ ├── AuthenticationSecondFactoryRepository.kt │ │ │ ├── AuthenticationSecondFactoryRepositoryImpl.kt │ │ │ ├── AuthenticationSecretTransferRepository.kt │ │ │ ├── AuthenticationSsoRepository.kt │ │ │ ├── AuthenticationSsoRepositoryImpl.kt │ │ │ └── DeviceRegistrationInfoUtil.kt │ │ │ ├── sso │ │ │ ├── GetSsoInfoResult.kt │ │ │ ├── GetUserSsoInfoActivity.kt │ │ │ ├── SelfHostedSsoHelper.kt │ │ │ ├── confidential │ │ │ │ ├── NitroSsoInfoViewModel.kt │ │ │ │ └── webview │ │ │ │ │ ├── LimitedWebChromeClient.kt │ │ │ │ │ ├── NitroSsoWebView.kt │ │ │ │ │ └── NitroSsoWebViewClient.kt │ │ │ └── utils │ │ │ │ ├── UrlUtils.kt │ │ │ │ └── UserSsoInfo.kt │ │ │ └── twofa │ │ │ ├── Use2faSettingState.kt │ │ │ ├── Use2faSettingStateHolder.kt │ │ │ └── Use2faSettingStateRefresher.kt │ │ └── res │ │ └── values │ │ └── view_id.xml ├── authenticator │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── authenticator │ │ ├── Hotp.kt │ │ ├── Otp.kt │ │ ├── Pin.kt │ │ ├── Totp.kt │ │ ├── UriParser.kt │ │ └── util │ │ ├── Base32String.java │ │ ├── PasscodeGenerator.java │ │ └── TotpCounter.java ├── autofill-form-detector │ ├── Autofill.png │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── CREDIT-CARD-PROGRESS.md │ ├── README.md │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── autofill │ │ │ ├── AutoFillBlackList.kt │ │ │ ├── api │ │ │ ├── model │ │ │ │ ├── AutoFillApiViewNode.kt │ │ │ │ └── AutoFillApiWindowNode.kt │ │ │ └── util │ │ │ │ ├── AutofillValueFactory.kt │ │ │ │ └── AutofillValueFactoryAndroidImpl.kt │ │ │ ├── formdetector │ │ │ ├── AutoFillFormType.kt │ │ │ ├── AutoFillHintSummaryBuilder.kt │ │ │ ├── AutoFillHintsExtractor.kt │ │ │ ├── AutofillPackageNameAcceptor.kt │ │ │ ├── BrowserDetectionHelper.kt │ │ │ ├── completer │ │ │ │ ├── CandidateHintCompleter.kt │ │ │ │ ├── HintCompleter.kt │ │ │ │ └── LowAccuracyHintCompleter.kt │ │ │ ├── extractor │ │ │ │ ├── Extractor.kt │ │ │ │ ├── HintExtractor.kt │ │ │ │ └── form │ │ │ │ │ ├── BrotherViewsFormExtractor.kt │ │ │ │ │ ├── CandidateFormExtractor.kt │ │ │ │ │ ├── CreditCardFormExtractor.kt │ │ │ │ │ ├── FormExtractor.kt │ │ │ │ │ ├── LoginFormExtractor.kt │ │ │ │ │ ├── OtpFormExtractor.kt │ │ │ │ │ └── PostalAddressFormExtractor.kt │ │ │ ├── field │ │ │ │ ├── AutoFillHint.kt │ │ │ │ ├── CreditCardLabel.kt │ │ │ │ ├── EmailLabel.kt │ │ │ │ ├── LabelAcceptor.kt │ │ │ │ ├── OtpLabel.kt │ │ │ │ ├── PasswordLabel.kt │ │ │ │ ├── PostalAddressZipLabel.kt │ │ │ │ └── enums │ │ │ │ │ └── ChromeAutofillFieldType.kt │ │ │ ├── model │ │ │ │ ├── AutoFillFormSource.kt │ │ │ │ ├── AutoFillHintSummary.kt │ │ │ │ ├── AutoFillViewNode.kt │ │ │ │ └── AutoFillViewNodeUtils.kt │ │ │ └── scoring │ │ │ │ └── AutofillHintsWithAccuracy.kt │ │ │ └── util │ │ │ ├── IdGenerator.kt │ │ │ └── Utils.kt │ │ └── res │ │ └── xml │ │ └── autofill_service_config.xml ├── barcodescanner │ ├── .gitignore │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── barcodescanner │ │ │ ├── BarCodeCaptureActivity.kt │ │ │ └── CameraXViewModel.kt │ │ └── res │ │ ├── layout-land │ │ └── activity_barcode_scan.xml │ │ └── layout │ │ └── activity_barcode_scan.xml ├── braze │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── braze │ │ │ ├── BrazeConstants.kt │ │ │ ├── BrazeInAppMessage.kt │ │ │ ├── BrazeInAppMessageSubscriber.kt │ │ │ └── BrazeWrapper.kt │ │ └── res │ │ └── layout │ │ └── fragment_in_app_message.xml ├── breach │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── breach │ │ ├── AnalyzedBreach.kt │ │ ├── Breach.kt │ │ ├── BreachService.kt │ │ ├── BreachServiceImpl.kt │ │ ├── BreachWithOriginalJson.kt │ │ ├── BreachWrapper.kt │ │ ├── GetFileBreachesService.kt │ │ ├── events │ │ └── BreachStatusChangedEvent.kt │ │ └── utils │ │ ├── BreachDateSerializer.kt │ │ └── CriticalitySerializer.kt ├── cloud-passkeys │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── cloudpasskeys │ │ └── CloudPasskeyService.kt ├── common-app │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── common │ │ └── app │ │ └── hilt │ │ ├── CommonApplicationContextModule.kt │ │ ├── CryptographyModule.kt │ │ └── DeviceInfoModule.kt ├── device-discovery │ └── src │ │ └── main │ │ ├── kotlin │ │ └── com │ │ │ └── dashlane │ │ │ └── devicediscovery │ │ │ ├── MobileExchangeClient.kt │ │ │ └── PairedDevice.kt │ │ └── res │ │ └── values │ │ └── platform_capabilities.xml ├── device │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── device │ │ ├── DeviceInfoRepository.kt │ │ └── DeviceInfoRepositoryImpl.kt ├── frozenaccount │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── frozenaccount │ │ │ ├── FrozenStateManager.kt │ │ │ ├── dagger │ │ │ └── FrozenAccountModule.kt │ │ │ └── tracking │ │ │ └── FrozenStateLogger.kt │ │ └── res │ │ └── values │ │ ├── strings_frozen_account.xml │ │ └── strings_trial_ended.xml ├── hardwaresecurity │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── hardwaresecurity │ │ │ ├── BiometricActivationStatus.kt │ │ │ ├── BiometricAuthModule.kt │ │ │ ├── BiometricRecovery.kt │ │ │ ├── CryptoObjectHelper.kt │ │ │ └── SecurityHelper.kt │ │ └── res │ │ └── values │ │ └── strings_security.xml ├── in-app-autofill │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── inappautofill │ │ ├── AutoFillApiManager.kt │ │ ├── AutofillPhishingLogger.kt │ │ └── InAppLoginManager.kt ├── inappbilling │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── inappbilling │ │ ├── BillingClientUtils.kt │ │ ├── BillingManager.kt │ │ ├── BillingManagerImpl.kt │ │ ├── ConnectionScope.kt │ │ ├── ConnectionScopeImpl.kt │ │ ├── ServiceResult.kt │ │ └── UpdateReference.kt ├── lock │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── lock │ │ ├── LockManager.kt │ │ ├── LockSelfCheckerImpl.kt │ │ ├── LockTimeManagerImpl.kt │ │ ├── LockValidator.kt │ │ └── LockWatcherImpl.kt ├── navigable-bottom-sheet │ ├── README.md │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── bottomnavigation │ │ │ ├── NavigableBottomSheetDialogFragment.kt │ │ │ ├── NavigableBottomSheetDialogFragmentCanceledListener.kt │ │ │ ├── NavigableBottomSheetFragment.kt │ │ │ ├── activity │ │ │ └── NavigableBottomSheetActivity.kt │ │ │ └── delegatenavigation │ │ │ └── DelegateNavigationBottomSheetFragment.kt │ │ └── res │ │ ├── layout │ │ └── navigable_bottom_sheet_dialog_fragment.xml │ │ ├── navigation │ │ └── navigable_bottom_sheet_dialog_navigation.xml │ │ └── values │ │ └── ids.xml ├── nfccardreader │ ├── README.md │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── github │ │ │ └── devnied │ │ │ └── emvnfccard │ │ │ ├── enums │ │ │ ├── CommandEnum.java │ │ │ ├── EmvCardScheme.java │ │ │ ├── SwEnum.java │ │ │ ├── TagTypeEnum.java │ │ │ └── TagValueTypeEnum.java │ │ │ ├── exception │ │ │ ├── CommunicationException.java │ │ │ └── TlvException.java │ │ │ ├── iso7816emv │ │ │ ├── ByteArrayWrapper.java │ │ │ ├── EmvTags.java │ │ │ ├── ITag.java │ │ │ ├── ITerminal.java │ │ │ ├── TLV.java │ │ │ ├── TagAndLength.java │ │ │ ├── TerminalTransactionQualifiers.java │ │ │ └── impl │ │ │ │ ├── DefaultTerminalImpl.java │ │ │ │ └── TagImpl.java │ │ │ ├── model │ │ │ ├── AbstractData.java │ │ │ ├── Afl.java │ │ │ ├── Application.java │ │ │ ├── CPLC.java │ │ │ ├── EmvCard.java │ │ │ ├── EmvTrack1.java │ │ │ ├── EmvTrack2.java │ │ │ ├── EmvTransactionRecord.java │ │ │ ├── Service.java │ │ │ └── enums │ │ │ │ ├── ApplicationStepEnum.java │ │ │ │ ├── CardStateEnum.java │ │ │ │ ├── CountryCodeEnum.java │ │ │ │ ├── CurrencyEnum.java │ │ │ │ ├── IKeyEnum.java │ │ │ │ ├── ServiceCode1Enum.java │ │ │ │ ├── ServiceCode2Enum.java │ │ │ │ ├── ServiceCode3Enum.java │ │ │ │ └── TransactionTypeEnum.java │ │ │ ├── parser │ │ │ ├── EmvTemplate.java │ │ │ ├── IParser.java │ │ │ ├── IProvider.java │ │ │ ├── apdu │ │ │ │ ├── IFile.java │ │ │ │ ├── annotation │ │ │ │ │ ├── AnnotationData.java │ │ │ │ │ ├── AnnotationUtils.java │ │ │ │ │ └── Data.java │ │ │ │ └── impl │ │ │ │ │ ├── AbstractByteBean.java │ │ │ │ │ └── DataFactory.java │ │ │ └── impl │ │ │ │ ├── AbstractParser.java │ │ │ │ ├── EmvParser.java │ │ │ │ ├── GeldKarteParser.java │ │ │ │ └── ProviderWrapper.java │ │ │ ├── reader │ │ │ └── TlvInputStream.kt │ │ │ └── utils │ │ │ ├── AtrUtils.java │ │ │ ├── BitUtils.java │ │ │ ├── BytesUtils.java │ │ │ ├── CPLCUtils.java │ │ │ ├── CommandApdu.java │ │ │ ├── EnumUtils.java │ │ │ ├── ResponseUtils.java │ │ │ ├── TlvUtil.java │ │ │ └── TrackUtils.java │ │ └── resources │ │ └── smartcard_list.txt ├── nitro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── nitro │ │ ├── AttestationDocument.kt │ │ ├── AttestationValidator.kt │ │ ├── AttestationValidatorImpl.kt │ │ ├── CoseSign1.kt │ │ ├── Nitro.kt │ │ ├── NitroException.kt │ │ ├── NitroImpl.kt │ │ ├── api │ │ ├── DashlaneApiProvider.kt │ │ ├── NitroApiClientImpl.kt │ │ ├── NitroApiClientProvider.kt │ │ ├── NitroApiProxyClientImpl.kt │ │ └── tools │ │ │ ├── CloudflareNitroHeaderInterceptor.kt │ │ │ └── NitroUtils.kt │ │ ├── cryptography │ │ ├── NitroSecretStreamClient.kt │ │ ├── NitroSecretStreamClientImpl.kt │ │ ├── SecretStreamClientInfo.kt │ │ ├── SecretStreamServerInfo.kt │ │ ├── SecretStreamStates.kt │ │ └── sodium │ │ │ ├── SodiumCryptography.kt │ │ │ ├── SodiumModule.kt │ │ │ └── keys │ │ │ ├── ClientKeyPair.kt │ │ │ ├── KeyExchangeKeyPair.kt │ │ │ └── ServerKeyPair.kt │ │ ├── hilt │ │ ├── NitroAnnotations.kt │ │ └── NitroModule.kt │ │ ├── logs │ │ └── EncryptedActivityLogsService.kt │ │ └── util │ │ ├── ECDSASignatureConverter.kt │ │ └── Hex.kt ├── notification │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── notification │ │ ├── AutofillReceiver.kt │ │ ├── FcmCode.kt │ │ ├── FcmMessage.kt │ │ ├── LocalNotificationCreator.kt │ │ ├── PushNotificationRegister.kt │ │ ├── badge │ │ ├── NotificationBadgeListener.kt │ │ └── SharingInvitationRepository.kt │ │ ├── creator │ │ ├── AutoFillNotificationCreator.kt │ │ ├── ChromeAutofillNotificationCreator.kt │ │ └── WorkerManagerUtils.kt │ │ └── model │ │ └── AbstractNotificationHandler.kt ├── passphrase │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── passphrase │ │ │ └── generator │ │ │ └── PassphraseGenerator.kt │ │ └── res │ │ └── raw │ │ └── eff_large_wordlist.txt ├── password-analysis │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── passwordanalysis │ │ ├── AnalyzedAuthentifiant.kt │ │ ├── GroupOfAuthentifiant.kt │ │ ├── SecurityScore.kt │ │ └── SecurityScoreEvaluator.kt ├── password │ ├── CHANGELOG.md │ ├── README.md │ ├── generator-ui │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── dashlane │ │ │ │ └── password │ │ │ │ └── generator │ │ │ │ └── ui │ │ │ │ └── PasswordGeneratorConfigurationView.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ └── ic_history.xml │ │ │ ├── layout │ │ │ ├── generator_options_layout.xml │ │ │ └── include_fragment_password_generator_options_item.xml │ │ │ ├── menu │ │ │ └── password_history_menu.xml │ │ │ ├── values-land │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── length_values.xml │ │ │ └── strings.xml │ ├── generator │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── com │ │ │ └── dashlane │ │ │ └── password │ │ │ └── generator │ │ │ ├── PasswordGenerator.kt │ │ │ ├── PasswordGeneratorCriteria.kt │ │ │ ├── PasswordGeneratorException.kt │ │ │ ├── PasswordGeneratorWrapper.kt │ │ │ └── utils │ │ │ └── PasswordScrambler.kt │ ├── strength-ui │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── dashlane │ │ │ │ └── passwordstrength │ │ │ │ └── PasswordStrengthUiUtil.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ └── password_strength_pride_flag_bar.xml │ │ │ └── values │ │ │ └── strings.xml │ ├── strength-zxcvbn │ │ └── src │ │ │ ├── main │ │ │ └── kotlin │ │ │ │ └── com │ │ │ │ └── dashlane │ │ │ │ └── passwordstrength │ │ │ │ └── PasswordStrengthEvaluatorZxcvbn.kt │ │ │ └── testFixtures │ │ │ └── kotlin │ │ │ └── com │ │ │ └── dashlane │ │ │ └── passwordstrength │ │ │ └── PasswordStrengthTestCases.kt │ └── strength │ │ └── src │ │ └── main │ │ └── kotlin │ │ └── com │ │ └── dashlane │ │ ├── passwordstrength │ │ ├── PasswordStrength.kt │ │ ├── PasswordStrengthCache.kt │ │ ├── PasswordStrengthEvaluator.kt │ │ ├── PasswordStrengthEvaluatorCache.kt │ │ ├── PasswordStrengthEvaluatorException.kt │ │ ├── PasswordStrengthEvaluatorTruncated.kt │ │ ├── PasswordStrengthScore.kt │ │ ├── PasswordStrengthSuggestion.kt │ │ └── PasswordStrengthWarning.kt │ │ └── similarpassword │ │ ├── GroupOfPassword.kt │ │ ├── LevenshteinDistance.kt │ │ └── SimilarPassword.kt ├── passwordlimiter │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── limitations │ │ ├── PasswordLimitBottomSheetFragment.kt │ │ ├── PasswordLimitBottomSheetScreen.kt │ │ ├── PasswordLimitationLogger.kt │ │ └── PasswordLimiter.kt ├── quick-action │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── quickaction │ │ │ ├── QuickActionCopy.kt │ │ │ ├── QuickActionCopyIdentity.kt │ │ │ ├── QuickActionDelete.kt │ │ │ ├── QuickActionEdit.kt │ │ │ ├── QuickActionOpenAttachment.kt │ │ │ ├── QuickActionOpenWebsite.kt │ │ │ ├── QuickActionProvider.kt │ │ │ └── QuickActionShare.kt │ │ └── res │ │ └── values │ │ └── strings_quick_actions.xml ├── search-engine │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── search │ │ ├── MatchedSearchResult.kt │ │ ├── Query.kt │ │ ├── SearchField.kt │ │ ├── SearchSorter.kt │ │ ├── dagger │ │ └── SearchModule.kt │ │ ├── fields │ │ ├── LegacySearchField.kt │ │ └── SyncObjectSearchField.kt │ │ ├── textfactory │ │ ├── AddressSearchListTextFactory.kt │ │ ├── AuthentifiantSearchListTextFactory.kt │ │ ├── BankStatementSearchListTextFactory.kt │ │ ├── CompanySearchListTextFactory.kt │ │ ├── DataIdentifierSearchListTextFactory.kt │ │ ├── DefaultSearchListTextFactory.kt │ │ ├── DriverLicenceListTextFactory.kt │ │ ├── EmailSearchListTextFactory.kt │ │ ├── IdCardSearchListTextFactory.kt │ │ ├── IdentitySearchListTextFactory.kt │ │ ├── PasskeySearchListTextFactory.kt │ │ ├── PassportSearchListTextFactory.kt │ │ ├── PaymentCreditCardSearchListTextFactory.kt │ │ ├── PersonalWebsiteSearchListTextFactory.kt │ │ ├── SearchListTextResolver.kt │ │ ├── SecureNoteSearchListTextFactory.kt │ │ └── SocialSecurityStatementSearchListTextFactory.kt │ │ └── utils │ │ ├── RankingSearchSorter.kt │ │ └── SearchImprovementsUtils.kt ├── securefile │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── securefile │ │ ├── Attachment.kt │ │ ├── AttachmentsParser.kt │ │ ├── DeleteFileManager.kt │ │ ├── DownloadFileContract.kt │ │ ├── DownloadFileDataProvider.kt │ │ ├── FileSecurity.kt │ │ ├── SecureFile.kt │ │ ├── UploadFileContract.kt │ │ ├── UploadFileDataProvider.kt │ │ ├── extensions │ │ ├── AttachmentExtension.kt │ │ ├── ContentResolverExtension.kt │ │ └── SecureFileExtension.kt │ │ └── storage │ │ ├── SecureFileStorage.kt │ │ └── SecureFileStorageImpl.kt ├── session-restorer │ └── src │ │ └── main │ │ └── kotlin │ │ └── com │ │ └── dashlane │ │ └── session │ │ └── restorer │ │ └── SessionRestorerImpl.kt ├── session │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ ├── endoflife │ │ └── EndOfLife.kt │ │ └── session │ │ ├── Authorization.kt │ │ ├── BySessionRepository.kt │ │ ├── Session.kt │ │ ├── SessionCreator.kt │ │ ├── SessionCredentialsSaver.kt │ │ ├── SessionInitializer.kt │ │ ├── SessionManager.kt │ │ ├── SessionManagerImpl.kt │ │ ├── SessionObserver.kt │ │ ├── SessionRestorer.kt │ │ ├── SessionState.kt │ │ ├── SessionTrasher.kt │ │ └── repository │ │ ├── SessionCoroutineScopeRepository.kt │ │ ├── SettingsManager.kt │ │ ├── UserAccountInfoRepository.kt │ │ ├── UserDataRepository.kt │ │ ├── UserDataRepositoryImpl.kt │ │ ├── UserDatabaseRepository.kt │ │ └── UserDatabaseRepositoryImpl.kt ├── sharing-policy │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── sharingpolicy │ │ └── SharingPolicyDataProvider.kt ├── sharing │ └── src │ │ └── main │ │ └── kotlin │ │ └── com │ │ └── dashlane │ │ └── sharing │ │ ├── AutoAcceptItemGroup.kt │ │ ├── SharedItemAccessor.kt │ │ ├── SharedVaultItemLite.kt │ │ ├── SharingCollectionInvitePublicKeyUser.kt │ │ ├── SharingContact.kt │ │ ├── SharingDao.kt │ │ ├── SharingDaoMemoryDataAccess.kt │ │ ├── SharingDaoMemoryDataAccessImpl.kt │ │ ├── SharingDaoMemoryDataAccessProvider.kt │ │ ├── SharingDataProvider.kt │ │ ├── SharingGetProvider.kt │ │ ├── SharingInvitePublicKeyUser.kt │ │ ├── SharingItemGroupInvitePublicKeyUser.kt │ │ ├── SharingItemUpdaterRequest.kt │ │ ├── SharingSyncCommunicator.kt │ │ ├── SharingSyncCommunicatorImpl.kt │ │ ├── SharingUserGroupInvitePublicKeyUser.kt │ │ ├── exception │ │ └── Exceptions.kt │ │ ├── internal │ │ ├── builder │ │ │ └── request │ │ │ │ ├── AcceptCollectionRequestBuilder.kt │ │ │ │ ├── AcceptItemGroupRequestForUserBuilder.kt │ │ │ │ ├── AcceptUserGroupRequestBuilder.kt │ │ │ │ ├── AddItemsGroupsToCollectionRequestBuilder.kt │ │ │ │ ├── CollectionRequestsHelper.kt │ │ │ │ ├── CreateCollectionRequestBuilder.kt │ │ │ │ ├── CreateItemGroupRequestBuilder.kt │ │ │ │ ├── CreateItemGroupRequestsHelper.kt │ │ │ │ ├── CreateMultipleItemGroupsRequestBuilder.kt │ │ │ │ ├── InviteCollectionMembersRequestBuilder.kt │ │ │ │ ├── InviteMultipleItemGroupMembersRequestBuilder.kt │ │ │ │ ├── SharingRequestRepository.kt │ │ │ │ ├── UpdateItemGroupMembersRequestBuilder.kt │ │ │ │ └── UpdateUserGroupUsersRequestBuilder.kt │ │ └── model │ │ │ └── RequestModels.kt │ │ ├── model │ │ ├── CollectionUtils.kt │ │ ├── ItemGroupUtils.kt │ │ └── SharingModelUtils.kt │ │ ├── service │ │ └── FindUsersDataProvider.kt │ │ └── util │ │ ├── AuditLogHelper.kt │ │ ├── GroupKeyLazy.kt │ │ ├── GroupVerification.kt │ │ ├── GroupVerificationExceptions.kt │ │ ├── ProposeSignatureVerification.kt │ │ ├── SharingCryptographyExtension.kt │ │ └── SharingCryptographyHelper.kt ├── sync-helper │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ ├── async │ │ │ └── SyncBroadcastManager.kt │ │ │ ├── events │ │ │ └── SyncFinishedEvent.kt │ │ │ ├── sharing │ │ │ └── SharedItemMerger.kt │ │ │ ├── storage │ │ │ └── userdata │ │ │ │ ├── DataSyncDaoRaclette.kt │ │ │ │ ├── DatabaseItemSaver.kt │ │ │ │ └── DatabaseItemSaverRaclette.kt │ │ │ └── sync │ │ │ ├── DataIdentifierSyncRepositoryRaclette.kt │ │ │ ├── DataSyncHelper.kt │ │ │ ├── LegacyCryptoMigrationHelper.kt │ │ │ ├── SyncVaultImplRaclette.kt │ │ │ └── UserSettingsSyncRepository.kt │ │ └── res │ │ └── values │ │ └── strings.xml ├── teamspace │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── teamspaces │ │ │ ├── TeamSpaceUtils.kt │ │ │ ├── adapter │ │ │ ├── SpinnerUtil.java │ │ │ ├── TeamspaceDrawableProvider.kt │ │ │ ├── TeamspaceIconDrawable.kt │ │ │ └── TeamspaceSpinnerAdapter.kt │ │ │ ├── export │ │ │ └── ExportVaultStatus.kt │ │ │ ├── hilt │ │ │ └── TeamSpaceModule.kt │ │ │ ├── manager │ │ │ ├── TeamSpaceAccessorProvider.kt │ │ │ └── TeamspaceAccessor.kt │ │ │ ├── model │ │ │ ├── SpaceColor.kt │ │ │ ├── SpaceName.kt │ │ │ └── TeamSpace.kt │ │ │ ├── ui │ │ │ ├── CurrentTeamSpaceUiFilter.kt │ │ │ ├── SpaceFilterState.kt │ │ │ └── TeamSpaceRestrictionNotificator.kt │ │ │ └── util │ │ │ └── BusinessSpaceUtil.kt │ │ └── res │ │ ├── drawable │ │ └── all_spaces_icon.xml │ │ ├── layout │ │ ├── spinner_item_dropdown.xml │ │ └── spinner_item_preview.xml │ │ └── values │ │ ├── colors_teamspaces.xml │ │ ├── dimens_teamspace.xml │ │ ├── strings_team_restrictions.xml │ │ └── strings_teamspaces.xml ├── udf │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── udf │ │ ├── Event.kt │ │ ├── StateMachine.kt │ │ ├── Strategy.kt │ │ ├── UdfViewModel.kt │ │ └── UseCase.kt ├── user-cryptography │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── usercryptography │ │ ├── CryptographySettingsImpl.kt │ │ └── UserCryptographyRepository.kt ├── vault-clipboard │ ├── README.md │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── dashlane │ │ │ └── util │ │ │ └── clipboard │ │ │ ├── ClipboardCopy.kt │ │ │ ├── ClipboardCopyImpl.kt │ │ │ └── vault │ │ │ ├── CopyContent.kt │ │ │ ├── CopyField.kt │ │ │ ├── CopyFieldContentMapper.kt │ │ │ ├── CopyFieldFeedbackResourceIds.kt │ │ │ ├── VaultItemCopyListener.kt │ │ │ ├── VaultItemCopyListenerHolder.kt │ │ │ ├── VaultItemCopyListenerHolderByInjection.kt │ │ │ ├── VaultItemCopyLogger.kt │ │ │ ├── VaultItemCopyService.kt │ │ │ ├── VaultItemCopyServiceImpl.kt │ │ │ ├── VaultItemFieldContentService.kt │ │ │ └── VaultItemFieldContentServiceImpl.kt │ │ └── res │ │ └── values │ │ └── strings_clipboard_feedback.xml ├── vault-domain │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── dashlane │ │ └── vault │ │ ├── Filter.kt │ │ ├── VaultActivityLogger.kt │ │ ├── VaultItemLogger.kt │ │ ├── VaultItemsRepository.kt │ │ └── item │ │ ├── VaultItemLogAttachmentHelper.kt │ │ └── delete │ │ ├── DeleteVaultItemLogger.kt │ │ ├── DeleteVaultItemProvider.kt │ │ └── RemoteContentDeleter.kt └── vault-storage │ └── src │ └── main │ ├── kotlin │ └── com │ │ └── dashlane │ │ └── storage │ │ └── userdata │ │ └── accessor │ │ ├── AccessorDatabaseQueryUtils.kt │ │ ├── CredentialDataQueryImpl.kt │ │ ├── DataCounterImpl.kt │ │ ├── DataIdentifierUtils.kt │ │ ├── GenericDataQueryImpl.kt │ │ └── VaultDataQueryImpl.kt │ └── res │ └── values │ └── strings.xml └── storage ├── database ├── CHANGELOG.md ├── README.md ├── TESTING.md ├── images │ ├── Android-Database-Project.png │ └── Database-Architecture-class-diagram.png └── src │ └── main │ └── kotlin │ └── com │ └── dashlane │ ├── database │ ├── BackupRepository.kt │ ├── BackupRepositoryImpl.kt │ ├── CryptographyEngineFactoryImpl.kt │ ├── DataChangeHistoryRepository.kt │ ├── DataChangeHistoryRepositoryImpl.kt │ ├── Database.kt │ ├── DatabaseException.kt │ ├── DatabaseFiles.kt │ ├── DatabaseImpl.kt │ ├── DatabaseIndex.kt │ ├── DatabaseProvider.kt │ ├── DatabaseProviderImpl.kt │ ├── DatabaseReader.kt │ ├── DatabaseWriter.kt │ ├── FileSummaryRepository.kt │ ├── FileSummaryRepositoryImpl.kt │ ├── Id.kt │ ├── IndexReader.kt │ ├── IndexWriter.kt │ ├── MemorySummaryRepository.kt │ ├── MemorySummaryRepositoryImpl.kt │ ├── SearchRepository.kt │ ├── SearchRepositoryImpl.kt │ ├── SharingRepository.kt │ ├── SharingRepositoryImpl.kt │ ├── SyncSummaryRepository.kt │ ├── SyncSummaryRepositoryImpl.kt │ ├── TransactionRepository.kt │ ├── TransactionRepositoryImpl.kt │ ├── TransactionSearchRepositoryImpl.kt │ ├── TransactionSharingRepositoryImpl.kt │ ├── VaultObjectRepository.kt │ ├── VaultObjectRepositoryImpl.kt │ ├── adapter │ │ ├── CountryAdapter.kt │ │ ├── InstantAdapter.kt │ │ ├── LocalDateAdapter.kt │ │ ├── MonthAdapter.kt │ │ ├── SummaryObjectAdapterFactory.kt │ │ ├── SyncObjectAdapter.kt │ │ ├── SyncStateAdapter.kt │ │ ├── VaultItemJsonName.kt │ │ ├── XmlDataAdapter.kt │ │ └── YearAdapter.kt │ ├── model │ │ ├── DatabaseSearch.kt │ │ └── SearchItem.kt │ └── transaction │ │ ├── CommonTransaction.kt │ │ ├── RecoverableRepository.kt │ │ ├── TransactionRecovery.kt │ │ └── TransactionResult.kt │ ├── sharing │ └── model │ │ ├── CollectionDownloadRaclette.kt │ │ ├── CollectionRaclette.kt │ │ ├── ItemContentRaclette.kt │ │ ├── ItemGroupRaclette.kt │ │ ├── ItemKeyRaclette.kt │ │ ├── SharingCollections.kt │ │ ├── SharingItemContents.kt │ │ ├── SharingItemGroups.kt │ │ ├── SharingUserGroups.kt │ │ ├── UserCollectionDownloadRaclette.kt │ │ ├── UserDownloadRaclette.kt │ │ ├── UserGroupCollectionDownloadRaclette.kt │ │ ├── UserGroupMemberRaclette.kt │ │ └── UserGroupRaclette.kt │ ├── sync │ └── VaultItemBackupWrapper.kt │ ├── util │ ├── CreditCardType.kt │ └── ListUtils.kt │ └── vault │ ├── model │ ├── CommonDataIdentifierAttrs.kt │ ├── CommonDataIdentifierAttrsImpl.kt │ ├── DataIdentifierAttrs.kt │ ├── DataIdentifierAttrsMutable.kt │ ├── IdentityUtils.kt │ ├── PaymentCreditCardUtils.kt │ ├── SyncState.kt │ └── VaultItem.kt │ └── summary │ ├── DatabaseDataChangeHistorySummary.kt │ ├── DatabaseSummary.kt │ ├── DatabaseSyncSummary.kt │ ├── SummaryObject.kt │ ├── SummaryUtils.kt │ ├── SyncSummaryItem.kt │ └── SyncSummaryUtils.kt ├── db-access-interface └── src │ └── main │ └── java │ └── com │ └── dashlane │ ├── storage │ └── userdata │ │ ├── accessor │ │ ├── CollectionDataQuery.kt │ │ ├── CredentialDataQuery.kt │ │ ├── DataChangeHistoryQuery.kt │ │ ├── DataChangeHistorySaver.kt │ │ ├── DataCounter.kt │ │ ├── DataQuery.kt │ │ ├── DataSaver.kt │ │ ├── FrequentSearch.kt │ │ ├── GeneratedPasswordQuery.kt │ │ ├── GenericDataQuery.kt │ │ ├── VaultDataQuery.kt │ │ └── filter │ │ │ ├── BaseFilter.kt │ │ │ ├── CollectionFilter.kt │ │ │ ├── CounterFilter.kt │ │ │ ├── CredentialFilter.kt │ │ │ ├── DataChangeHistoryFilter.kt │ │ │ ├── FilterDsl.kt │ │ │ ├── FilterToPredicate.kt │ │ │ ├── FilterToPredicateSummary.kt │ │ │ ├── FilterToPredicateUtil.kt │ │ │ ├── GenericFilter.kt │ │ │ ├── PasskeyFilter.kt │ │ │ ├── VaultFilter.kt │ │ │ ├── datatype │ │ │ ├── AllDataTypeFilter.kt │ │ │ ├── CredentialsDataTypeFilter.kt │ │ │ ├── DataTypeFilter.kt │ │ │ ├── EditableDataTypeFilter.kt │ │ │ ├── IdsDataTypeFilter.kt │ │ │ ├── ShareableDataTypeFilter.kt │ │ │ └── SpecificDataTypeFilter.kt │ │ │ ├── lock │ │ │ ├── DefaultLockFilter.kt │ │ │ ├── EditableLockFilter.kt │ │ │ ├── IgnoreLockFilter.kt │ │ │ └── LockFilter.kt │ │ │ ├── passkey │ │ │ └── EditablePasskeyFilter.kt │ │ │ ├── sharing │ │ │ ├── EditableSharingPermissionFilter.kt │ │ │ ├── NoSharingFilter.kt │ │ │ ├── SharingFilter.kt │ │ │ └── SpecificSharingFilter.kt │ │ │ ├── space │ │ │ ├── CurrentSpaceFilter.kt │ │ │ ├── EditableSpaceFilter.kt │ │ │ ├── NoRestrictionSpaceFilter.kt │ │ │ ├── NoSpaceFilter.kt │ │ │ ├── SpaceFilter.kt │ │ │ └── SpecificSpaceFilter.kt │ │ │ ├── status │ │ │ ├── AllStatusFilter.kt │ │ │ ├── DefaultStatusFilter.kt │ │ │ ├── EditableStatusFilter.kt │ │ │ └── StatusFilter.kt │ │ │ └── uid │ │ │ ├── EditableUidFilter.kt │ │ │ ├── NoUidFilter.kt │ │ │ ├── SpecificUidFilter.kt │ │ │ └── UidFilter.kt │ │ ├── dao │ │ ├── ItemContentDB.kt │ │ └── SharingDataType.kt │ │ └── restriction │ │ └── PasskeysRestrictionsChecker.kt │ └── teamspaces │ └── manager │ ├── DataIdentifierSpaceCategorization.kt │ └── TeamspaceMatcher.kt ├── preference └── src │ └── main │ └── java │ └── com │ └── dashlane │ └── preference │ ├── CleanupPreferencesManager.kt │ ├── CompatibilityPreferencesManager.kt │ ├── ConstantsPrefs.kt │ ├── DashlanePreferencesManager.kt │ ├── GlobalPreferencesManager.kt │ ├── PreferenceEntry.kt │ ├── PreferenceExtension.kt │ └── UserPreferencesManager.kt └── securestorage └── src └── main └── java └── com └── dashlane ├── account ├── UserAccountStorage.kt └── UserAccountStorageImpl.kt └── storage └── securestorage ├── LocalKeyRepository.kt ├── SecureDataKey.kt ├── SecureDataStorage.kt ├── SecureDataStore.kt ├── SecureStorageLocalKeyCryptographyMarkerMigration.kt ├── SecureStorageManager.kt ├── UserSecureStorageManager.kt └── cryptography ├── FlexibleDecryptionEngine.kt └── SecureDataStoreCryptography.kt /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/README.md -------------------------------------------------------------------------------- /dashlane-project/Dashlane-wear/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane-wear/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane-wear/src/main/java/com/dashlane/wear/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane-wear/src/main/java/com/dashlane/wear/MainActivity.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane-wear/src/main/java/com/dashlane/wear/TypeSupportUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane-wear/src/main/java/com/dashlane/wear/TypeSupportUtil.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane-wear/src/main/res/drawable/dashlane_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane-wear/src/main/res/drawable/dashlane_logo.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane-wear/src/main/res/drawable/splashscreen_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane-wear/src/main/res/drawable/splashscreen_icon.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane-wear/src/main/res/mipmap-anydpi/ic_launcher_wear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane-wear/src/main/res/mipmap-anydpi/ic_launcher_wear.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane-wear/src/main/res/values/app_capabilities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane-wear/src/main/res/values/app_capabilities.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane-wear/src/main/res/values/item_details_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane-wear/src/main/res/values/item_details_strings.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane-wear/src/main/res/values/settings_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane-wear/src/main/res/values/settings_strings.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane-wear/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane-wear/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane-wear/src/main/res/values/vault_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane-wear/src/main/res/values/vault_strings.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane-wear/src/main/res/values/wear_splash_screen_theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane-wear/src/main/res/values/wear_splash_screen_theme.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/DashlaneApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/DashlaneApplication.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/DashlaneApplicationObserver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/DashlaneApplicationObserver.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/DashlaneFcmService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/DashlaneFcmService.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/backup/DashlaneBackupAgent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/backup/DashlaneBackupAgent.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/breach/BreachManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/breach/BreachManager.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/collections/SpaceData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/collections/SpaceData.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/collections/edit/ViewState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/collections/edit/ViewState.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/collections/list/ViewState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/collections/list/ViewState.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/core/DataSyncFlowUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/core/DataSyncFlowUtils.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/core/DataSyncImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/core/DataSyncImpl.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/core/DataSyncNotification.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/core/DataSyncNotification.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/core/HashForLog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/core/HashForLog.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/core/domain/State.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/core/domain/State.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/dagger/ActivityModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/dagger/ActivityModule.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/dagger/DateModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/dagger/DateModule.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/dagger/FragmentModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/dagger/FragmentModule.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/dagger/NotificatorModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/dagger/NotificatorModule.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/dagger/ViewModelModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/dagger/ViewModelModule.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/dagger/singleton/SyncModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/dagger/singleton/SyncModule.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/device/DeviceInformation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/device/DeviceInformation.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/device/DeviceUpdateManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/device/DeviceUpdateManager.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/endoflife/EndOfLifeModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/endoflife/EndOfLifeModule.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/endoflife/EndOfLifeObserver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/endoflife/EndOfLifeObserver.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/events/PasswordChangedEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/events/PasswordChangedEvent.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/BaseUiUpdateListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/BaseUiUpdateListener.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/ItemEditViewActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/ItemEditViewActivity.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/ItemEditViewContract.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/ItemEditViewContract.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/ItemEditViewPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/ItemEditViewPresenter.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/ItemEditViewViewProxy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/ItemEditViewViewProxy.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/ScreenConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/ScreenConfiguration.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/WindowUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/WindowUtil.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/header/ItemHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/header/ItemHeader.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/nfc/EmvCardProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/nfc/EmvCardProvider.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/nfc/NfcHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/nfc/NfcHelper.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/nfc/NfcObserver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/nfc/NfcObserver.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/subview/ItemSubView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/subview/ItemSubView.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/subview/ViewFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/subview/ViewFactory.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/ItemEditFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/ItemEditFragment.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/ItemEditModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/ItemEditModule.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/data/CollectionData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/data/CollectionData.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/data/CommonData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/data/CommonData.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/data/FormData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/data/FormData.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/data/InfoBoxData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/data/InfoBoxData.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/data/ItemAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/data/ItemAction.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/data/SecretFormData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/data/SecretFormData.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/display/ItemHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/display/ItemHeader.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/display/Toolbar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/display/Toolbar.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/util/Field.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/util/Field.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/util/InfoboxHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/util/InfoboxHelper.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/util/StateHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/util/StateHelper.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/util/ToolbarHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/item/v3/util/ToolbarHelper.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/login/LoginActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/login/LoginActivity.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/login/TrackingIdProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/login/TrackingIdProvider.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/login/UserAccountStatus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/login/UserAccountStatus.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/login/dagger/ShortTimeout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/login/dagger/ShortTimeout.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/login/dagger/TrackingId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/login/dagger/TrackingId.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/login/root/LoginState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/login/root/LoginState.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/login/root/LoginViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/login/root/LoginViewModel.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/navigation/NavigatorImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/navigation/NavigatorImpl.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/notification/FcmHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/notification/FcmHelper.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/ui/M2xIntentFactoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/ui/M2xIntentFactoryImpl.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/ui/ScreenshotPolicyImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/ui/ScreenshotPolicyImpl.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/ui/activities/HomeActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/ui/activities/HomeActivity.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/ui/activities/HomeState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/ui/activities/HomeState.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/ui/activities/HomeViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/ui/activities/HomeViewModel.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/ui/fab/FabDef.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/ui/fab/FabDef.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/ui/fab/FabPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/ui/fab/FabPresenter.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/ui/fab/FabViewProxy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/ui/fab/FabViewProxy.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/ui/fab/FabViewUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/ui/fab/FabViewUtil.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/ui/fab/VaultFabViewProxy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/ui/fab/VaultFabViewProxy.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/ui/menu/MenuScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/ui/menu/MenuScreen.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/ui/menu/MenuState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/ui/menu/MenuState.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/ui/menu/MenuViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/ui/menu/MenuViewModel.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/ui/menu/view/item/MenuItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/ui/menu/view/item/MenuItem.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/ui/util/DataLoaderForUi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/ui/util/DataLoaderForUi.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/ui/util/DrawerLayoutUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/ui/util/DrawerLayoutUtils.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/ui/util/FinishingActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/ui/util/FinishingActivity.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/ui/widgets/NotificatorImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/ui/widgets/NotificatorImpl.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/update/AppUpdateInstaller.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/update/AppUpdateInstaller.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/util/AppShortcutsUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/util/AppShortcutsUtil.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/util/CheckedDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/util/CheckedDelegate.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/util/CursorUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/util/CursorUtils.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/util/DashlaneGlideModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/util/DashlaneGlideModule.java -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/util/DeviceListManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/util/DeviceListManager.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/util/GravatarFetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/util/GravatarFetcher.java -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/util/IntentFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/util/IntentFactory.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/util/ResourcesUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/util/ResourcesUtils.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/util/TextUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/util/TextUtil.java -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/util/UiConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/util/UiConstants.java -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/util/ViewTypeUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/util/ViewTypeUtils.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/util/ViewUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/util/ViewUtils.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/util/log/LaunchLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/util/log/LaunchLogger.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/java/com/dashlane/vault/VaultReportLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/java/com/dashlane/vault/VaultReportLogger.kt -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/anim/fade_slide_in_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/anim/fade_slide_in_bottom.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/anim/fade_slide_out_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/anim/fade_slide_out_top.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/anim/fadein_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/anim/fadein_activity.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/anim/fadeout_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/anim/fadeout_activity.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/anim/grow_from_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/anim/grow_from_bottom.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/anim/shrink_from_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/anim/shrink_from_top.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/color/item_highlighted_background_tint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/color/item_highlighted_background_tint.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable-hdpi/sharing_contact_bubble.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable-hdpi/sharing_contact_bubble.9.png -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable-mdpi/sharing_contact_bubble.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable-mdpi/sharing_contact_bubble.9.png -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable-xhdpi/sharing_contact_bubble.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable-xhdpi/sharing_contact_bubble.9.png -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable-xxhdpi/sharing_contact_bubble.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable-xxhdpi/sharing_contact_bubble.9.png -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/action_bar_menu_alert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/action_bar_menu_alert.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/action_bar_menu_alert_with_dot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/action_bar_menu_alert_with_dot.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/action_bar_menu_attach_file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/action_bar_menu_attach_file.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/action_bar_menu_delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/action_bar_menu_delete.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/autologin_intro_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/autologin_intro_icon.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/background_circle_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/background_circle_error.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/background_device_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/background_device_item.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/background_device_item_selected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/background_device_item_selected.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/background_dwm_alert_solved.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/background_dwm_alert_solved.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/background_dwm_selected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/background_dwm_selected.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/bg_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/bg_card.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/bg_card_bottom_margin_8dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/bg_card_bottom_margin_8dp.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/bottom_sheet_round_corner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/bottom_sheet_round_corner.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/close_cross.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/close_cross.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/edit.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/fab_menu_item_text_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/fab_menu_item_text_background.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/fab_plus_icon_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/fab_plus_icon_selector.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/hidden_impala.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/hidden_impala.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_action_item_account_recovery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_action_item_account_recovery.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_action_item_auto_fill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_action_item_auto_fill.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_action_item_dm_alert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_action_item_dm_alert.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_action_item_fingerprint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_action_item_fingerprint.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_action_item_pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_action_item_pin.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_action_item_premium_related.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_action_item_premium_related.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_action_item_security_alert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_action_item_security_alert.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_action_item_zero_password.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_action_item_zero_password.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_action_open.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_action_open.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_add.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_arrow_up_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_arrow_up_outlined.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_attachment_selected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_attachment_selected.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_dwm_item_selected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_dwm_item_selected.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_empty_breaches.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_empty_breaches.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_empty_breaches_email_pending.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_empty_breaches_email_pending.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_empty_breaches_resolved.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_empty_breaches_resolved.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_empty_password_analysis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_empty_password_analysis.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_import_methods_competitor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_import_methods_competitor.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_import_methods_csv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_import_methods_csv.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_import_methods_m2d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_import_methods_m2d.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_item_action_copy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_item_action_copy.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_menu_dashlane.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_menu_dashlane.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_mobile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_mobile.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_onboarding_application_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_onboarding_application_lock.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_purchase_check_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_purchase_check_error.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_purchase_check_success.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_purchase_check_success.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_sharing_user_group.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_sharing_user_group.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/ic_trash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/ic_trash.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/progress_circular.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/progress_circular.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/save.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/save.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/drawable/sharing_send.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/drawable/sharing_send.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout-land/include_dialog_image_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout-land/include_dialog_image_text.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/activity_attachment_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/activity_attachment_list.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/activity_autofill_demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/activity_autofill_demo.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/activity_dashlane_wrapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/activity_dashlane_wrapper.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/activity_debug_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/activity_debug_settings.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/activity_home_activity_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/activity_home_activity_layout.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/activity_item_edit_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/activity_item_edit_view.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/activity_purchase_checking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/activity_purchase_checking.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/attachment_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/attachment_list_item.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/bottom_sheet_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/bottom_sheet_dialog.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/bottom_sheet_list_dialog_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/bottom_sheet_list_dialog_fragment.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/bottom_sheet_quick_actions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/bottom_sheet_quick_actions.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/chips_text_sharing_contact.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/chips_text_sharing_contact.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/chips_text_sharing_contact_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/chips_text_sharing_contact_layout.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/dark_web_emails_expandable_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/dark_web_emails_expandable_card.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/dialog_security_breach_alert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/dialog_security_breach_alert.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/edittext_input_provider_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/edittext_input_provider_item.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/expandable_import_methods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/expandable_import_methods.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/fab_menu_list_ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/fab_menu_list_ids.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/fab_menu_list_payments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/fab_menu_list_payments.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/fab_menu_list_personal_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/fab_menu_list_personal_info.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/fab_menu_list_recent_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/fab_menu_list_recent_item.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/fragment_actionitem_center.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/fragment_actionitem_center.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/fragment_breach_alert_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/fragment_breach_alert_detail.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/fragment_checklist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/fragment_checklist.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/fragment_create_credential_step1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/fragment_create_credential_step1.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/fragment_darkweb_monitoring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/fragment_darkweb_monitoring.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/fragment_data_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/fragment_data_list.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/fragment_devices_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/fragment_devices_list.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/fragment_linked_services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/fragment_linked_services.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/fragment_password_generator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/fragment_password_generator.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/fragment_purchase_checking_result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/fragment_purchase_checking_result.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/fragment_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/fragment_search.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/fragment_sharing_center_data_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/fragment_sharing_center_data_list.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/fragment_sharing_message.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/fragment_sharing_message.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/fragment_tablayout_viewpager2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/fragment_tablayout_viewpager2.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/fragment_vault.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/fragment_vault.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/header_dark_web_monitored_emails.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/header_dark_web_monitored_emails.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/header_import_methods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/header_import_methods.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/hidden_impala.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/hidden_impala.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/include_dialog_image_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/include_dialog_image_text.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/include_fab_menu_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/include_fab_menu_item.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/include_import_method_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/include_import_method_item.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/item_action_bottom_sheet_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/item_action_bottom_sheet_dialog.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/item_actionitem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/item_actionitem.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/item_actionitem_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/item_actionitem_header.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/item_dark_web_breach.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/item_dark_web_breach.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/item_dark_web_email.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/item_dark_web_email.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/item_dark_web_email_placeholder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/item_dark_web_email_placeholder.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/item_dark_web_email_recycler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/item_dark_web_email_recycler.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/item_dark_web_inactive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/item_dark_web_inactive.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/item_dark_web_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/item_dark_web_loading.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/item_dark_web_recycler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/item_dark_web_recycler.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/item_device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/item_device.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/item_empty_actionitem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/item_empty_actionitem.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/item_getstarted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/item_getstarted.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/item_linked_apps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/item_linked_apps.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/item_linked_services_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/item_linked_services_header.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/item_linked_websites.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/item_linked_websites.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/item_linked_websites_add_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/item_linked_websites_add_button.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/item_searcheable_setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/item_searcheable_setting.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/linked_app_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/linked_app_fragment.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/list_item_content_sharing_by_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/list_item_content_sharing_by_user.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/list_item_sharing_contact_chips.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/list_item_sharing_contact_chips.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/list_social_media_footer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/list_social_media_footer.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/popup_token_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/popup_token_view.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/progress_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/progress_dialog.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/sharing_pending_invitation_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/sharing_pending_invitation_layout.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/simple_frame_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/simple_frame_layout.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/simple_list_item_single_choice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/simple_list_item_single_choice.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/subview_with_action.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/subview_with_action.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/layout/window_lottie_confetti.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/layout/window_lottie_confetti.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/menu/collection_detail_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/menu/collection_detail_menu.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/menu/collection_list_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/menu/collection_list_menu.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/menu/delete_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/menu/delete_menu.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/menu/fragment_vault_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/menu/fragment_vault_menu.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/menu/main_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/menu/main_menu.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/menu/save_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/menu/save_menu.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/menu/settings_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/menu/settings_menu.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/menu/sharing_action_admin_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/menu/sharing_action_admin_menu.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/menu/sharing_action_user_pending_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/menu/sharing_action_user_pending_menu.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/menu/sharing_share_item_send.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/menu/sharing_share_item_send.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/navigation/drawer_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/navigation/drawer_navigation.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/navigation/purchase_checking_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/navigation/purchase_checking_navigation.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/raw/keep_instant_app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/raw/keep_instant_app.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/raw/lottie_trial_upgrade_recommendation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/raw/lottie_trial_upgrade_recommendation.json -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values-sw600dp/dimens_fab_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values-sw600dp/dimens_fab_menu.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values-sw600dp/dimens_floating_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values-sw600dp/dimens_floating_button.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/app_capabilities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/app_capabilities.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/arc_buttons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/arc_buttons.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/attrs_import_method_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/attrs_import_method_item.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/attrs_logo_behavior.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/attrs_logo_behavior.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/badges.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/badges.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/bools.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/createscreen_keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/createscreen_keys.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/dimens_botton_sheet_action.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/dimens_botton_sheet_action.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/dimens_floating_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/dimens_floating_button.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/dimens_fragment_devices_grid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/dimens_fragment_devices_grid.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/dimens_fragment_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/dimens_fragment_settings.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/dimens_import_core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/dimens_import_core.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/dimens_sharing_center_lists.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/dimens_sharing_center_lists.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/floating_label_ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/floating_label_ids.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/home_colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/home_colors.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/home_dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/home_dimens.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/ids_import_browser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/ids_import_browser.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/ids_item_subview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/ids_item_subview.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/keyboard_res.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/keyboard_res.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/notification.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/onboarding_style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/onboarding_style.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/password_generator_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/password_generator_settings.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/plurals.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/save_credentials.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/save_credentials.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/settings_keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/settings_keys.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/sharing_colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/sharing_colors.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/sharing_ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/sharing_ids.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/string_autofill_onboarding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/string_autofill_onboarding.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_account_summary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_account_summary.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_actionitem_center.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_actionitem_center.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_add_first_password.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_add_first_password.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_app_update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_app_update.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_autologin_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_autologin_intro.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_collection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_collection.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_collection_limiter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_collection_limiter.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_darkweb_breaches.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_darkweb_breaches.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_faq_add_first_password.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_faq_add_first_password.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_getstarted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_getstarted.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_hidden_impala.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_hidden_impala.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_keyboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_keyboard.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_license.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_license.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_linked_services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_linked_services.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_login.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_login_passwordless.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_login_passwordless.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_nfc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_nfc.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_notification.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_password_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_password_history.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_securefile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_securefile.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_settings.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_smartling.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_smartling.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_surveys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_surveys.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_trial_awareness_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_trial_awareness_dialog.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_vault.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_vault.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/strings_vault_announcement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/strings_vault_announcement.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/tag_keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/tag_keys.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/themes_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/themes_login.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/themes_splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/themes_splash_screen.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/values/websites_suggestion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/values/websites_suggestion.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/xml/authenticator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/xml/authenticator.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/xml/file_provider_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/xml/file_provider_paths.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/main/res/xml/locales_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/main/res/xml/locales_config.xml -------------------------------------------------------------------------------- /dashlane-project/Dashlane/src/release/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/Dashlane/src/release/AndroidManifest.xml -------------------------------------------------------------------------------- /dashlane-project/baselineprofile/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /dashlane-project/baselineprofile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/baselineprofile/README.md -------------------------------------------------------------------------------- /dashlane-project/baselineprofile/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/java/com/dashlane/util/Toaster.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/java/com/dashlane/util/Toaster.kt -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/anim/fade_slide_in_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/anim/fade_slide_in_left.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/anim/fade_slide_in_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/anim/fade_slide_in_right.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/anim/fade_slide_out_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/anim/fade_slide_out_left.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/anim/fade_slide_out_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/anim/fade_slide_out_right.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/anim/fadeout_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/anim/fadeout_fragment.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/anim/no_animation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/anim/no_animation.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/anim/slide_in_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/anim/slide_in_bottom.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/anim/slide_out_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/anim/slide_out_bottom.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/anim/slide_to_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/anim/slide_to_left.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/anim/slide_to_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/anim/slide_to_right.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/color/on_surface_alpha_12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/color/on_surface_alpha_12.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/color/primary_disabled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/color/primary_disabled.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/color/secondary_alpha_20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/color/secondary_alpha_20.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/background_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/background_circle.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/fab_plus_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/fab_plus_icon.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/fastscroll_line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/fastscroll_line.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/fastscroll_thumb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/fastscroll_thumb.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_arrow_collapse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_arrow_collapse.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_attachment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_attachment.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_check.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_empty_password.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_empty_password.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_empty_sharing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_empty_sharing.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_fab_menu_bank.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_fab_menu_bank.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_fab_menu_email.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_fab_menu_email.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_fab_menu_id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_fab_menu_id.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_fab_menu_name.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_fab_menu_name.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_fab_menu_phone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_fab_menu_phone.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_fab_menu_ssn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_fab_menu_ssn.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_fab_menu_tax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_fab_menu_tax.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_info_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_info_24.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_locked.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_locked.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_modal_done.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_modal_done.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_search.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_share.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_shared.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_shared.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_splash_screen.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_widget_infobox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ic_widget_infobox.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ico_list_address.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ico_list_address.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ico_list_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ico_list_card.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ico_list_company.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ico_list_company.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ico_list_id_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ico_list_id_card.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ico_list_mail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ico_list_mail.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ico_list_name.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ico_list_name.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ico_list_passport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ico_list_passport.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ico_list_paypal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ico_list_paypal.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ico_list_phone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ico_list_phone.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/ico_list_website.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/ico_list_website.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/splash_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/splash_logo.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/tab_default_dot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/tab_default_dot.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/tab_selected_dot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/tab_selected_dot.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/tab_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/tab_selector.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/drawable/toast_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/drawable/toast_background.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/layout-w600dp/toast_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/layout-w600dp/toast_layout.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/layout/expandablecardview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/layout/expandablecardview.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/layout/getstarted_step.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/layout/getstarted_step.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/layout/include_intro_link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/layout/include_intro_link.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/layout/item_dataidentifier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/layout/item_dataidentifier.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/layout/item_header_big.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/layout/item_header_big.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/layout/item_separator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/layout/item_separator.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/layout/toast_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/layout/toast_layout.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/layout/widget_infobox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/layout/widget_infobox.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/layout/widget_step_infobox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/layout/widget_step_infobox.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/raw/lottie_checklist_m2d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/raw/lottie_checklist_m2d.json -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/raw/lottie_loading_fail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/raw/lottie_loading_fail.json -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/raw/lottie_sync_progress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/raw/lottie_sync_progress.json -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/raw/lottie_welcome_dwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/raw/lottie_welcome_dwm.json -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/raw/lottie_welcome_vault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/raw/lottie_welcome_vault.json -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/values/dimens_action_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/values/dimens_action_bar.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/values/dimens_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/values/dimens_item.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/base-ui/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/base-ui/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/lock/src/main/java/com/dashlane/lock/LockEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/lock/src/main/java/com/dashlane/lock/LockEvent.kt -------------------------------------------------------------------------------- /dashlane-project/modules/common/lock/src/main/java/com/dashlane/lock/LockHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/lock/src/main/java/com/dashlane/lock/LockHelper.kt -------------------------------------------------------------------------------- /dashlane-project/modules/common/lock/src/main/java/com/dashlane/lock/LockPass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/lock/src/main/java/com/dashlane/lock/LockPass.kt -------------------------------------------------------------------------------- /dashlane-project/modules/common/lock/src/main/java/com/dashlane/lock/LockSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/lock/src/main/java/com/dashlane/lock/LockSetting.kt -------------------------------------------------------------------------------- /dashlane-project/modules/common/lock/src/main/java/com/dashlane/lock/LockWaiter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/lock/src/main/java/com/dashlane/lock/LockWaiter.kt -------------------------------------------------------------------------------- /dashlane-project/modules/common/lock/src/main/java/com/dashlane/lock/LockWatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/lock/src/main/java/com/dashlane/lock/LockWatcher.kt -------------------------------------------------------------------------------- /dashlane-project/modules/common/mvvm/src/main/java/com/dashlane/mvvm/State.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/mvvm/src/main/java/com/dashlane/mvvm/State.kt -------------------------------------------------------------------------------- /dashlane-project/modules/common/navigation/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashlane-project/modules/common/network/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/network/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/network/src/main/res/values/network.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/network/src/main/res/values/network.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/sync/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashlane-project/modules/common/sync/src/main/java/com/dashlane/sync/DataSync.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/sync/src/main/java/com/dashlane/sync/DataSync.kt -------------------------------------------------------------------------------- /dashlane-project/modules/common/test-fixtures/vault/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashlane-project/modules/common/ui/theme-legacy/src/main/res/font/roboto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/ui/theme-legacy/src/main/res/font/roboto.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/ui/theme-legacy/src/main/res/font/roboto_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/ui/theme-legacy/src/main/res/font/roboto_bold.ttf -------------------------------------------------------------------------------- /dashlane-project/modules/common/ui/theme-legacy/src/main/res/font/roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/ui/theme-legacy/src/main/res/font/roboto_medium.ttf -------------------------------------------------------------------------------- /dashlane-project/modules/common/ui/theme-legacy/src/main/res/values-night/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/ui/theme-legacy/src/main/res/values-night/bools.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/ui/theme-legacy/src/main/res/values/aliases.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/ui/theme-legacy/src/main/res/values/aliases.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/ui/theme-legacy/src/main/res/values/attrs_theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/ui/theme-legacy/src/main/res/values/attrs_theme.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/ui/theme-legacy/src/main/res/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/ui/theme-legacy/src/main/res/values/bools.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/ui/theme-legacy/src/main/res/values/colors_util.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/ui/theme-legacy/src/main/res/values/colors_util.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/ui/theme-legacy/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/ui/theme-legacy/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/ui/theme-legacy/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/ui/theme-legacy/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/ui/theme-legacy/src/main/res/values/widgets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/ui/theme-legacy/src/main/res/values/widgets.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/user/src/main/java/com/dashlane/user/Username.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/user/src/main/java/com/dashlane/user/Username.kt -------------------------------------------------------------------------------- /dashlane-project/modules/common/utils-android/src/main/assets/whitelist-apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/utils-android/src/main/assets/whitelist-apps.json -------------------------------------------------------------------------------- /dashlane-project/modules/common/utils-android/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/utils-android/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/utils/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashlane-project/modules/common/utils/src/main/java/com/dashlane/Legal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/utils/src/main/java/com/dashlane/Legal.kt -------------------------------------------------------------------------------- /dashlane-project/modules/common/utils/src/main/java/com/dashlane/util/AppSync.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/utils/src/main/java/com/dashlane/util/AppSync.kt -------------------------------------------------------------------------------- /dashlane-project/modules/common/utils/src/main/java/com/dashlane/util/HashUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/utils/src/main/java/com/dashlane/util/HashUtils.kt -------------------------------------------------------------------------------- /dashlane-project/modules/common/utils/src/main/java/com/dashlane/util/IntUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/utils/src/main/java/com/dashlane/util/IntUtils.kt -------------------------------------------------------------------------------- /dashlane-project/modules/common/utils/src/main/java/com/dashlane/util/LocaleUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/utils/src/main/java/com/dashlane/util/LocaleUtil.kt -------------------------------------------------------------------------------- /dashlane-project/modules/common/utils/src/main/java/com/dashlane/util/MD5Hash.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/utils/src/main/java/com/dashlane/util/MD5Hash.kt -------------------------------------------------------------------------------- /dashlane-project/modules/common/utils/src/main/java/com/dashlane/util/URIBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/utils/src/main/java/com/dashlane/util/URIBuilder.kt -------------------------------------------------------------------------------- /dashlane-project/modules/common/utils/src/main/java/com/dashlane/util/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/utils/src/main/java/com/dashlane/util/Utils.kt -------------------------------------------------------------------------------- /dashlane-project/modules/common/utils/src/main/java/com/dashlane/util/time/Month.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/utils/src/main/java/com/dashlane/util/time/Month.kt -------------------------------------------------------------------------------- /dashlane-project/modules/common/utils/src/main/java/com/dashlane/util/time/Year.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/utils/src/main/java/com/dashlane/util/time/Year.kt -------------------------------------------------------------------------------- /dashlane-project/modules/common/vault-item/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/vault-item/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/vault-text-factory/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/vault-text-factory/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/vaultmodel/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashlane-project/modules/common/vaultmodel/src/main/res/drawable/device_android.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/vaultmodel/src/main/res/drawable/device_android.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/vaultmodel/src/main/res/drawable/device_apple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/vaultmodel/src/main/res/drawable/device_apple.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/vaultmodel/src/main/res/drawable/device_browser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/vaultmodel/src/main/res/drawable/device_browser.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/vaultmodel/src/main/res/drawable/device_windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/vaultmodel/src/main/res/drawable/device_windows.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/vaultmodel/src/main/res/values/string_vault_fab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/vaultmodel/src/main/res/values/string_vault_fab.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/vaultmodel/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/vaultmodel/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /dashlane-project/modules/common/vaultmodel/src/main/res/values/strings_menu_v3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/common/vaultmodel/src/main/res/values/strings_menu_v3.xml -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/CHANGELOG.md -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/CONTRIBUTING.md -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/DOCUMENTATION.md -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/README.md -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/argon2-compiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/argon2-compiler/README.md -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/cryptography-jni/src/main/cpp/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/cryptography-jni/src/main/cpp/Utils.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/argon2/include/argon2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/argon2/include/argon2.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/argon2/include/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/argon2/include/core.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/argon2/include/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/argon2/include/encoding.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/argon2/include/genkat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/argon2/include/genkat.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/argon2/include/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/argon2/include/thread.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/argon2/lib/x86/libargon2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/argon2/lib/x86/libargon2.a -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/libsodium/include/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/libsodium/include/sodium.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/aes.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/asn1.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/asn1_mac.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/asn1err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/asn1err.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/asn1t.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/async.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/asyncerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/asyncerr.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/bio.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/bioerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/bioerr.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/blowfish.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/bn.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/bnerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/bnerr.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/buffer.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/buffererr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/buffererr.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/camellia.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/cast.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/cmac.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/cms.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/cmserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/cmserr.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/comp.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/comperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/comperr.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/conf.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/conf_api.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/conferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/conferr.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/crypto.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/cryptoerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/cryptoerr.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/ct.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/cterr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/cterr.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/des.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/dh.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/dherr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/dherr.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/dsa.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/dsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/dsaerr.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/dtls1.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/e_os2.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/ebcdic.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/ec.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/ecdh.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/ecdsa.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/ecerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/ecerr.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/engine.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/engineerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/engineerr.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/err.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/evp.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/evperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/evperr.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/hmac.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/idea.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/kdf.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/kdferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/kdferr.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/lhash.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/md2.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/md4.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/md5.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/mdc2.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/modes.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/obj_mac.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/objects.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/ocsp.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/ocsperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/ocsperr.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/opensslv.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/ossl_typ.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/pem.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/pem2.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/pemerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/pemerr.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/pkcs12.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/pkcs12err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/pkcs12err.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/pkcs7.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/pkcs7err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/pkcs7err.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/rand.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/rand_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/rand_drbg.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/randerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/randerr.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/rc2.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/rc4.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/rc5.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/ripemd.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/rsa.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/rsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/rsaerr.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/safestack.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/seed.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/sha.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/srp.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/srtp.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/ssl.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/ssl2.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/ssl3.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/sslerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/sslerr.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/stack.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/store.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/storeerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/storeerr.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/symhacks.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/tls1.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/ts.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/tserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/tserr.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/txt_db.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/ui.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/uierr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/uierr.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/whrlpool.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/x509.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/include/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/include/x509v3.h -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/distribution/openssl/lib/x86/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/distribution/openssl/lib/x86/libssl.a -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/openssl-compiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/openssl-compiler/README.md -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/openssl-compiler/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/openssl-compiler/launcher.sh -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/openssl-compiler/ndk-verification.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/openssl-compiler/ndk-verification.sh -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/openssl-compiler/openssl-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/openssl-compiler/openssl-build.sh -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/openssl-compiler/openssl-download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/openssl-compiler/openssl-download.sh -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/openssl-compiler/openssl-setenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/openssl-compiler/openssl-setenv.sh -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/openssl-compiler/openssl.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/openssl-compiler/openssl.config -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/openssl-compiler/toolchains_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/openssl-compiler/toolchains_path.py -------------------------------------------------------------------------------- /dashlane-project/modules/core/cryptography/sodium-jni/src/main/cpp/sodium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/cryptography/sodium-jni/src/main/cpp/sodium.cpp -------------------------------------------------------------------------------- /dashlane-project/modules/core/hermes/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/hermes/CHANGELOG.md -------------------------------------------------------------------------------- /dashlane-project/modules/core/hermes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/hermes/README.md -------------------------------------------------------------------------------- /dashlane-project/modules/core/hermes/generator/clean-generated-code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/hermes/generator/clean-generated-code.sh -------------------------------------------------------------------------------- /dashlane-project/modules/core/hermes/generator/download-tracking-schema.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/hermes/generator/download-tracking-schema.sh -------------------------------------------------------------------------------- /dashlane-project/modules/core/hermes/generator/specs-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/hermes/generator/specs-version.sh -------------------------------------------------------------------------------- /dashlane-project/modules/core/hermes/generator/src/main/resources/Enum.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/hermes/generator/src/main/resources/Enum.kt.ftl -------------------------------------------------------------------------------- /dashlane-project/modules/core/hermes/generator/src/main/resources/Event.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/hermes/generator/src/main/resources/Event.kt.ftl -------------------------------------------------------------------------------- /dashlane-project/modules/core/hermes/generator/src/main/resources/ItemId.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/hermes/generator/src/main/resources/ItemId.kt.ftl -------------------------------------------------------------------------------- /dashlane-project/modules/core/hermes/generator/src/main/resources/Object.kt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/hermes/generator/src/main/resources/Object.kt.ftl -------------------------------------------------------------------------------- /dashlane-project/modules/core/hermes/tracking-schemas/definitions/browse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/hermes/tracking-schemas/definitions/browse.json -------------------------------------------------------------------------------- /dashlane-project/modules/core/hermes/tracking-schemas/definitions/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/hermes/tracking-schemas/definitions/event.json -------------------------------------------------------------------------------- /dashlane-project/modules/core/hermes/tracking-schemas/definitions/flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/hermes/tracking-schemas/definitions/flow.json -------------------------------------------------------------------------------- /dashlane-project/modules/core/hermes/tracking-schemas/definitions/session.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/hermes/tracking-schemas/definitions/session.json -------------------------------------------------------------------------------- /dashlane-project/modules/core/hermes/tracking-schemas/events/user/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/hermes/tracking-schemas/events/user/event.json -------------------------------------------------------------------------------- /dashlane-project/modules/core/hermes/tracking-schemas/meta/definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/hermes/tracking-schemas/meta/definition.json -------------------------------------------------------------------------------- /dashlane-project/modules/core/hermes/tracking-schemas/meta/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/hermes/tracking-schemas/meta/event.json -------------------------------------------------------------------------------- /dashlane-project/modules/core/hermes/tracking-schemas/meta/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/hermes/tracking-schemas/meta/properties.json -------------------------------------------------------------------------------- /dashlane-project/modules/core/hermes/tracking-schemas/version.txt: -------------------------------------------------------------------------------- 1 | 1.31.6 2 | -------------------------------------------------------------------------------- /dashlane-project/modules/core/vault-xml/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/vault-xml/CONTRIBUTING.md -------------------------------------------------------------------------------- /dashlane-project/modules/core/vault-xml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/core/vault-xml/README.md -------------------------------------------------------------------------------- /dashlane-project/modules/core/vault-xml/vault-xml-domain-data-source/src/main/kotlin/com/dashlane/xml/model/VaultModel.kt: -------------------------------------------------------------------------------- 1 | package com.dashlane.xml.model 2 | 3 | data class VaultModel(val name: String) -------------------------------------------------------------------------------- /dashlane-project/modules/features/activate-totp/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/activate-totp/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/activate-totp/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/activate-totp/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/authenticator/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/authenticator/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/authenticator/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/authenticator/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/credentialmanager/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /dashlane-project/modules/features/credentialmanager/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/credentialmanager/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/csv-export/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/csv-export/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/csv-import/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/csv-import/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/csv-import/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/csv-import/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/csv-import/src/main/res/values/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/csv-import/src/main/res/values/plurals.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/csv-import/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/csv-import/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/csv-import/src/main/res/values/widgets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/csv-import/src/main/res/values/widgets.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/darkweb-monitoring/domain/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashlane-project/modules/features/follow-up-notification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/follow-up-notification/README.md -------------------------------------------------------------------------------- /dashlane-project/modules/features/import-logins/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashlane-project/modules/features/inappautofill/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/inappautofill/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/inappautofill/src/main/assets/tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/inappautofill/src/main/assets/tokenizer.json -------------------------------------------------------------------------------- /dashlane-project/modules/features/inappautofill/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/inappautofill/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/login/ui/src/main/res/values/strings_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/login/ui/src/main/res/values/strings_login.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/m2w/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/m2w/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/m2w/src/main/res/drawable/logo_m2w.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/m2w/src/main/res/drawable/logo_m2w.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/m2w/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/m2w/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/premium/ui/sampledata/current_plan_benefits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/premium/ui/sampledata/current_plan_benefits -------------------------------------------------------------------------------- /dashlane-project/modules/features/premium/ui/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/premium/ui/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/premium/ui/src/main/res/values/widgets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/premium/ui/src/main/res/values/widgets.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/search/src/main/res/values/strings_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/search/src/main/res/values/strings_search.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/secure-archive/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/secure-archive/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/sharing-center/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /dashlane-project/modules/features/sharing-center/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/sharing-center/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/sso/ui/src/main/res/values/strings_sso.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/sso/ui/src/main/res/values/strings_sso.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/vpn-third-party/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/vpn-third-party/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/welcome/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/welcome/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/welcome/src/main/res/layout/item_welcome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/welcome/src/main/res/layout/item_welcome.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/welcome/src/main/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/welcome/src/main/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/welcome/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/welcome/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/welcome/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/welcome/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /dashlane-project/modules/features/welcome/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/features/welcome/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/accountstatus/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/app-events/src/main/java/com/dashlane/event/AppEvent.kt: -------------------------------------------------------------------------------- 1 | package com.dashlane.event 2 | 3 | interface AppEvent -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/authentication/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/libraries/authentication/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/autofill-form-detector/Autofill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/libraries/autofill-form-detector/Autofill.png -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/autofill-form-detector/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/libraries/autofill-form-detector/CHANGELOG.md -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/autofill-form-detector/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/libraries/autofill-form-detector/CONTRIBUTING.md -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/autofill-form-detector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/libraries/autofill-form-detector/README.md -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/autofill-form-detector/src/main/res/xml/autofill_service_config.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/barcodescanner/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/barcodescanner/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/libraries/barcodescanner/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/braze/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/breach/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/device/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/frozenaccount/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/inappbilling/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/navigable-bottom-sheet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/libraries/navigable-bottom-sheet/README.md -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/navigable-bottom-sheet/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/nfccardreader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/libraries/nfccardreader/README.md -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/nfccardreader/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/nitro/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/password/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/libraries/password/CHANGELOG.md -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/password/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/libraries/password/README.md -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/password/generator-ui/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/passwordlimiter/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/search-engine/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/securefile/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/libraries/securefile/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/sync-helper/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/libraries/sync-helper/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/teamspace/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/udf/src/main/java/com/dashlane/udf/Event.kt: -------------------------------------------------------------------------------- 1 | package com.dashlane.udf 2 | 3 | interface Event -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/udf/src/main/java/com/dashlane/udf/UseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/libraries/udf/src/main/java/com/dashlane/udf/UseCase.kt -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/vault-clipboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/libraries/vault-clipboard/README.md -------------------------------------------------------------------------------- /dashlane-project/modules/libraries/vault-storage/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/libraries/vault-storage/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /dashlane-project/modules/storage/database/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/storage/database/CHANGELOG.md -------------------------------------------------------------------------------- /dashlane-project/modules/storage/database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/storage/database/README.md -------------------------------------------------------------------------------- /dashlane-project/modules/storage/database/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/storage/database/TESTING.md -------------------------------------------------------------------------------- /dashlane-project/modules/storage/database/images/Android-Database-Project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dashlane/android-apps/HEAD/dashlane-project/modules/storage/database/images/Android-Database-Project.png --------------------------------------------------------------------------------