├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── android-pr.yml │ ├── android.yml │ └── caches │ └── action.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── androidApp ├── build.gradle.kts ├── google-services.json ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── ic_white_anypass-playstore.png │ ├── java │ └── io │ │ └── spherelabs │ │ └── anypass │ │ └── android │ │ ├── AnyPassApplication.kt │ │ ├── InAppUpdate.kt │ │ ├── MainActivity.kt │ │ └── MyApplicationTheme.kt │ └── res │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ ├── ic_launcher_round.xml │ ├── ic_white_anypass.xml │ └── ic_white_anypass_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ ├── ic_launcher_round.png │ ├── ic_white_anypass.png │ ├── ic_white_anypass_foreground.png │ └── ic_white_anypass_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ ├── ic_launcher_round.png │ ├── ic_white_anypass.png │ ├── ic_white_anypass_foreground.png │ └── ic_white_anypass_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ ├── ic_launcher_round.png │ ├── ic_white_anypass.png │ ├── ic_white_anypass_foreground.png │ └── ic_white_anypass_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ ├── ic_launcher_round.png │ ├── ic_white_anypass.png │ ├── ic_white_anypass_foreground.png │ └── ic_white_anypass_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ ├── ic_launcher_round.png │ ├── ic_white_anypass.png │ ├── ic_white_anypass_foreground.png │ └── ic_white_anypass_round.png │ └── values │ ├── ic_launcher_background.xml │ ├── ic_white_anypass_background.xml │ ├── strings.xml │ └── styles.xml ├── core ├── admob │ ├── admob.podspec │ ├── build.gradle.kts │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── admob │ │ │ ├── GADBannerView.android.kt │ │ │ └── di │ │ │ └── Koin.admob.android.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── admob │ │ │ ├── GADBannerView.kt │ │ │ └── di │ │ │ ├── Koin.admob.kt │ │ │ └── LoadGADError.kt │ │ └── iosMain │ │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── admob │ │ ├── GADBannerView.ios.kt │ │ └── di │ │ └── Koin.admob.ios.kt ├── analytics │ └── build.gradle.kts ├── common │ ├── build.gradle.kts │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── common │ │ │ └── Uuid.android.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── common │ │ │ ├── LocalDateTimeExtension.kt │ │ │ ├── StringExt.kt │ │ │ ├── Uuid.kt │ │ │ └── exception │ │ │ ├── AuthException.kt │ │ │ ├── IdNotAvailableException.kt │ │ │ └── NotAvailableException.kt │ │ ├── commonTest │ │ └── kotlin │ │ │ ├── LocalDateTimeExtensionTest.kt │ │ │ └── UuidTest.kt │ │ └── iosMain │ │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── common │ │ └── Uuid.ios.kt ├── designsystem │ ├── build.gradle.kts │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── designsystem │ │ │ ├── context │ │ │ └── KContext.android.kt │ │ │ ├── dialog │ │ │ └── LKDialog.android.kt │ │ │ ├── image │ │ │ └── LKImage.android.kt │ │ │ ├── spinner │ │ │ └── LKSpinner.android.kt │ │ │ ├── state │ │ │ └── CollectAsStateWithLifecycle.android.kt │ │ │ ├── url │ │ │ └── UrlUtils.android.kt │ │ │ └── utils │ │ │ └── LocalScreenConfiguration.android.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── designsystem │ │ │ ├── animation │ │ │ ├── Shake.kt │ │ │ ├── ShakeConfig.kt │ │ │ └── ShakeController.kt │ │ │ ├── button │ │ │ └── LKButton.kt │ │ │ ├── collapsingtoolbar │ │ │ ├── CollapsingToolbar.kt │ │ │ ├── CollapsingToolbarScaffold.kt │ │ │ └── ScroolStrategy.kt │ │ │ ├── compose │ │ │ └── StableCoroutineScope.kt │ │ │ ├── context │ │ │ └── KContext.kt │ │ │ ├── dialog │ │ │ ├── BasicLKDialog.kt │ │ │ ├── LKDialog.common.kt │ │ │ ├── LKDialogButton.kt │ │ │ ├── LKDialogScope.kt │ │ │ └── LKDialogScopeExt.kt │ │ │ ├── dimension │ │ │ └── Dimension.kt │ │ │ ├── fonts │ │ │ └── Strings.kt │ │ │ ├── grid │ │ │ └── LKGridLayout.kt │ │ │ ├── hooks │ │ │ ├── Hooks.kt │ │ │ └── Koin.kt │ │ │ ├── image │ │ │ └── LKImage.kt │ │ │ ├── meteor │ │ │ └── MeteorExtension.kt │ │ │ ├── meterprogress │ │ │ ├── LKDashProgress.kt │ │ │ ├── LKMarker.kt │ │ │ ├── LKMeterProgress.kt │ │ │ ├── LKMeterProgressTokens.kt │ │ │ └── LKProgress.kt │ │ │ ├── passwordcard │ │ │ ├── LKPasswordCard.kt │ │ │ ├── LKPasswordCardColor.kt │ │ │ ├── LKPasswordCardDefaults.kt │ │ │ ├── LKPasswordCardStyle.kt │ │ │ └── LKPasswordCardTokens.kt │ │ │ ├── picker │ │ │ ├── LKGridView.kt │ │ │ ├── LKIconView.kt │ │ │ ├── LKSocialMediaGridLayout.kt │ │ │ └── LKSocialMediaPicker.kt │ │ │ ├── pininput │ │ │ ├── LKCell.kt │ │ │ ├── LKPinDefaults.kt │ │ │ ├── LKPinInput.kt │ │ │ ├── LKPinStyle.kt │ │ │ └── LKPinTokens.kt │ │ │ ├── slider │ │ │ ├── CorrectValueSideEffect.kt │ │ │ ├── LKBasicSlider.kt │ │ │ ├── LKSlider.kt │ │ │ ├── LKSliderColors.kt │ │ │ ├── LKSliderDefaults.kt │ │ │ ├── LKSliderLayout.kt │ │ │ ├── LKSliderTokens.kt │ │ │ └── LKTrack.kt │ │ │ ├── spinner │ │ │ ├── LKDropdownDefaults.kt │ │ │ ├── LKDropdownMenuPositionProvider.kt │ │ │ ├── LKDropdownStyle.kt │ │ │ ├── LKDropdownTokens.kt │ │ │ └── LKSpinner.kt │ │ │ ├── state │ │ │ └── CollectAsStateWithLifecycle.kt │ │ │ ├── swiper │ │ │ ├── LKCardStack.kt │ │ │ ├── LKCardStackIntervalContent.kt │ │ │ ├── LKCardStackItemProvider.kt │ │ │ ├── LKCardStackItemScope.kt │ │ │ ├── LKCardStackMeasurePolicy.kt │ │ │ ├── LKCardStackScope.kt │ │ │ ├── LKCardStackState.kt │ │ │ ├── LKSwipeDirection.kt │ │ │ ├── LKSwiperDraggableState.kt │ │ │ ├── LKSwiperState.kt │ │ │ └── NearestRangeKeyIndexMap.kt │ │ │ ├── switch │ │ │ └── LKSwitch.kt │ │ │ ├── text │ │ │ └── LKText.kt │ │ │ ├── textfield │ │ │ └── LKTextField.kt │ │ │ ├── url │ │ │ └── UrlUtils.common.kt │ │ │ └── utils │ │ │ └── LocalScreenConfiguration.kt │ │ └── iosMain │ │ └── kotlin │ │ └── io.spherelabs.designsystem │ │ ├── context │ │ └── KContext.ios.kt │ │ ├── dialog │ │ └── LKDialog.ios.kt │ │ ├── image │ │ └── LKImage.ios.kt │ │ ├── spinner │ │ └── LKSpinner.ios.kt │ │ ├── state │ │ └── CollectAsStateWithLifecycle.ios.kt │ │ ├── url │ │ └── UrlUtils.ios.kt │ │ └── utils │ │ └── LocalScreenConfiguration.ios.kt ├── mlkit │ ├── build.gradle.kts │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── mlkit │ │ │ └── Platform.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── mlkit │ │ │ ├── Greeting.kt │ │ │ └── Platform.kt │ │ └── iosMain │ │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── mlkit │ │ └── Platform.kt ├── system │ ├── foundation │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── foundation │ │ │ └── color │ │ │ └── Color.kt │ └── ui │ │ ├── build.gradle.kts │ │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── system │ │ │ └── ui │ │ │ └── shimmer │ │ │ └── ShimmerBounds.android.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── system │ │ │ └── ui │ │ │ ├── randompassword │ │ │ └── ColorizedPassword.kt │ │ │ └── shimmer │ │ │ ├── Shimmer.kt │ │ │ ├── ShimmerArea.kt │ │ │ ├── ShimmerBounds.kt │ │ │ ├── ShimmerEffect.kt │ │ │ ├── ShimmerModifier.kt │ │ │ ├── ShimmerTheme.kt │ │ │ └── ShimmerWindowBounds.kt │ │ └── iosMain │ │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── system │ │ └── ui │ │ └── shimmer │ │ └── ShimmerBounds.ios.kt └── validation │ ├── build.gradle.kts │ └── src │ └── commonMain │ └── kotlin │ └── io │ └── spherelabs │ └── validation │ ├── EmailValidation.kt │ ├── KeyPasswordValidation.kt │ ├── NameValidation.kt │ ├── PasswordValidation.kt │ ├── WebsiteValidation.kt │ └── di │ └── Koin.validation.kt ├── data ├── authManager │ ├── authManager.podspec │ ├── build.gradle.kts │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── firebase │ │ │ ├── FirebaseAuthManager.android.kt │ │ │ └── di │ │ │ └── Koin.firebase.android.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── firebase │ │ │ ├── FirebaseAuthManager.kt │ │ │ └── di │ │ │ └── Koin.firebase.kt │ │ └── iosMain │ │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── firebase │ │ ├── FirebaseAuthManager.ios.kt │ │ └── di │ │ └── Koin.firebase.ios.kt ├── local │ ├── build.gradle.kts │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── data │ │ │ └── local │ │ │ ├── db │ │ │ └── DriverFactory.android.kt │ │ │ └── di │ │ │ └── Koin.local.android.kt │ │ ├── androidUnitTest │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── data │ │ │ └── local │ │ │ └── TestDriverFactory.android.kt │ │ ├── commonMain │ │ ├── kotlin │ │ │ └── io │ │ │ │ └── spherelabs │ │ │ │ └── data │ │ │ │ └── local │ │ │ │ ├── db │ │ │ │ ├── Category.kt │ │ │ │ ├── CategoryAdapter.kt │ │ │ │ ├── CategoryDao.kt │ │ │ │ ├── DriverFactory.kt │ │ │ │ ├── PasswordDao.kt │ │ │ │ ├── PasswordHistoryDao.kt │ │ │ │ ├── UserDao.kt │ │ │ │ ├── adapter │ │ │ │ │ ├── OtpDigitColumnAdapter.kt │ │ │ │ │ ├── OtpDurationColumnAdapter.kt │ │ │ │ │ └── OtpTypeColumnAdapter.kt │ │ │ │ └── otp │ │ │ │ │ ├── AlgorithmTypeEntity.kt │ │ │ │ │ ├── OtpDigitEntity.kt │ │ │ │ │ ├── OtpDurationEntity.kt │ │ │ │ │ └── dao │ │ │ │ │ ├── CounterDao.kt │ │ │ │ │ └── OtpDao.kt │ │ │ │ ├── di │ │ │ │ └── Koin.local.kt │ │ │ │ ├── extension │ │ │ │ ├── PasswordExtension.kt │ │ │ │ └── QueriesExtension.kt │ │ │ │ ├── mapper │ │ │ │ ├── CategoryMapper.kt │ │ │ │ ├── CounterMapper.kt │ │ │ │ ├── OtpMapper.kt │ │ │ │ ├── PasswordHistoryMapper.kt │ │ │ │ ├── PasswordMapper.kt │ │ │ │ └── UserMapper.kt │ │ │ │ └── repository │ │ │ │ ├── DefaultAccountRepository.kt │ │ │ │ ├── DefaultAddNewPasswordRepository.kt │ │ │ │ ├── DefaultAuthenticatorRepository.kt │ │ │ │ ├── DefaultGeneratePasswordRepository.kt │ │ │ │ ├── DefaultHomeRepository.kt │ │ │ │ ├── DefaultNewTokenRepository.kt │ │ │ │ ├── DefaultPasswordHealthRepository.kt │ │ │ │ └── DefaultPasswordHistoryRepository.kt │ │ ├── resources │ │ │ └── MR │ │ │ │ └── files │ │ │ │ └── locker.db │ │ └── sqldelight │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── local │ │ │ └── db │ │ │ ├── Category.sq │ │ │ ├── Counter.sq │ │ │ ├── Otp.sq │ │ │ ├── Password.sq │ │ │ ├── PasswordHistory.sq │ │ │ ├── Pragma.sq │ │ │ └── User.sq │ │ ├── commonTest │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── data │ │ │ └── local │ │ │ ├── AccountRepositoryTest.kt │ │ │ ├── PasswordDaoTest.kt │ │ │ ├── TestDriverFactory.kt │ │ │ ├── UserDaoTest.kt │ │ │ ├── dao │ │ │ ├── CounterDaoTest.kt │ │ │ ├── OtpDaoTest.kt │ │ │ └── PasswordHistoryDaoTest.kt │ │ │ ├── enum │ │ │ ├── OtpDigitTest.kt │ │ │ ├── OtpDurationTest.kt │ │ │ └── OtpTypeTest.kt │ │ │ ├── extension │ │ │ ├── CalculationPasswordHealthTest.kt │ │ │ ├── ReusedPasswordTest.kt │ │ │ └── StrongAndWeakPasswordTest.kt │ │ │ ├── faker │ │ │ └── Faker.kt │ │ │ ├── repository │ │ │ ├── AuthenticatorRepositoryTest.kt │ │ │ └── NewTokenRepositoryTest.kt │ │ │ └── usecase │ │ │ └── GetRealTimeOneTimePasswordTest.kt │ │ ├── iosMain │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── data │ │ │ └── local │ │ │ ├── db │ │ │ └── DriverFactory.ios.kt │ │ │ └── di │ │ │ └── Koin.local.ios.kt │ │ └── iosTest │ │ └── kotlin │ │ └── io.spherelabs.data.local │ │ └── TestDriverFactory.ios.kt └── prefs │ ├── build.gradle.kts │ └── src │ ├── androidMain │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── data │ │ └── settings │ │ ├── di │ │ └── Koin.android.kt │ │ └── keypassword │ │ └── EncryptedSettings.kt │ ├── commonMain │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── data │ │ └── settings │ │ ├── di │ │ └── Koin.kt │ │ ├── fingerprint │ │ └── FingerPrintSetting.kt │ │ ├── keypassword │ │ └── MasterPasswordSetting.kt │ │ ├── onboarding │ │ └── OnboardingSetting.kt │ │ ├── repository │ │ └── ChangePasswordRepository.kt │ │ └── screenshot │ │ └── RestrictScreenshotSettings.kt │ └── iosMain │ └── kotlin │ └── io │ └── spherelabs │ └── data │ └── settings │ ├── di │ └── Koin.ios.kt │ └── keypassword │ └── EncryptedSettings.kt ├── features ├── account │ ├── account-api │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── accountapi │ │ │ ├── domain │ │ │ ├── repository │ │ │ │ └── AccountRepository.kt │ │ │ └── usecase │ │ │ │ ├── GetFingerPrintUseCase.kt │ │ │ │ ├── GetRestrictScreenshotUseCase.kt │ │ │ │ ├── GetSizeOfStrongPasswordUseCase.kt │ │ │ │ ├── GetSizeOfWeakPasswordUseCase.kt │ │ │ │ ├── GetTotalPasswordUseCase.kt │ │ │ │ ├── GetUserUseCase.kt │ │ │ │ ├── LogoutUseCase.kt │ │ │ │ ├── OpenUrlUseCase.kt │ │ │ │ ├── SetFingerPrintUseCase.kt │ │ │ │ └── SetRestrictScreenshotUseCase.kt │ │ │ └── model │ │ │ └── AccountUser.kt │ ├── account-di │ │ ├── build.gradle.kts │ │ └── src │ │ │ ├── androidMain │ │ │ └── kotlin │ │ │ │ └── io │ │ │ │ └── spherelabs │ │ │ │ └── accountdi │ │ │ │ └── Koin.account.domain.android.kt │ │ │ ├── commonMain │ │ │ └── kotlin │ │ │ │ └── io │ │ │ │ └── spherelabs │ │ │ │ └── accountdi │ │ │ │ ├── Koin.account.domain.kt │ │ │ │ ├── Koin.account.presentation.kt │ │ │ │ └── Voyager.account.ui.kt │ │ │ └── iosMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── accountdi │ │ │ └── Koin.account.domain.ios.kt │ └── account-impl │ │ ├── build.gradle.kts │ │ └── src │ │ ├── androidUnitTest │ │ └── kotlin │ │ │ └── AccountUseCaseDomainArchitectureTest.kt │ │ └── commonMain │ │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── accountimpl │ │ ├── domain │ │ ├── AccountFacadeManager.kt │ │ ├── DefaultGetFingerPrintUseCase.kt │ │ ├── DefaultGetRestrictScreenshotUseCase.kt │ │ ├── DefaultGetSizeOfStrongPasswordUseCase.kt │ │ ├── DefaultGetSizeOfWeakPasswordUseCase.kt │ │ ├── DefaultGetTotalPasswordUseCase.kt │ │ ├── DefaultGetUserUseCase.kt │ │ ├── DefaultLogoutUseCase.kt │ │ ├── DefaultOpenUrlUseCase.kt │ │ ├── DefaultSetFingerPrintUseCase.kt │ │ ├── DefaultSetRestrictScreenshotUseCase.kt │ │ └── model │ │ │ └── AllPasswords.kt │ │ ├── presentation │ │ ├── AccountEffect.kt │ │ ├── AccountMiddleware.kt │ │ ├── AccountReducer.kt │ │ ├── AccountState.kt │ │ ├── AccountViewModel.kt │ │ └── AccountWish.kt │ │ └── ui │ │ ├── AccountContent.kt │ │ ├── AccountScreen.kt │ │ └── component │ │ ├── ChangePassword.kt │ │ ├── FingerPrint.kt │ │ ├── LogOut.kt │ │ ├── RestrictScreenshot.kt │ │ └── SendFeedback.kt ├── addnewpassword │ ├── addnewpassword-api │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── addnewpasswordapi │ │ │ ├── domain │ │ │ ├── repository │ │ │ │ └── AddNewPasswordRepository.kt │ │ │ └── usecase │ │ │ │ ├── AddNewPasswordUseCase.kt │ │ │ │ └── GetCategoriesUseCase.kt │ │ │ └── model │ │ │ ├── AddNewCategory.kt │ │ │ ├── AddNewPassword.kt │ │ │ └── Category.kt │ ├── addnewpassword-di │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── addnewpassworddi │ │ │ ├── Koin.addnewpassword.domain.kt │ │ │ ├── Koin.addnewpassword.presentation.kt │ │ │ └── Voyager.addnewpassword.ui.kt │ └── addnewpassword-impl │ │ ├── build.gradle.kts │ │ └── src │ │ ├── androidUnitTest │ │ └── kotlin │ │ │ └── AddNewPasswordUseCaseDomainArchitectureTest.kt │ │ └── commonMain │ │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── addnewpasswordimpl │ │ ├── domain │ │ ├── DefaultAddNewPasswordUseCaseUseCase.kt │ │ └── DefaultGetCategoriesUseCaseUseCase.kt │ │ ├── presentation │ │ ├── AddNewCategoryUi.kt │ │ ├── AddNewPasswordEffect.kt │ │ ├── AddNewPasswordMiddleware.kt │ │ ├── AddNewPasswordReducer.kt │ │ ├── AddNewPasswordState.kt │ │ ├── AddNewPasswordUi.kt │ │ ├── AddNewPasswordValidateMiddleware.kt │ │ ├── AddNewPasswordViewModel.kt │ │ └── AddNewPasswordWish.kt │ │ └── ui │ │ ├── AddNewPasswordContent.kt │ │ ├── AddNewPasswordScreen.kt │ │ └── AddNewPasswordTopBar.kt ├── auth │ ├── auth-api │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── authapi │ │ │ ├── domain │ │ │ └── usecase │ │ │ │ ├── CreateEmailAndPassword.kt │ │ │ │ ├── HasCurrentUserExist.kt │ │ │ │ ├── InsertUserUseCase.kt │ │ │ │ └── SignInWithEmailAndPassword.kt │ │ │ └── model │ │ │ └── AuthenticationResult.kt │ ├── auth-di │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── authdi │ │ │ ├── Koin.auth.domain.kt │ │ │ ├── Koin.auth.presentation.kt │ │ │ └── Voyager.auth.ui.kt │ └── auth-impl │ │ ├── build.gradle.kts │ │ └── src │ │ ├── androidUnitTest │ │ └── kotlin │ │ │ └── AuthUseCaseDomainArchitectureTest.kt │ │ └── commonMain │ │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── authimpl │ │ ├── domain │ │ ├── DefaultCreateEmailAndPasswordUseCase.kt │ │ ├── DefaultHasCurrentUserExistUseCase.kt │ │ ├── DefaultInsertUserUseCase.kt │ │ ├── DefaultSetKeyPasswordUseCase.kt │ │ └── DefaultSignInWithEmailAndPasswordUseCase.kt │ │ ├── presentation │ │ ├── signin │ │ │ ├── SignInEffect.kt │ │ │ ├── SignInMiddleware.kt │ │ │ ├── SignInReducer.kt │ │ │ ├── SignInState.kt │ │ │ ├── SignInValidateMiddleware.kt │ │ │ ├── SignInViewModel.kt │ │ │ └── SignInWish.kt │ │ └── signup │ │ │ ├── SignUpEffect.kt │ │ │ ├── SignUpMiddleware.kt │ │ │ ├── SignUpReducer.kt │ │ │ ├── SignUpState.kt │ │ │ ├── SignUpValidateMiddleware.kt │ │ │ ├── SignUpViewModel.kt │ │ │ └── SignUpWish.kt │ │ └── ui │ │ ├── SignInScreen.kt │ │ └── SignUpScreen.kt ├── authenticator │ ├── authenticator-api │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── authenticatorapi │ │ │ ├── domain │ │ │ ├── repository │ │ │ │ └── AuthenticatorRepository.kt │ │ │ └── usecase │ │ │ │ ├── GetOtpUseCase.kt │ │ │ │ ├── GetRealTimeOneTimePassword.kt │ │ │ │ └── IncrementCounterUseCase.kt │ │ │ └── model │ │ │ ├── AlgorithmTypeDomain.kt │ │ │ ├── CounterDomain.kt │ │ │ ├── OtpDigitDomain.kt │ │ │ ├── OtpDomain.kt │ │ │ ├── OtpDurationDomain.kt │ │ │ └── RealTimeOtpDomain.kt │ ├── authenticator-di │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── authenticatordi │ │ │ ├── Koin.authenticator.domain.kt │ │ │ ├── Koin.authenticator.presentation.kt │ │ │ └── Voyager.authenticator.ui.kt │ └── authenticator-impl │ │ ├── build.gradle.kts │ │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── authenticatorimpl │ │ ├── domain │ │ └── usecase │ │ │ ├── DefaultGetOtpUseCase.kt │ │ │ ├── DefaultGetRealTimeOneTimePasswordUseCase.kt │ │ │ └── DefaultIncrementCounterUseCase.kt │ │ ├── mapper │ │ └── OtpMapper.kt │ │ ├── presentation │ │ ├── AuthenticatorEffect.kt │ │ ├── AuthenticatorMiddleware.kt │ │ ├── AuthenticatorReducer.kt │ │ ├── AuthenticatorState.kt │ │ ├── AuthenticatorViewModel.kt │ │ └── AuthenticatorWish.kt │ │ └── ui │ │ ├── AuthenticatorNewItemButton.kt │ │ ├── AuthenticatorScreen.kt │ │ └── AuthenticatorTopBar.kt ├── changepassword │ ├── changepassword-api │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── changepasswordapi │ │ │ └── domain │ │ │ ├── repository │ │ │ └── ChangePasswordRepository.kt │ │ │ └── usecase │ │ │ ├── GetCurrentKeyPasswordUseCase.kt │ │ │ └── SetNewKeyPasswordUseCase.kt │ ├── changepassword-di │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── changepassworddi │ │ │ ├── Koin.changepassword.domain.kt │ │ │ ├── Koin.changepassword.presentation.kt │ │ │ └── Voyager.changepassword.ui.kt │ └── changepassword-impl │ │ ├── build.gradle.kts │ │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── changepasswordimpl │ │ ├── domain │ │ └── usecase │ │ │ ├── DefaultGetCurrentKeyPasswordUseCase.kt │ │ │ └── DefaultSetNewKeyPasswordUseCase.kt │ │ ├── presentation │ │ ├── ChangePasswordEffect.kt │ │ ├── ChangePasswordMiddleware.kt │ │ ├── ChangePasswordReducer.kt │ │ ├── ChangePasswordState.kt │ │ ├── ChangePasswordValidateMiddleware.kt │ │ ├── ChangePasswordViewModel.kt │ │ └── ChangePasswordWish.kt │ │ └── ui │ │ ├── ChangePasswordContent.kt │ │ ├── ChangePasswordScreen.kt │ │ ├── ChangePasswordTopBar.kt │ │ └── UpdateKeyPasswordButton.kt ├── generatepassword │ ├── generatepassword-api │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── generatepasswordapi │ │ │ └── domain │ │ │ ├── repository │ │ │ └── GeneratePasswordRepository.kt │ │ │ └── usecase │ │ │ ├── GeneratePasswordUseCase.kt │ │ │ └── InsertPasswordHistoryUseCase.kt │ ├── generatepassword-di │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── generatepassworddi │ │ │ ├── Koin.generatepassword.domain.kt │ │ │ ├── Koin.generatepassword.presentation.kt │ │ │ └── Voyager.generatepassword.ui.kt │ └── generatepassword-impl │ │ ├── build.gradle.kts │ │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── generatepasswordimpl │ │ ├── domain │ │ └── usecase │ │ │ ├── DefaultGeneratePasswordUseCaseUseCase.kt │ │ │ └── DefaultInsertPasswordHistoryUseCase.kt │ │ ├── presentation │ │ ├── GeneratePasswordEffect.kt │ │ ├── GeneratePasswordMiddleware.kt │ │ ├── GeneratePasswordReducer.kt │ │ ├── GeneratePasswordState.kt │ │ ├── GeneratePasswordViewModel.kt │ │ └── GeneratePasswordWish.kt │ │ └── ui │ │ ├── GeneratePasswordContent.kt │ │ ├── GeneratePasswordScreen.kt │ │ └── component │ │ ├── DigitSlider.kt │ │ ├── RandomPassword.kt │ │ ├── SpecialSlider.kt │ │ └── UppercaseSlider.kt ├── help │ ├── help-api │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ ├── domain │ │ │ └── usecase │ │ │ │ └── GetFAQsUseCase.kt │ │ │ └── model │ │ │ └── FAQ.kt │ ├── help-di │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── help │ │ │ ├── Koin.help.domain.kt │ │ │ ├── Koin.help.presentation.kt │ │ │ ├── Koin.help.store.kt │ │ │ └── Voyager.help.ui.kt │ ├── help-impl │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── help │ │ │ ├── domain │ │ │ ├── DefaultGetFAQsUseCase.kt │ │ │ └── mapper │ │ │ │ └── FAQs.kt │ │ │ ├── presentation │ │ │ ├── HelpEffect.kt │ │ │ ├── HelpMiddleware.kt │ │ │ ├── HelpReducer.kt │ │ │ ├── HelpState.kt │ │ │ ├── HelpViewModel.kt │ │ │ └── HelpWish.kt │ │ │ └── ui │ │ │ ├── HelpContent.kt │ │ │ ├── HelpScreen.kt │ │ │ └── component │ │ │ ├── ContactSupport.kt │ │ │ ├── ExpandableCard.kt │ │ │ └── ExpandableCardDefaults.kt │ └── help-store │ │ ├── build.gradle.kts │ │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── helpstore │ │ ├── AskedQuestions.kt │ │ └── HelpStoreManager.kt ├── home │ ├── home-api │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── homeapi │ │ │ ├── domain │ │ │ └── usecase │ │ │ │ ├── GetCategoriesUseCase.kt │ │ │ │ └── GetPasswordsByCategoryUseCase.kt │ │ │ ├── models │ │ │ ├── HomeCategory.kt │ │ │ └── HomePassword.kt │ │ │ └── repository │ │ │ └── HomeRepository.kt │ ├── home-di │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── homedi │ │ │ ├── Koin.home.domain.kt │ │ │ ├── Koin.home.presentation.kt │ │ │ └── Voyager.home.ui.kt │ └── home-impl │ │ ├── build.gradle.kts │ │ └── src │ │ ├── androidUnitTest │ │ └── kotlin │ │ │ └── HomeUseCaseDomainArchitectureTest.kt │ │ └── commonMain │ │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── homeimpl │ │ ├── domain │ │ ├── DefaultGetCategoriesUseCas.kt │ │ └── DefaultGetPasswordByCategoryUseCase.kt │ │ ├── presentation │ │ ├── HomeEffect.kt │ │ ├── HomeMiddleware.kt │ │ ├── HomeReducer.kt │ │ ├── HomeState.kt │ │ ├── HomeViewModel.kt │ │ ├── HomeWish.kt │ │ ├── UIHomeCategory.kt │ │ └── UIHomePassword.kt │ │ └── ui │ │ ├── HomeDefaults.kt │ │ ├── HomeScreen.kt │ │ └── component │ │ ├── CategoryCard.kt │ │ ├── HomeDrawer.kt │ │ ├── HomeHeadline.kt │ │ ├── HomeIndicator.kt │ │ ├── HomePager.kt │ │ ├── HomeTag.kt │ │ └── HomeTopBar.kt ├── keypassword │ ├── keypassword-api │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── passphraseapi │ │ │ └── domain │ │ │ └── usecase │ │ │ ├── GetFingerprintStatusUseCase.kt │ │ │ ├── GetKeyPasswordUseCase.kt │ │ │ ├── IsKeyPasswordExistUseCase.kt │ │ │ └── SetKeyPasswordUseCase.kt │ ├── keypassword-di │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── passphrasedi │ │ │ ├── Koin.keypassword.domain.kt │ │ │ ├── Koin.keypassword.presentation.kt │ │ │ └── Voyager.keypassword.ui.kt │ └── keypassword-impl │ │ ├── build.gradle.kts │ │ └── src │ │ ├── androidUnitTest │ │ └── kotlin │ │ │ └── KeyPasswordUseCaseDomainArchitectureTest.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── passphraseimpl │ │ │ ├── domain │ │ │ ├── DefaultGetFingerprintStatusUseCase.kt │ │ │ ├── DefaultGetKeyPasswordUseCase.kt │ │ │ ├── DefaultIsKeyPasswordExistUseCase.kt │ │ │ └── DefaultSetKeyPasswordUseCase.kt │ │ │ ├── presentation │ │ │ ├── MasterPasswordEffect.kt │ │ │ ├── MasterPasswordMiddleware.kt │ │ │ ├── MasterPasswordReducer.kt │ │ │ ├── MasterPasswordState.kt │ │ │ ├── MasterPasswordViewModel.kt │ │ │ └── MasterPasswordWish.kt │ │ │ └── ui │ │ │ ├── KeyPasswordContent.kt │ │ │ ├── KeyPasswordScreen.kt │ │ │ └── Keypads.kt │ │ └── commonTest │ │ └── kotlin │ │ └── MasterPasswordReducerTest.kt ├── navigation │ └── navigation-api │ │ ├── build.gradle.kts │ │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── navigationapi │ │ ├── AccountDestination.kt │ │ ├── AddNewPasswordDestination.kt │ │ ├── AuthDestination.kt │ │ ├── AuthenticatorDestination.kt │ │ ├── ChangePasswordDestination.kt │ │ ├── GeneratePasswordDestination.kt │ │ ├── HelpDestination.kt │ │ ├── HomeDestination.kt │ │ ├── KeyPasswordDestination.kt │ │ ├── NewTokenDestination.kt │ │ ├── OnboardingDestination.kt │ │ ├── PasswordHealthDestination.kt │ │ ├── PasswordHistoryDestination.kt │ │ └── core │ │ └── Destination.kt ├── newtoken │ ├── newtoken-api │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── newtokenapi │ │ │ ├── domain │ │ │ ├── repository │ │ │ │ └── NewTokenRepository.kt │ │ │ └── usecase │ │ │ │ └── InsertOtpWithCountUseCase.kt │ │ │ └── model │ │ │ ├── NewTokenDigit.kt │ │ │ ├── NewTokenDomain.kt │ │ │ ├── NewTokenDuration.kt │ │ │ └── NewTokenType.kt │ ├── newtoken-di │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── newtokendi │ │ │ ├── Koin.newtoken.domain.kt │ │ │ ├── Koin.newtoken.presentation.kt │ │ │ └── Voyager.newtoken.ui.kt │ └── newtoken-impl │ │ ├── build.gradle.kts │ │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── newtokenimpl │ │ ├── domain │ │ └── DefaultInsertOtpWithCount.kt │ │ ├── presentation │ │ ├── NewTokenEffect.kt │ │ ├── NewTokenMiddleware.kt │ │ ├── NewTokenReducer.kt │ │ ├── NewTokenState.kt │ │ ├── NewTokenViewModel.kt │ │ └── NewTokenWish.kt │ │ └── ui │ │ ├── NewTokenContent.kt │ │ ├── NewTokenScreen.kt │ │ ├── NewTokenTextField.kt │ │ └── NewTokenTopBar.kt ├── onboarding │ ├── onboarding-api │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── onboardingapi │ │ │ └── domain │ │ │ └── usecase │ │ │ ├── HasCurrentUserExist.kt │ │ │ ├── IsFirstTimeUseCase.kt │ │ │ └── SetIsFirstTimeUseCase.kt │ ├── onboarding-di │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── onboardingdi │ │ │ ├── Koin.onboarding.domain.kt │ │ │ ├── Koin.onboarding.presentation.kt │ │ │ └── Voyager.onboarding.ui.kt │ └── onboarding-impl │ │ ├── build.gradle.kts │ │ └── src │ │ ├── androidUnitTest │ │ └── kotlin │ │ │ ├── OnboardingDomainArchitectureTest.kt │ │ │ └── OnboardingUseCaseDomainArchitectureTest.kt │ │ └── commonMain │ │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── onboardingimpl │ │ ├── domain │ │ ├── DefaultHasCurrentUserExistUseCase.kt │ │ ├── DefaultIsFirstTimeUseCase.kt │ │ └── DefaultSetIsFirstTimeUseCase.kt │ │ ├── presentation │ │ ├── OnboardingEffect.kt │ │ ├── OnboardingMiddleware.kt │ │ ├── OnboardingReducer.kt │ │ ├── OnboardingState.kt │ │ ├── OnboardingViewModel.kt │ │ └── OnboardingWish.kt │ │ └── ui │ │ └── OnboardingScreen.kt ├── passwordhealth │ ├── passwordhealth-api │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── domain │ │ │ ├── model │ │ │ ├── PasswordHealth.kt │ │ │ ├── PasswordStats.kt │ │ │ └── PasswordType.kt │ │ │ ├── repository │ │ │ └── PasswordHealthRepository.kt │ │ │ └── usecase │ │ │ ├── GetPasswordHealthUseCase.kt │ │ │ ├── GetPasswordProgressUseCase.kt │ │ │ └── GetPasswordStatsUseCase.kt │ ├── passwordhealth-di │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ ├── Koin.passwordhealth.domain.kt │ │ │ ├── Koin.passwordhealth.presentation.kt │ │ │ └── Voayager.passwordhealth.ui.kt │ └── passwordhealth-impl │ │ ├── build.gradle.kts │ │ └── src │ │ ├── commonMain │ │ └── kotlin │ │ │ └── passwordhealthimpl │ │ │ ├── domain │ │ │ ├── DefaultGetPasswordHealthUseCase.kt │ │ │ ├── DefaultGetPasswordProgressUseCase.kt │ │ │ └── DefaultGetPasswordStatsUseCase.kt │ │ │ ├── presentation │ │ │ ├── PasswordHealthEffect.kt │ │ │ ├── PasswordHealthMiddleware.kt │ │ │ ├── PasswordHealthReducer.kt │ │ │ ├── PasswordHealthState.kt │ │ │ ├── PasswordHealthViewModel.kt │ │ │ └── PasswordHealthWish.kt │ │ │ └── ui │ │ │ ├── PasswordHealthContent.kt │ │ │ ├── PasswordHealthScreen.kt │ │ │ └── component │ │ │ ├── PasswordHealthColumn.kt │ │ │ ├── PasswordHealthTopBar.kt │ │ │ ├── PasswordStatsContent.kt │ │ │ ├── SemiProgressBar.kt │ │ │ ├── SemiProgressBarDefaults.kt │ │ │ ├── SemiProgressBarStyle.kt │ │ │ └── SemiProgressBarTokens.kt │ │ └── commonTest │ │ └── kotlin │ │ ├── FakePasswordHealthRepository.kt │ │ └── GetPasswordHealthUseCaseTest.kt └── passwordhistory │ ├── passwordhistory-api │ ├── build.gradle.kts │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── passwordhistoryapi │ │ ├── model │ │ ├── PasswordHistory.kt │ │ └── PasswordHistoryResult.kt │ │ ├── repository │ │ └── PasswordHistoryRepository.kt │ │ └── usecase │ │ ├── ClearAllPasswordHistory.kt │ │ └── GetAllPasswordHistoryUseCase.kt │ ├── passwordhistory-di │ ├── build.gradle.kts │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── passwordhistorydi │ │ ├── Koin.passwordhistory.domain.kt │ │ ├── Koin.passwordhistory.presentation.kt │ │ └── Voyager.passwordhistory.ui.kt │ └── passwordhistory-impl │ ├── build.gradle.kts │ └── src │ ├── commonMain │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── passwordhistoryimpl │ │ ├── domain │ │ ├── DefaultClearPasswordHistoryUseCase.kt │ │ └── DefaultGetAllPasswordHistoryUseCase.kt │ │ ├── presentation │ │ ├── PasswordHistoryEffect.kt │ │ ├── PasswordHistoryMiddleware.kt │ │ ├── PasswordHistoryReducer.kt │ │ ├── PasswordHistoryState.kt │ │ ├── PasswordHistoryViewModel.kt │ │ ├── PasswordHistoryWish.kt │ │ └── UiPasswordHistory.kt │ │ └── ui │ │ ├── PasswordHistoryScreen.kt │ │ └── component │ │ ├── PasswordHistoryList.kt │ │ ├── PasswordHistoryRow.kt │ │ └── PasswordHistoryTopBar.kt │ └── commonTest │ └── kotlin │ ├── FakeClearPasswordHistoryUseCase.kt │ ├── FakeGetAllPasswordsUseCase.kt │ └── PasswordHistoryViewModelTest.kt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── iosApp ├── Config.xcconfig ├── iosApp.xcodeproj │ └── project.pbxproj └── iosApp │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── iOSApp.swift ├── local.properties ├── manager ├── biometry │ ├── build.gradle.kts │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── biometry │ │ │ ├── BiometricManager.android.kt │ │ │ └── RememberBiometricManager.android.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── biometry │ │ │ ├── BiometricManager.kt │ │ │ └── RememberBiometricManager.kt │ │ └── iosMain │ │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── biometry │ │ ├── BiometricManager.kt │ │ ├── Coroutine.kt │ │ └── RememberBiometricManager.ios.kt ├── otp │ ├── build.gradle.kts │ └── src │ │ ├── commonMain │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── otp │ │ │ ├── Otp.kt │ │ │ ├── OtpDuration.kt │ │ │ └── OtpManager.kt │ │ └── commonTest │ │ └── kotlin │ │ └── OtpManagerTest.kt └── password │ ├── build.gradle.kts │ └── src │ ├── commonMain │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── manager │ │ └── password │ │ ├── DigitRandom.kt │ │ ├── LowercaseRandom.kt │ │ ├── PasswordManager.kt │ │ ├── SpecialRandom.kt │ │ ├── UppercaseRandom.kt │ │ └── di │ │ └── Koin.password.kt │ └── commonTest │ └── kotlin │ └── io.spherelabs.manager.password │ ├── DigitalRandomTest.kt │ ├── LowercaseRandomTest.kt │ ├── PasswordManagerTest.kt │ └── UppercaseRandomTest.kt ├── media ├── account.png ├── add_new_password.png ├── authenticator.png ├── change_key_password.png ├── confirm_key_password.png ├── generate_password.png ├── help.png ├── home.png ├── password_health.png ├── rounded-banner.png ├── sign_in.png └── sign_up.png ├── release └── google-services.gpg ├── resource ├── fonts │ ├── build.gradle.kts │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── io │ │ │ └── spherelabs │ │ │ └── resource │ │ │ └── fonts │ │ │ └── Fonts.android.kt │ │ ├── commonMain │ │ ├── kotlin │ │ │ └── io │ │ │ │ └── spherelabs │ │ │ │ └── resource │ │ │ │ └── fonts │ │ │ │ └── Fonts.common.kt │ │ └── resources │ │ │ └── font │ │ │ ├── googlesans_bold.ttf │ │ │ ├── googlesans_medium.ttf │ │ │ ├── googlesans_regular.ttf │ │ │ ├── opensans_bold.ttf │ │ │ ├── opensans_medium.ttf │ │ │ └── opensans_regular.ttf │ │ └── iosMain │ │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── resource │ │ └── fonts │ │ └── Fonts.ios.kt ├── icons │ ├── build.gradle.kts │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── resource │ │ └── icons │ │ ├── AnyPassIcons.kt │ │ └── anypassicons │ │ ├── ApplePodcasts.kt │ │ ├── Behance.kt │ │ ├── Discord.kt │ │ ├── Dribble.kt │ │ ├── Facebook.kt │ │ ├── Googlemeet.kt │ │ ├── Layers.kt │ │ ├── Linkedin.kt │ │ ├── Medium.kt │ │ ├── Messenger.kt │ │ ├── Patreon.kt │ │ ├── Pinterest.kt │ │ ├── Quora.kt │ │ ├── Reddit.kt │ │ ├── ShieldCheck.kt │ │ ├── Skype.kt │ │ ├── Target.kt │ │ ├── Telegram.kt │ │ └── Whatsapp.kt ├── images │ ├── build.gradle.kts │ ├── images.podspec │ └── src │ │ └── commonMain │ │ ├── kotlin │ │ └── io │ │ │ └── spherelabs │ │ │ └── resource │ │ │ └── images │ │ │ └── AnyPassImages.kt │ │ └── resources │ │ └── MR │ │ └── images │ │ ├── avatar2@1x.png │ │ ├── avatar3@1x.png │ │ ├── avatar4@1x.png │ │ ├── avatar5@1x.png │ │ ├── avatar6@1x.png │ │ ├── avatar@1x.png │ │ ├── change_password.svg │ │ ├── illustration@1x.png │ │ ├── layers.svg │ │ ├── locker@1x.png │ │ ├── message_square.svg │ │ ├── shield_check.svg │ │ ├── signin@1x.png │ │ ├── signup@1x.png │ │ ├── target.svg │ │ └── whale_logo@1x.png └── strings │ ├── build.gradle.kts │ └── src │ └── commonMain │ └── kotlin │ └── io │ └── spherelabs │ └── resource │ ├── EnAnyPassStrings.kt │ ├── KoAnyPassStrings.kt │ ├── RuAnyPassStrings.kt │ ├── UzAnyPassStrings.kt │ └── strings │ └── AnyPassStrings.kt ├── scripts ├── cleanup-secrets.sh ├── cleanup.sh ├── decrypt-and-save.sh └── rebuild.sh ├── settings.gradle.kts ├── shared ├── build.gradle.kts ├── shared.podspec └── src │ ├── androidMain │ └── kotlin │ │ └── io │ │ └── spherelabs │ │ └── anypass │ │ ├── Main.android.kt │ │ └── di │ │ ├── PlatformModule.android.kt │ │ └── ViewModelModule.android.kt │ ├── commonMain │ ├── kotlin │ │ └── io │ │ │ └── spherelabs │ │ │ └── anypass │ │ │ ├── app │ │ │ ├── AnyPassApp.kt │ │ │ └── SharedViewModel.kt │ │ │ ├── di │ │ │ ├── Koin.kt │ │ │ └── ViewModelModule.kt │ │ │ └── sentry │ │ │ └── Sentry.kt │ └── resources │ │ └── MR │ │ ├── colors │ │ └── colors.xml │ │ └── images │ │ ├── avatar2@1x.png │ │ ├── avatar3@1x.png │ │ ├── avatar4@1x.png │ │ ├── avatar5@1x.png │ │ ├── avatar6@1x.png │ │ ├── avatar@1x.png │ │ ├── change_password.svg │ │ ├── illustration@1x.png │ │ ├── layers.svg │ │ ├── locker@1x.png │ │ ├── message_square.svg │ │ ├── shield_check.svg │ │ ├── signin@1x.png │ │ ├── signup@1x.png │ │ ├── target.svg │ │ └── whale_logo@1x.png │ └── iosMain │ └── kotlin │ └── io │ └── spherelabs │ └── anypass │ ├── Main.ios.kt │ └── di │ ├── PlatformModule.ios.kt │ └── ViewModelModule.ios.kt └── spotless └── anypass-copyright.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/android-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/.github/workflows/android-pr.yml -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/caches/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/.github/workflows/caches/action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/README.md -------------------------------------------------------------------------------- /androidApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/build.gradle.kts -------------------------------------------------------------------------------- /androidApp/google-services.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /androidApp/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/proguard-rules.pro -------------------------------------------------------------------------------- /androidApp/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /androidApp/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /androidApp/src/main/ic_white_anypass-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/ic_white_anypass-playstore.png -------------------------------------------------------------------------------- /androidApp/src/main/java/io/spherelabs/anypass/android/AnyPassApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/java/io/spherelabs/anypass/android/AnyPassApplication.kt -------------------------------------------------------------------------------- /androidApp/src/main/java/io/spherelabs/anypass/android/InAppUpdate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/java/io/spherelabs/anypass/android/InAppUpdate.kt -------------------------------------------------------------------------------- /androidApp/src/main/java/io/spherelabs/anypass/android/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/java/io/spherelabs/anypass/android/MainActivity.kt -------------------------------------------------------------------------------- /androidApp/src/main/java/io/spherelabs/anypass/android/MyApplicationTheme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/java/io/spherelabs/anypass/android/MyApplicationTheme.kt -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-anydpi-v26/ic_white_anypass.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-anydpi-v26/ic_white_anypass.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-anydpi-v26/ic_white_anypass_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-anydpi-v26/ic_white_anypass_round.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-hdpi/ic_white_anypass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-hdpi/ic_white_anypass.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-hdpi/ic_white_anypass_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-hdpi/ic_white_anypass_foreground.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-hdpi/ic_white_anypass_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-hdpi/ic_white_anypass_round.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-mdpi/ic_white_anypass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-mdpi/ic_white_anypass.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-mdpi/ic_white_anypass_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-mdpi/ic_white_anypass_foreground.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-mdpi/ic_white_anypass_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-mdpi/ic_white_anypass_round.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xhdpi/ic_white_anypass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-xhdpi/ic_white_anypass.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xhdpi/ic_white_anypass_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-xhdpi/ic_white_anypass_foreground.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xhdpi/ic_white_anypass_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-xhdpi/ic_white_anypass_round.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxhdpi/ic_white_anypass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-xxhdpi/ic_white_anypass.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxhdpi/ic_white_anypass_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-xxhdpi/ic_white_anypass_foreground.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxhdpi/ic_white_anypass_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-xxhdpi/ic_white_anypass_round.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxxhdpi/ic_white_anypass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-xxxhdpi/ic_white_anypass.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxxhdpi/ic_white_anypass_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-xxxhdpi/ic_white_anypass_foreground.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxxhdpi/ic_white_anypass_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/mipmap-xxxhdpi/ic_white_anypass_round.png -------------------------------------------------------------------------------- /androidApp/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/values/ic_white_anypass_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/values/ic_white_anypass_background.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/androidApp/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /core/admob/admob.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/admob/admob.podspec -------------------------------------------------------------------------------- /core/admob/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/admob/build.gradle.kts -------------------------------------------------------------------------------- /core/admob/src/androidMain/kotlin/io/spherelabs/admob/GADBannerView.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/admob/src/androidMain/kotlin/io/spherelabs/admob/GADBannerView.android.kt -------------------------------------------------------------------------------- /core/admob/src/androidMain/kotlin/io/spherelabs/admob/di/Koin.admob.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/admob/src/androidMain/kotlin/io/spherelabs/admob/di/Koin.admob.android.kt -------------------------------------------------------------------------------- /core/admob/src/commonMain/kotlin/io/spherelabs/admob/GADBannerView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/admob/src/commonMain/kotlin/io/spherelabs/admob/GADBannerView.kt -------------------------------------------------------------------------------- /core/admob/src/commonMain/kotlin/io/spherelabs/admob/di/Koin.admob.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/admob/src/commonMain/kotlin/io/spherelabs/admob/di/Koin.admob.kt -------------------------------------------------------------------------------- /core/admob/src/commonMain/kotlin/io/spherelabs/admob/di/LoadGADError.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/admob/src/commonMain/kotlin/io/spherelabs/admob/di/LoadGADError.kt -------------------------------------------------------------------------------- /core/admob/src/iosMain/kotlin/io/spherelabs/admob/GADBannerView.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/admob/src/iosMain/kotlin/io/spherelabs/admob/GADBannerView.ios.kt -------------------------------------------------------------------------------- /core/admob/src/iosMain/kotlin/io/spherelabs/admob/di/Koin.admob.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/admob/src/iosMain/kotlin/io/spherelabs/admob/di/Koin.admob.ios.kt -------------------------------------------------------------------------------- /core/analytics/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/analytics/build.gradle.kts -------------------------------------------------------------------------------- /core/common/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/common/build.gradle.kts -------------------------------------------------------------------------------- /core/common/src/androidMain/kotlin/io/spherelabs/common/Uuid.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/common/src/androidMain/kotlin/io/spherelabs/common/Uuid.android.kt -------------------------------------------------------------------------------- /core/common/src/commonMain/kotlin/io/spherelabs/common/LocalDateTimeExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/common/src/commonMain/kotlin/io/spherelabs/common/LocalDateTimeExtension.kt -------------------------------------------------------------------------------- /core/common/src/commonMain/kotlin/io/spherelabs/common/StringExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/common/src/commonMain/kotlin/io/spherelabs/common/StringExt.kt -------------------------------------------------------------------------------- /core/common/src/commonMain/kotlin/io/spherelabs/common/Uuid.kt: -------------------------------------------------------------------------------- 1 | package io.spherelabs.common 2 | 3 | public expect fun uuid4(): String 4 | -------------------------------------------------------------------------------- /core/common/src/commonMain/kotlin/io/spherelabs/common/exception/AuthException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/common/src/commonMain/kotlin/io/spherelabs/common/exception/AuthException.kt -------------------------------------------------------------------------------- /core/common/src/commonMain/kotlin/io/spherelabs/common/exception/IdNotAvailableException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/common/src/commonMain/kotlin/io/spherelabs/common/exception/IdNotAvailableException.kt -------------------------------------------------------------------------------- /core/common/src/commonMain/kotlin/io/spherelabs/common/exception/NotAvailableException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/common/src/commonMain/kotlin/io/spherelabs/common/exception/NotAvailableException.kt -------------------------------------------------------------------------------- /core/common/src/commonTest/kotlin/LocalDateTimeExtensionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/common/src/commonTest/kotlin/LocalDateTimeExtensionTest.kt -------------------------------------------------------------------------------- /core/common/src/commonTest/kotlin/UuidTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/common/src/commonTest/kotlin/UuidTest.kt -------------------------------------------------------------------------------- /core/common/src/iosMain/kotlin/io/spherelabs/common/Uuid.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/common/src/iosMain/kotlin/io/spherelabs/common/Uuid.ios.kt -------------------------------------------------------------------------------- /core/designsystem/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/build.gradle.kts -------------------------------------------------------------------------------- /core/designsystem/src/androidMain/kotlin/io/spherelabs/designsystem/context/KContext.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/androidMain/kotlin/io/spherelabs/designsystem/context/KContext.android.kt -------------------------------------------------------------------------------- /core/designsystem/src/androidMain/kotlin/io/spherelabs/designsystem/dialog/LKDialog.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/androidMain/kotlin/io/spherelabs/designsystem/dialog/LKDialog.android.kt -------------------------------------------------------------------------------- /core/designsystem/src/androidMain/kotlin/io/spherelabs/designsystem/image/LKImage.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/androidMain/kotlin/io/spherelabs/designsystem/image/LKImage.android.kt -------------------------------------------------------------------------------- /core/designsystem/src/androidMain/kotlin/io/spherelabs/designsystem/spinner/LKSpinner.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/androidMain/kotlin/io/spherelabs/designsystem/spinner/LKSpinner.android.kt -------------------------------------------------------------------------------- /core/designsystem/src/androidMain/kotlin/io/spherelabs/designsystem/state/CollectAsStateWithLifecycle.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/androidMain/kotlin/io/spherelabs/designsystem/state/CollectAsStateWithLifecycle.android.kt -------------------------------------------------------------------------------- /core/designsystem/src/androidMain/kotlin/io/spherelabs/designsystem/url/UrlUtils.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/androidMain/kotlin/io/spherelabs/designsystem/url/UrlUtils.android.kt -------------------------------------------------------------------------------- /core/designsystem/src/androidMain/kotlin/io/spherelabs/designsystem/utils/LocalScreenConfiguration.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/androidMain/kotlin/io/spherelabs/designsystem/utils/LocalScreenConfiguration.android.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/animation/Shake.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/animation/Shake.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/animation/ShakeConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/animation/ShakeConfig.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/animation/ShakeController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/animation/ShakeController.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/button/LKButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/button/LKButton.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/collapsingtoolbar/CollapsingToolbar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/collapsingtoolbar/CollapsingToolbar.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/collapsingtoolbar/CollapsingToolbarScaffold.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/collapsingtoolbar/CollapsingToolbarScaffold.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/collapsingtoolbar/ScroolStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/collapsingtoolbar/ScroolStrategy.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/compose/StableCoroutineScope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/compose/StableCoroutineScope.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/context/KContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/context/KContext.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/dialog/BasicLKDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/dialog/BasicLKDialog.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/dialog/LKDialog.common.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/dialog/LKDialog.common.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/dialog/LKDialogButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/dialog/LKDialogButton.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/dialog/LKDialogScope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/dialog/LKDialogScope.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/dialog/LKDialogScopeExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/dialog/LKDialogScopeExt.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/dimension/Dimension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/dimension/Dimension.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/fonts/Strings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/fonts/Strings.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/grid/LKGridLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/grid/LKGridLayout.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/hooks/Hooks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/hooks/Hooks.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/hooks/Koin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/hooks/Koin.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/image/LKImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/image/LKImage.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/meteor/MeteorExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/meteor/MeteorExtension.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/meterprogress/LKDashProgress.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/meterprogress/LKDashProgress.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/meterprogress/LKMarker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/meterprogress/LKMarker.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/meterprogress/LKMeterProgress.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/meterprogress/LKMeterProgress.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/meterprogress/LKMeterProgressTokens.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/meterprogress/LKMeterProgressTokens.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/meterprogress/LKProgress.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/meterprogress/LKProgress.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/passwordcard/LKPasswordCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/passwordcard/LKPasswordCard.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/passwordcard/LKPasswordCardColor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/passwordcard/LKPasswordCardColor.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/passwordcard/LKPasswordCardDefaults.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/passwordcard/LKPasswordCardDefaults.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/passwordcard/LKPasswordCardStyle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/passwordcard/LKPasswordCardStyle.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/passwordcard/LKPasswordCardTokens.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/passwordcard/LKPasswordCardTokens.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/picker/LKGridView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/picker/LKGridView.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/picker/LKIconView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/picker/LKIconView.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/picker/LKSocialMediaGridLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/picker/LKSocialMediaGridLayout.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/picker/LKSocialMediaPicker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/picker/LKSocialMediaPicker.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/pininput/LKCell.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/pininput/LKCell.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/pininput/LKPinDefaults.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/pininput/LKPinDefaults.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/pininput/LKPinInput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/pininput/LKPinInput.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/pininput/LKPinStyle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/pininput/LKPinStyle.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/pininput/LKPinTokens.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/pininput/LKPinTokens.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/slider/CorrectValueSideEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/slider/CorrectValueSideEffect.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/slider/LKBasicSlider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/slider/LKBasicSlider.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/slider/LKSlider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/slider/LKSlider.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/slider/LKSliderColors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/slider/LKSliderColors.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/slider/LKSliderDefaults.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/slider/LKSliderDefaults.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/slider/LKSliderLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/slider/LKSliderLayout.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/slider/LKSliderTokens.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/slider/LKSliderTokens.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/slider/LKTrack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/slider/LKTrack.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/spinner/LKDropdownDefaults.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/spinner/LKDropdownDefaults.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/spinner/LKDropdownMenuPositionProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/spinner/LKDropdownMenuPositionProvider.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/spinner/LKDropdownStyle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/spinner/LKDropdownStyle.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/spinner/LKDropdownTokens.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/spinner/LKDropdownTokens.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/spinner/LKSpinner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/spinner/LKSpinner.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/state/CollectAsStateWithLifecycle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/state/CollectAsStateWithLifecycle.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/swiper/LKCardStack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/swiper/LKCardStack.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/swiper/LKCardStackIntervalContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/swiper/LKCardStackIntervalContent.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/swiper/LKCardStackItemProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/swiper/LKCardStackItemProvider.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/swiper/LKCardStackItemScope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/swiper/LKCardStackItemScope.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/swiper/LKCardStackMeasurePolicy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/swiper/LKCardStackMeasurePolicy.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/swiper/LKCardStackScope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/swiper/LKCardStackScope.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/swiper/LKCardStackState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/swiper/LKCardStackState.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/swiper/LKSwipeDirection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/swiper/LKSwipeDirection.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/swiper/LKSwiperDraggableState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/swiper/LKSwiperDraggableState.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/swiper/LKSwiperState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/swiper/LKSwiperState.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/swiper/NearestRangeKeyIndexMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/swiper/NearestRangeKeyIndexMap.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/switch/LKSwitch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/switch/LKSwitch.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/text/LKText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/text/LKText.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/textfield/LKTextField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/textfield/LKTextField.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/url/UrlUtils.common.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/url/UrlUtils.common.kt -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/utils/LocalScreenConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/commonMain/kotlin/io/spherelabs/designsystem/utils/LocalScreenConfiguration.kt -------------------------------------------------------------------------------- /core/designsystem/src/iosMain/kotlin/io.spherelabs.designsystem/context/KContext.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/iosMain/kotlin/io.spherelabs.designsystem/context/KContext.ios.kt -------------------------------------------------------------------------------- /core/designsystem/src/iosMain/kotlin/io.spherelabs.designsystem/dialog/LKDialog.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/iosMain/kotlin/io.spherelabs.designsystem/dialog/LKDialog.ios.kt -------------------------------------------------------------------------------- /core/designsystem/src/iosMain/kotlin/io.spherelabs.designsystem/image/LKImage.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/iosMain/kotlin/io.spherelabs.designsystem/image/LKImage.ios.kt -------------------------------------------------------------------------------- /core/designsystem/src/iosMain/kotlin/io.spherelabs.designsystem/spinner/LKSpinner.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/iosMain/kotlin/io.spherelabs.designsystem/spinner/LKSpinner.ios.kt -------------------------------------------------------------------------------- /core/designsystem/src/iosMain/kotlin/io.spherelabs.designsystem/state/CollectAsStateWithLifecycle.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/iosMain/kotlin/io.spherelabs.designsystem/state/CollectAsStateWithLifecycle.ios.kt -------------------------------------------------------------------------------- /core/designsystem/src/iosMain/kotlin/io.spherelabs.designsystem/url/UrlUtils.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/iosMain/kotlin/io.spherelabs.designsystem/url/UrlUtils.ios.kt -------------------------------------------------------------------------------- /core/designsystem/src/iosMain/kotlin/io.spherelabs.designsystem/utils/LocalScreenConfiguration.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/designsystem/src/iosMain/kotlin/io.spherelabs.designsystem/utils/LocalScreenConfiguration.ios.kt -------------------------------------------------------------------------------- /core/mlkit/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/mlkit/build.gradle.kts -------------------------------------------------------------------------------- /core/mlkit/src/androidMain/kotlin/io/spherelabs/mlkit/Platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/mlkit/src/androidMain/kotlin/io/spherelabs/mlkit/Platform.kt -------------------------------------------------------------------------------- /core/mlkit/src/commonMain/kotlin/io/spherelabs/mlkit/Greeting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/mlkit/src/commonMain/kotlin/io/spherelabs/mlkit/Greeting.kt -------------------------------------------------------------------------------- /core/mlkit/src/commonMain/kotlin/io/spherelabs/mlkit/Platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/mlkit/src/commonMain/kotlin/io/spherelabs/mlkit/Platform.kt -------------------------------------------------------------------------------- /core/mlkit/src/iosMain/kotlin/io/spherelabs/mlkit/Platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/mlkit/src/iosMain/kotlin/io/spherelabs/mlkit/Platform.kt -------------------------------------------------------------------------------- /core/system/foundation/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/system/foundation/build.gradle.kts -------------------------------------------------------------------------------- /core/system/foundation/src/commonMain/kotlin/io/spherelabs/foundation/color/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/system/foundation/src/commonMain/kotlin/io/spherelabs/foundation/color/Color.kt -------------------------------------------------------------------------------- /core/system/ui/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/system/ui/build.gradle.kts -------------------------------------------------------------------------------- /core/system/ui/src/androidMain/kotlin/io/spherelabs/system/ui/shimmer/ShimmerBounds.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/system/ui/src/androidMain/kotlin/io/spherelabs/system/ui/shimmer/ShimmerBounds.android.kt -------------------------------------------------------------------------------- /core/system/ui/src/commonMain/kotlin/io/spherelabs/system/ui/randompassword/ColorizedPassword.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/system/ui/src/commonMain/kotlin/io/spherelabs/system/ui/randompassword/ColorizedPassword.kt -------------------------------------------------------------------------------- /core/system/ui/src/commonMain/kotlin/io/spherelabs/system/ui/shimmer/Shimmer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/system/ui/src/commonMain/kotlin/io/spherelabs/system/ui/shimmer/Shimmer.kt -------------------------------------------------------------------------------- /core/system/ui/src/commonMain/kotlin/io/spherelabs/system/ui/shimmer/ShimmerArea.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/system/ui/src/commonMain/kotlin/io/spherelabs/system/ui/shimmer/ShimmerArea.kt -------------------------------------------------------------------------------- /core/system/ui/src/commonMain/kotlin/io/spherelabs/system/ui/shimmer/ShimmerBounds.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/system/ui/src/commonMain/kotlin/io/spherelabs/system/ui/shimmer/ShimmerBounds.kt -------------------------------------------------------------------------------- /core/system/ui/src/commonMain/kotlin/io/spherelabs/system/ui/shimmer/ShimmerEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/system/ui/src/commonMain/kotlin/io/spherelabs/system/ui/shimmer/ShimmerEffect.kt -------------------------------------------------------------------------------- /core/system/ui/src/commonMain/kotlin/io/spherelabs/system/ui/shimmer/ShimmerModifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/system/ui/src/commonMain/kotlin/io/spherelabs/system/ui/shimmer/ShimmerModifier.kt -------------------------------------------------------------------------------- /core/system/ui/src/commonMain/kotlin/io/spherelabs/system/ui/shimmer/ShimmerTheme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/system/ui/src/commonMain/kotlin/io/spherelabs/system/ui/shimmer/ShimmerTheme.kt -------------------------------------------------------------------------------- /core/system/ui/src/commonMain/kotlin/io/spherelabs/system/ui/shimmer/ShimmerWindowBounds.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/system/ui/src/commonMain/kotlin/io/spherelabs/system/ui/shimmer/ShimmerWindowBounds.kt -------------------------------------------------------------------------------- /core/system/ui/src/iosMain/kotlin/io/spherelabs/system/ui/shimmer/ShimmerBounds.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/system/ui/src/iosMain/kotlin/io/spherelabs/system/ui/shimmer/ShimmerBounds.ios.kt -------------------------------------------------------------------------------- /core/validation/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/validation/build.gradle.kts -------------------------------------------------------------------------------- /core/validation/src/commonMain/kotlin/io/spherelabs/validation/EmailValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/validation/src/commonMain/kotlin/io/spherelabs/validation/EmailValidation.kt -------------------------------------------------------------------------------- /core/validation/src/commonMain/kotlin/io/spherelabs/validation/KeyPasswordValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/validation/src/commonMain/kotlin/io/spherelabs/validation/KeyPasswordValidation.kt -------------------------------------------------------------------------------- /core/validation/src/commonMain/kotlin/io/spherelabs/validation/NameValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/validation/src/commonMain/kotlin/io/spherelabs/validation/NameValidation.kt -------------------------------------------------------------------------------- /core/validation/src/commonMain/kotlin/io/spherelabs/validation/PasswordValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/validation/src/commonMain/kotlin/io/spherelabs/validation/PasswordValidation.kt -------------------------------------------------------------------------------- /core/validation/src/commonMain/kotlin/io/spherelabs/validation/WebsiteValidation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/validation/src/commonMain/kotlin/io/spherelabs/validation/WebsiteValidation.kt -------------------------------------------------------------------------------- /core/validation/src/commonMain/kotlin/io/spherelabs/validation/di/Koin.validation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/core/validation/src/commonMain/kotlin/io/spherelabs/validation/di/Koin.validation.kt -------------------------------------------------------------------------------- /data/authManager/authManager.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/authManager/authManager.podspec -------------------------------------------------------------------------------- /data/authManager/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/authManager/build.gradle.kts -------------------------------------------------------------------------------- /data/authManager/src/androidMain/kotlin/io/spherelabs/firebase/FirebaseAuthManager.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/authManager/src/androidMain/kotlin/io/spherelabs/firebase/FirebaseAuthManager.android.kt -------------------------------------------------------------------------------- /data/authManager/src/androidMain/kotlin/io/spherelabs/firebase/di/Koin.firebase.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/authManager/src/androidMain/kotlin/io/spherelabs/firebase/di/Koin.firebase.android.kt -------------------------------------------------------------------------------- /data/authManager/src/commonMain/kotlin/io/spherelabs/firebase/FirebaseAuthManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/authManager/src/commonMain/kotlin/io/spherelabs/firebase/FirebaseAuthManager.kt -------------------------------------------------------------------------------- /data/authManager/src/commonMain/kotlin/io/spherelabs/firebase/di/Koin.firebase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/authManager/src/commonMain/kotlin/io/spherelabs/firebase/di/Koin.firebase.kt -------------------------------------------------------------------------------- /data/authManager/src/iosMain/kotlin/io/spherelabs/firebase/FirebaseAuthManager.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/authManager/src/iosMain/kotlin/io/spherelabs/firebase/FirebaseAuthManager.ios.kt -------------------------------------------------------------------------------- /data/authManager/src/iosMain/kotlin/io/spherelabs/firebase/di/Koin.firebase.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/authManager/src/iosMain/kotlin/io/spherelabs/firebase/di/Koin.firebase.ios.kt -------------------------------------------------------------------------------- /data/local/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/build.gradle.kts -------------------------------------------------------------------------------- /data/local/src/androidMain/kotlin/io/spherelabs/data/local/db/DriverFactory.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/androidMain/kotlin/io/spherelabs/data/local/db/DriverFactory.android.kt -------------------------------------------------------------------------------- /data/local/src/androidMain/kotlin/io/spherelabs/data/local/di/Koin.local.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/androidMain/kotlin/io/spherelabs/data/local/di/Koin.local.android.kt -------------------------------------------------------------------------------- /data/local/src/androidUnitTest/kotlin/io/spherelabs/data/local/TestDriverFactory.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/androidUnitTest/kotlin/io/spherelabs/data/local/TestDriverFactory.android.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/Category.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/Category.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/CategoryAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/CategoryAdapter.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/CategoryDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/CategoryDao.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/DriverFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/DriverFactory.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/PasswordDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/PasswordDao.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/PasswordHistoryDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/PasswordHistoryDao.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/UserDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/UserDao.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/adapter/OtpDigitColumnAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/adapter/OtpDigitColumnAdapter.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/adapter/OtpDurationColumnAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/adapter/OtpDurationColumnAdapter.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/adapter/OtpTypeColumnAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/adapter/OtpTypeColumnAdapter.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/otp/AlgorithmTypeEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/otp/AlgorithmTypeEntity.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/otp/OtpDigitEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/otp/OtpDigitEntity.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/otp/OtpDurationEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/otp/OtpDurationEntity.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/otp/dao/CounterDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/otp/dao/CounterDao.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/otp/dao/OtpDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/db/otp/dao/OtpDao.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/di/Koin.local.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/di/Koin.local.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/extension/PasswordExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/extension/PasswordExtension.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/extension/QueriesExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/extension/QueriesExtension.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/mapper/CategoryMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/mapper/CategoryMapper.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/mapper/CounterMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/mapper/CounterMapper.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/mapper/OtpMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/mapper/OtpMapper.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/mapper/PasswordHistoryMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/mapper/PasswordHistoryMapper.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/mapper/PasswordMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/mapper/PasswordMapper.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/mapper/UserMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/mapper/UserMapper.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/repository/DefaultAccountRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/repository/DefaultAccountRepository.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/repository/DefaultAddNewPasswordRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/repository/DefaultAddNewPasswordRepository.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/repository/DefaultAuthenticatorRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/repository/DefaultAuthenticatorRepository.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/repository/DefaultGeneratePasswordRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/repository/DefaultGeneratePasswordRepository.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/repository/DefaultHomeRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/repository/DefaultHomeRepository.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/repository/DefaultNewTokenRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/repository/DefaultNewTokenRepository.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/repository/DefaultPasswordHealthRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/repository/DefaultPasswordHealthRepository.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/kotlin/io/spherelabs/data/local/repository/DefaultPasswordHistoryRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/kotlin/io/spherelabs/data/local/repository/DefaultPasswordHistoryRepository.kt -------------------------------------------------------------------------------- /data/local/src/commonMain/resources/MR/files/locker.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/resources/MR/files/locker.db -------------------------------------------------------------------------------- /data/local/src/commonMain/sqldelight/io/spherelabs/local/db/Category.sq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/sqldelight/io/spherelabs/local/db/Category.sq -------------------------------------------------------------------------------- /data/local/src/commonMain/sqldelight/io/spherelabs/local/db/Counter.sq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/sqldelight/io/spherelabs/local/db/Counter.sq -------------------------------------------------------------------------------- /data/local/src/commonMain/sqldelight/io/spherelabs/local/db/Otp.sq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/sqldelight/io/spherelabs/local/db/Otp.sq -------------------------------------------------------------------------------- /data/local/src/commonMain/sqldelight/io/spherelabs/local/db/Password.sq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/sqldelight/io/spherelabs/local/db/Password.sq -------------------------------------------------------------------------------- /data/local/src/commonMain/sqldelight/io/spherelabs/local/db/PasswordHistory.sq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/sqldelight/io/spherelabs/local/db/PasswordHistory.sq -------------------------------------------------------------------------------- /data/local/src/commonMain/sqldelight/io/spherelabs/local/db/Pragma.sq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/sqldelight/io/spherelabs/local/db/Pragma.sq -------------------------------------------------------------------------------- /data/local/src/commonMain/sqldelight/io/spherelabs/local/db/User.sq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonMain/sqldelight/io/spherelabs/local/db/User.sq -------------------------------------------------------------------------------- /data/local/src/commonTest/kotlin/io/spherelabs/data/local/AccountRepositoryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonTest/kotlin/io/spherelabs/data/local/AccountRepositoryTest.kt -------------------------------------------------------------------------------- /data/local/src/commonTest/kotlin/io/spherelabs/data/local/PasswordDaoTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonTest/kotlin/io/spherelabs/data/local/PasswordDaoTest.kt -------------------------------------------------------------------------------- /data/local/src/commonTest/kotlin/io/spherelabs/data/local/TestDriverFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonTest/kotlin/io/spherelabs/data/local/TestDriverFactory.kt -------------------------------------------------------------------------------- /data/local/src/commonTest/kotlin/io/spherelabs/data/local/UserDaoTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonTest/kotlin/io/spherelabs/data/local/UserDaoTest.kt -------------------------------------------------------------------------------- /data/local/src/commonTest/kotlin/io/spherelabs/data/local/dao/CounterDaoTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonTest/kotlin/io/spherelabs/data/local/dao/CounterDaoTest.kt -------------------------------------------------------------------------------- /data/local/src/commonTest/kotlin/io/spherelabs/data/local/dao/OtpDaoTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonTest/kotlin/io/spherelabs/data/local/dao/OtpDaoTest.kt -------------------------------------------------------------------------------- /data/local/src/commonTest/kotlin/io/spherelabs/data/local/dao/PasswordHistoryDaoTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonTest/kotlin/io/spherelabs/data/local/dao/PasswordHistoryDaoTest.kt -------------------------------------------------------------------------------- /data/local/src/commonTest/kotlin/io/spherelabs/data/local/enum/OtpDigitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonTest/kotlin/io/spherelabs/data/local/enum/OtpDigitTest.kt -------------------------------------------------------------------------------- /data/local/src/commonTest/kotlin/io/spherelabs/data/local/enum/OtpDurationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonTest/kotlin/io/spherelabs/data/local/enum/OtpDurationTest.kt -------------------------------------------------------------------------------- /data/local/src/commonTest/kotlin/io/spherelabs/data/local/enum/OtpTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonTest/kotlin/io/spherelabs/data/local/enum/OtpTypeTest.kt -------------------------------------------------------------------------------- /data/local/src/commonTest/kotlin/io/spherelabs/data/local/extension/CalculationPasswordHealthTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonTest/kotlin/io/spherelabs/data/local/extension/CalculationPasswordHealthTest.kt -------------------------------------------------------------------------------- /data/local/src/commonTest/kotlin/io/spherelabs/data/local/extension/ReusedPasswordTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonTest/kotlin/io/spherelabs/data/local/extension/ReusedPasswordTest.kt -------------------------------------------------------------------------------- /data/local/src/commonTest/kotlin/io/spherelabs/data/local/extension/StrongAndWeakPasswordTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonTest/kotlin/io/spherelabs/data/local/extension/StrongAndWeakPasswordTest.kt -------------------------------------------------------------------------------- /data/local/src/commonTest/kotlin/io/spherelabs/data/local/faker/Faker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonTest/kotlin/io/spherelabs/data/local/faker/Faker.kt -------------------------------------------------------------------------------- /data/local/src/commonTest/kotlin/io/spherelabs/data/local/repository/AuthenticatorRepositoryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonTest/kotlin/io/spherelabs/data/local/repository/AuthenticatorRepositoryTest.kt -------------------------------------------------------------------------------- /data/local/src/commonTest/kotlin/io/spherelabs/data/local/repository/NewTokenRepositoryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonTest/kotlin/io/spherelabs/data/local/repository/NewTokenRepositoryTest.kt -------------------------------------------------------------------------------- /data/local/src/commonTest/kotlin/io/spherelabs/data/local/usecase/GetRealTimeOneTimePasswordTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/commonTest/kotlin/io/spherelabs/data/local/usecase/GetRealTimeOneTimePasswordTest.kt -------------------------------------------------------------------------------- /data/local/src/iosMain/kotlin/io/spherelabs/data/local/db/DriverFactory.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/iosMain/kotlin/io/spherelabs/data/local/db/DriverFactory.ios.kt -------------------------------------------------------------------------------- /data/local/src/iosMain/kotlin/io/spherelabs/data/local/di/Koin.local.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/iosMain/kotlin/io/spherelabs/data/local/di/Koin.local.ios.kt -------------------------------------------------------------------------------- /data/local/src/iosTest/kotlin/io.spherelabs.data.local/TestDriverFactory.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/local/src/iosTest/kotlin/io.spherelabs.data.local/TestDriverFactory.ios.kt -------------------------------------------------------------------------------- /data/prefs/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/prefs/build.gradle.kts -------------------------------------------------------------------------------- /data/prefs/src/androidMain/kotlin/io/spherelabs/data/settings/di/Koin.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/prefs/src/androidMain/kotlin/io/spherelabs/data/settings/di/Koin.android.kt -------------------------------------------------------------------------------- /data/prefs/src/androidMain/kotlin/io/spherelabs/data/settings/keypassword/EncryptedSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/prefs/src/androidMain/kotlin/io/spherelabs/data/settings/keypassword/EncryptedSettings.kt -------------------------------------------------------------------------------- /data/prefs/src/commonMain/kotlin/io/spherelabs/data/settings/di/Koin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/prefs/src/commonMain/kotlin/io/spherelabs/data/settings/di/Koin.kt -------------------------------------------------------------------------------- /data/prefs/src/commonMain/kotlin/io/spherelabs/data/settings/fingerprint/FingerPrintSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/prefs/src/commonMain/kotlin/io/spherelabs/data/settings/fingerprint/FingerPrintSetting.kt -------------------------------------------------------------------------------- /data/prefs/src/commonMain/kotlin/io/spherelabs/data/settings/keypassword/MasterPasswordSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/prefs/src/commonMain/kotlin/io/spherelabs/data/settings/keypassword/MasterPasswordSetting.kt -------------------------------------------------------------------------------- /data/prefs/src/commonMain/kotlin/io/spherelabs/data/settings/onboarding/OnboardingSetting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/prefs/src/commonMain/kotlin/io/spherelabs/data/settings/onboarding/OnboardingSetting.kt -------------------------------------------------------------------------------- /data/prefs/src/commonMain/kotlin/io/spherelabs/data/settings/repository/ChangePasswordRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/prefs/src/commonMain/kotlin/io/spherelabs/data/settings/repository/ChangePasswordRepository.kt -------------------------------------------------------------------------------- /data/prefs/src/commonMain/kotlin/io/spherelabs/data/settings/screenshot/RestrictScreenshotSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/prefs/src/commonMain/kotlin/io/spherelabs/data/settings/screenshot/RestrictScreenshotSettings.kt -------------------------------------------------------------------------------- /data/prefs/src/iosMain/kotlin/io/spherelabs/data/settings/di/Koin.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/prefs/src/iosMain/kotlin/io/spherelabs/data/settings/di/Koin.ios.kt -------------------------------------------------------------------------------- /data/prefs/src/iosMain/kotlin/io/spherelabs/data/settings/keypassword/EncryptedSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/data/prefs/src/iosMain/kotlin/io/spherelabs/data/settings/keypassword/EncryptedSettings.kt -------------------------------------------------------------------------------- /features/account/account-api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-api/build.gradle.kts -------------------------------------------------------------------------------- /features/account/account-api/src/commonMain/kotlin/io/spherelabs/accountapi/domain/repository/AccountRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-api/src/commonMain/kotlin/io/spherelabs/accountapi/domain/repository/AccountRepository.kt -------------------------------------------------------------------------------- /features/account/account-api/src/commonMain/kotlin/io/spherelabs/accountapi/domain/usecase/GetFingerPrintUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-api/src/commonMain/kotlin/io/spherelabs/accountapi/domain/usecase/GetFingerPrintUseCase.kt -------------------------------------------------------------------------------- /features/account/account-api/src/commonMain/kotlin/io/spherelabs/accountapi/domain/usecase/GetTotalPasswordUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-api/src/commonMain/kotlin/io/spherelabs/accountapi/domain/usecase/GetTotalPasswordUseCase.kt -------------------------------------------------------------------------------- /features/account/account-api/src/commonMain/kotlin/io/spherelabs/accountapi/domain/usecase/GetUserUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-api/src/commonMain/kotlin/io/spherelabs/accountapi/domain/usecase/GetUserUseCase.kt -------------------------------------------------------------------------------- /features/account/account-api/src/commonMain/kotlin/io/spherelabs/accountapi/domain/usecase/LogoutUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-api/src/commonMain/kotlin/io/spherelabs/accountapi/domain/usecase/LogoutUseCase.kt -------------------------------------------------------------------------------- /features/account/account-api/src/commonMain/kotlin/io/spherelabs/accountapi/domain/usecase/OpenUrlUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-api/src/commonMain/kotlin/io/spherelabs/accountapi/domain/usecase/OpenUrlUseCase.kt -------------------------------------------------------------------------------- /features/account/account-api/src/commonMain/kotlin/io/spherelabs/accountapi/domain/usecase/SetFingerPrintUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-api/src/commonMain/kotlin/io/spherelabs/accountapi/domain/usecase/SetFingerPrintUseCase.kt -------------------------------------------------------------------------------- /features/account/account-api/src/commonMain/kotlin/io/spherelabs/accountapi/model/AccountUser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-api/src/commonMain/kotlin/io/spherelabs/accountapi/model/AccountUser.kt -------------------------------------------------------------------------------- /features/account/account-di/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-di/build.gradle.kts -------------------------------------------------------------------------------- /features/account/account-di/src/androidMain/kotlin/io/spherelabs/accountdi/Koin.account.domain.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-di/src/androidMain/kotlin/io/spherelabs/accountdi/Koin.account.domain.android.kt -------------------------------------------------------------------------------- /features/account/account-di/src/commonMain/kotlin/io/spherelabs/accountdi/Koin.account.domain.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-di/src/commonMain/kotlin/io/spherelabs/accountdi/Koin.account.domain.kt -------------------------------------------------------------------------------- /features/account/account-di/src/commonMain/kotlin/io/spherelabs/accountdi/Koin.account.presentation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-di/src/commonMain/kotlin/io/spherelabs/accountdi/Koin.account.presentation.kt -------------------------------------------------------------------------------- /features/account/account-di/src/commonMain/kotlin/io/spherelabs/accountdi/Voyager.account.ui.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-di/src/commonMain/kotlin/io/spherelabs/accountdi/Voyager.account.ui.kt -------------------------------------------------------------------------------- /features/account/account-di/src/iosMain/kotlin/io/spherelabs/accountdi/Koin.account.domain.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-di/src/iosMain/kotlin/io/spherelabs/accountdi/Koin.account.domain.ios.kt -------------------------------------------------------------------------------- /features/account/account-impl/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-impl/build.gradle.kts -------------------------------------------------------------------------------- /features/account/account-impl/src/androidUnitTest/kotlin/AccountUseCaseDomainArchitectureTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-impl/src/androidUnitTest/kotlin/AccountUseCaseDomainArchitectureTest.kt -------------------------------------------------------------------------------- /features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/domain/AccountFacadeManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/domain/AccountFacadeManager.kt -------------------------------------------------------------------------------- /features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/domain/DefaultGetFingerPrintUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/domain/DefaultGetFingerPrintUseCase.kt -------------------------------------------------------------------------------- /features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/domain/DefaultGetTotalPasswordUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/domain/DefaultGetTotalPasswordUseCase.kt -------------------------------------------------------------------------------- /features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/domain/DefaultGetUserUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/domain/DefaultGetUserUseCase.kt -------------------------------------------------------------------------------- /features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/domain/DefaultLogoutUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/domain/DefaultLogoutUseCase.kt -------------------------------------------------------------------------------- /features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/domain/DefaultOpenUrlUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/domain/DefaultOpenUrlUseCase.kt -------------------------------------------------------------------------------- /features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/domain/DefaultSetFingerPrintUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/domain/DefaultSetFingerPrintUseCase.kt -------------------------------------------------------------------------------- /features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/domain/model/AllPasswords.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/domain/model/AllPasswords.kt -------------------------------------------------------------------------------- /features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/presentation/AccountEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/presentation/AccountEffect.kt -------------------------------------------------------------------------------- /features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/presentation/AccountMiddleware.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/presentation/AccountMiddleware.kt -------------------------------------------------------------------------------- /features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/presentation/AccountReducer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/presentation/AccountReducer.kt -------------------------------------------------------------------------------- /features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/presentation/AccountState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/presentation/AccountState.kt -------------------------------------------------------------------------------- /features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/presentation/AccountViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/presentation/AccountViewModel.kt -------------------------------------------------------------------------------- /features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/presentation/AccountWish.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/presentation/AccountWish.kt -------------------------------------------------------------------------------- /features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/ui/AccountContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/ui/AccountContent.kt -------------------------------------------------------------------------------- /features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/ui/AccountScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/ui/AccountScreen.kt -------------------------------------------------------------------------------- /features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/ui/component/ChangePassword.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/ui/component/ChangePassword.kt -------------------------------------------------------------------------------- /features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/ui/component/FingerPrint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/ui/component/FingerPrint.kt -------------------------------------------------------------------------------- /features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/ui/component/LogOut.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/ui/component/LogOut.kt -------------------------------------------------------------------------------- /features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/ui/component/RestrictScreenshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/ui/component/RestrictScreenshot.kt -------------------------------------------------------------------------------- /features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/ui/component/SendFeedback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/account/account-impl/src/commonMain/kotlin/io/spherelabs/accountimpl/ui/component/SendFeedback.kt -------------------------------------------------------------------------------- /features/addnewpassword/addnewpassword-api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/addnewpassword/addnewpassword-api/build.gradle.kts -------------------------------------------------------------------------------- /features/addnewpassword/addnewpassword-api/src/commonMain/kotlin/io/spherelabs/addnewpasswordapi/model/Category.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/addnewpassword/addnewpassword-api/src/commonMain/kotlin/io/spherelabs/addnewpasswordapi/model/Category.kt -------------------------------------------------------------------------------- /features/addnewpassword/addnewpassword-di/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/addnewpassword/addnewpassword-di/build.gradle.kts -------------------------------------------------------------------------------- /features/addnewpassword/addnewpassword-impl/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/addnewpassword/addnewpassword-impl/build.gradle.kts -------------------------------------------------------------------------------- /features/addnewpassword/addnewpassword-impl/src/androidUnitTest/kotlin/AddNewPasswordUseCaseDomainArchitectureTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/addnewpassword/addnewpassword-impl/src/androidUnitTest/kotlin/AddNewPasswordUseCaseDomainArchitectureTest.kt -------------------------------------------------------------------------------- /features/auth/auth-api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-api/build.gradle.kts -------------------------------------------------------------------------------- /features/auth/auth-api/src/commonMain/kotlin/io/spherelabs/authapi/domain/usecase/CreateEmailAndPassword.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-api/src/commonMain/kotlin/io/spherelabs/authapi/domain/usecase/CreateEmailAndPassword.kt -------------------------------------------------------------------------------- /features/auth/auth-api/src/commonMain/kotlin/io/spherelabs/authapi/domain/usecase/HasCurrentUserExist.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-api/src/commonMain/kotlin/io/spherelabs/authapi/domain/usecase/HasCurrentUserExist.kt -------------------------------------------------------------------------------- /features/auth/auth-api/src/commonMain/kotlin/io/spherelabs/authapi/domain/usecase/InsertUserUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-api/src/commonMain/kotlin/io/spherelabs/authapi/domain/usecase/InsertUserUseCase.kt -------------------------------------------------------------------------------- /features/auth/auth-api/src/commonMain/kotlin/io/spherelabs/authapi/domain/usecase/SignInWithEmailAndPassword.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-api/src/commonMain/kotlin/io/spherelabs/authapi/domain/usecase/SignInWithEmailAndPassword.kt -------------------------------------------------------------------------------- /features/auth/auth-api/src/commonMain/kotlin/io/spherelabs/authapi/model/AuthenticationResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-api/src/commonMain/kotlin/io/spherelabs/authapi/model/AuthenticationResult.kt -------------------------------------------------------------------------------- /features/auth/auth-di/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-di/build.gradle.kts -------------------------------------------------------------------------------- /features/auth/auth-di/src/commonMain/kotlin/io/spherelabs/authdi/Koin.auth.domain.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-di/src/commonMain/kotlin/io/spherelabs/authdi/Koin.auth.domain.kt -------------------------------------------------------------------------------- /features/auth/auth-di/src/commonMain/kotlin/io/spherelabs/authdi/Koin.auth.presentation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-di/src/commonMain/kotlin/io/spherelabs/authdi/Koin.auth.presentation.kt -------------------------------------------------------------------------------- /features/auth/auth-di/src/commonMain/kotlin/io/spherelabs/authdi/Voyager.auth.ui.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-di/src/commonMain/kotlin/io/spherelabs/authdi/Voyager.auth.ui.kt -------------------------------------------------------------------------------- /features/auth/auth-impl/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-impl/build.gradle.kts -------------------------------------------------------------------------------- /features/auth/auth-impl/src/androidUnitTest/kotlin/AuthUseCaseDomainArchitectureTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-impl/src/androidUnitTest/kotlin/AuthUseCaseDomainArchitectureTest.kt -------------------------------------------------------------------------------- /features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/domain/DefaultCreateEmailAndPasswordUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/domain/DefaultCreateEmailAndPasswordUseCase.kt -------------------------------------------------------------------------------- /features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/domain/DefaultHasCurrentUserExistUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/domain/DefaultHasCurrentUserExistUseCase.kt -------------------------------------------------------------------------------- /features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/domain/DefaultInsertUserUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/domain/DefaultInsertUserUseCase.kt -------------------------------------------------------------------------------- /features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/domain/DefaultSetKeyPasswordUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/domain/DefaultSetKeyPasswordUseCase.kt -------------------------------------------------------------------------------- /features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signin/SignInEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signin/SignInEffect.kt -------------------------------------------------------------------------------- /features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signin/SignInMiddleware.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signin/SignInMiddleware.kt -------------------------------------------------------------------------------- /features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signin/SignInReducer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signin/SignInReducer.kt -------------------------------------------------------------------------------- /features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signin/SignInState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signin/SignInState.kt -------------------------------------------------------------------------------- /features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signin/SignInValidateMiddleware.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signin/SignInValidateMiddleware.kt -------------------------------------------------------------------------------- /features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signin/SignInViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signin/SignInViewModel.kt -------------------------------------------------------------------------------- /features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signin/SignInWish.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signin/SignInWish.kt -------------------------------------------------------------------------------- /features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signup/SignUpEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signup/SignUpEffect.kt -------------------------------------------------------------------------------- /features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signup/SignUpMiddleware.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signup/SignUpMiddleware.kt -------------------------------------------------------------------------------- /features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signup/SignUpReducer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signup/SignUpReducer.kt -------------------------------------------------------------------------------- /features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signup/SignUpState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signup/SignUpState.kt -------------------------------------------------------------------------------- /features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signup/SignUpValidateMiddleware.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signup/SignUpValidateMiddleware.kt -------------------------------------------------------------------------------- /features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signup/SignUpViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signup/SignUpViewModel.kt -------------------------------------------------------------------------------- /features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signup/SignUpWish.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/presentation/signup/SignUpWish.kt -------------------------------------------------------------------------------- /features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/ui/SignInScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/ui/SignInScreen.kt -------------------------------------------------------------------------------- /features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/ui/SignUpScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/auth/auth-impl/src/commonMain/kotlin/io/spherelabs/authimpl/ui/SignUpScreen.kt -------------------------------------------------------------------------------- /features/authenticator/authenticator-api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/authenticator/authenticator-api/build.gradle.kts -------------------------------------------------------------------------------- /features/authenticator/authenticator-api/src/commonMain/kotlin/io/spherelabs/authenticatorapi/model/CounterDomain.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/authenticator/authenticator-api/src/commonMain/kotlin/io/spherelabs/authenticatorapi/model/CounterDomain.kt -------------------------------------------------------------------------------- /features/authenticator/authenticator-api/src/commonMain/kotlin/io/spherelabs/authenticatorapi/model/OtpDomain.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/authenticator/authenticator-api/src/commonMain/kotlin/io/spherelabs/authenticatorapi/model/OtpDomain.kt -------------------------------------------------------------------------------- /features/authenticator/authenticator-di/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/authenticator/authenticator-di/build.gradle.kts -------------------------------------------------------------------------------- /features/authenticator/authenticator-impl/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/authenticator/authenticator-impl/build.gradle.kts -------------------------------------------------------------------------------- /features/authenticator/authenticator-impl/src/commonMain/kotlin/io/spherelabs/authenticatorimpl/mapper/OtpMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/authenticator/authenticator-impl/src/commonMain/kotlin/io/spherelabs/authenticatorimpl/mapper/OtpMapper.kt -------------------------------------------------------------------------------- /features/changepassword/changepassword-api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/changepassword/changepassword-api/build.gradle.kts -------------------------------------------------------------------------------- /features/changepassword/changepassword-di/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/changepassword/changepassword-di/build.gradle.kts -------------------------------------------------------------------------------- /features/changepassword/changepassword-impl/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/changepassword/changepassword-impl/build.gradle.kts -------------------------------------------------------------------------------- /features/generatepassword/generatepassword-api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/generatepassword/generatepassword-api/build.gradle.kts -------------------------------------------------------------------------------- /features/generatepassword/generatepassword-di/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/generatepassword/generatepassword-di/build.gradle.kts -------------------------------------------------------------------------------- /features/generatepassword/generatepassword-impl/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/generatepassword/generatepassword-impl/build.gradle.kts -------------------------------------------------------------------------------- /features/help/help-api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-api/build.gradle.kts -------------------------------------------------------------------------------- /features/help/help-api/src/commonMain/kotlin/io/spherelabs/domain/usecase/GetFAQsUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-api/src/commonMain/kotlin/io/spherelabs/domain/usecase/GetFAQsUseCase.kt -------------------------------------------------------------------------------- /features/help/help-api/src/commonMain/kotlin/io/spherelabs/model/FAQ.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-api/src/commonMain/kotlin/io/spherelabs/model/FAQ.kt -------------------------------------------------------------------------------- /features/help/help-di/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-di/build.gradle.kts -------------------------------------------------------------------------------- /features/help/help-di/src/commonMain/kotlin/io/spherelabs/help/Koin.help.domain.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-di/src/commonMain/kotlin/io/spherelabs/help/Koin.help.domain.kt -------------------------------------------------------------------------------- /features/help/help-di/src/commonMain/kotlin/io/spherelabs/help/Koin.help.presentation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-di/src/commonMain/kotlin/io/spherelabs/help/Koin.help.presentation.kt -------------------------------------------------------------------------------- /features/help/help-di/src/commonMain/kotlin/io/spherelabs/help/Koin.help.store.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-di/src/commonMain/kotlin/io/spherelabs/help/Koin.help.store.kt -------------------------------------------------------------------------------- /features/help/help-di/src/commonMain/kotlin/io/spherelabs/help/Voyager.help.ui.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-di/src/commonMain/kotlin/io/spherelabs/help/Voyager.help.ui.kt -------------------------------------------------------------------------------- /features/help/help-impl/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-impl/build.gradle.kts -------------------------------------------------------------------------------- /features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/domain/DefaultGetFAQsUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/domain/DefaultGetFAQsUseCase.kt -------------------------------------------------------------------------------- /features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/domain/mapper/FAQs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/domain/mapper/FAQs.kt -------------------------------------------------------------------------------- /features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/presentation/HelpEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/presentation/HelpEffect.kt -------------------------------------------------------------------------------- /features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/presentation/HelpMiddleware.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/presentation/HelpMiddleware.kt -------------------------------------------------------------------------------- /features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/presentation/HelpReducer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/presentation/HelpReducer.kt -------------------------------------------------------------------------------- /features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/presentation/HelpState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/presentation/HelpState.kt -------------------------------------------------------------------------------- /features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/presentation/HelpViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/presentation/HelpViewModel.kt -------------------------------------------------------------------------------- /features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/presentation/HelpWish.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/presentation/HelpWish.kt -------------------------------------------------------------------------------- /features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/ui/HelpContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/ui/HelpContent.kt -------------------------------------------------------------------------------- /features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/ui/HelpScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/ui/HelpScreen.kt -------------------------------------------------------------------------------- /features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/ui/component/ContactSupport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/ui/component/ContactSupport.kt -------------------------------------------------------------------------------- /features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/ui/component/ExpandableCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/ui/component/ExpandableCard.kt -------------------------------------------------------------------------------- /features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/ui/component/ExpandableCardDefaults.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-impl/src/commonMain/kotlin/io/spherelabs/help/ui/component/ExpandableCardDefaults.kt -------------------------------------------------------------------------------- /features/help/help-store/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-store/build.gradle.kts -------------------------------------------------------------------------------- /features/help/help-store/src/commonMain/kotlin/io/spherelabs/helpstore/AskedQuestions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-store/src/commonMain/kotlin/io/spherelabs/helpstore/AskedQuestions.kt -------------------------------------------------------------------------------- /features/help/help-store/src/commonMain/kotlin/io/spherelabs/helpstore/HelpStoreManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/help/help-store/src/commonMain/kotlin/io/spherelabs/helpstore/HelpStoreManager.kt -------------------------------------------------------------------------------- /features/home/home-api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-api/build.gradle.kts -------------------------------------------------------------------------------- /features/home/home-api/src/commonMain/kotlin/io/spherelabs/homeapi/domain/usecase/GetCategoriesUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-api/src/commonMain/kotlin/io/spherelabs/homeapi/domain/usecase/GetCategoriesUseCase.kt -------------------------------------------------------------------------------- /features/home/home-api/src/commonMain/kotlin/io/spherelabs/homeapi/domain/usecase/GetPasswordsByCategoryUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-api/src/commonMain/kotlin/io/spherelabs/homeapi/domain/usecase/GetPasswordsByCategoryUseCase.kt -------------------------------------------------------------------------------- /features/home/home-api/src/commonMain/kotlin/io/spherelabs/homeapi/models/HomeCategory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-api/src/commonMain/kotlin/io/spherelabs/homeapi/models/HomeCategory.kt -------------------------------------------------------------------------------- /features/home/home-api/src/commonMain/kotlin/io/spherelabs/homeapi/models/HomePassword.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-api/src/commonMain/kotlin/io/spherelabs/homeapi/models/HomePassword.kt -------------------------------------------------------------------------------- /features/home/home-api/src/commonMain/kotlin/io/spherelabs/homeapi/repository/HomeRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-api/src/commonMain/kotlin/io/spherelabs/homeapi/repository/HomeRepository.kt -------------------------------------------------------------------------------- /features/home/home-di/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-di/build.gradle.kts -------------------------------------------------------------------------------- /features/home/home-di/src/commonMain/kotlin/io/spherelabs/homedi/Koin.home.domain.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-di/src/commonMain/kotlin/io/spherelabs/homedi/Koin.home.domain.kt -------------------------------------------------------------------------------- /features/home/home-di/src/commonMain/kotlin/io/spherelabs/homedi/Koin.home.presentation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-di/src/commonMain/kotlin/io/spherelabs/homedi/Koin.home.presentation.kt -------------------------------------------------------------------------------- /features/home/home-di/src/commonMain/kotlin/io/spherelabs/homedi/Voyager.home.ui.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-di/src/commonMain/kotlin/io/spherelabs/homedi/Voyager.home.ui.kt -------------------------------------------------------------------------------- /features/home/home-impl/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-impl/build.gradle.kts -------------------------------------------------------------------------------- /features/home/home-impl/src/androidUnitTest/kotlin/HomeUseCaseDomainArchitectureTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-impl/src/androidUnitTest/kotlin/HomeUseCaseDomainArchitectureTest.kt -------------------------------------------------------------------------------- /features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/domain/DefaultGetCategoriesUseCas.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/domain/DefaultGetCategoriesUseCas.kt -------------------------------------------------------------------------------- /features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/domain/DefaultGetPasswordByCategoryUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/domain/DefaultGetPasswordByCategoryUseCase.kt -------------------------------------------------------------------------------- /features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/presentation/HomeEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/presentation/HomeEffect.kt -------------------------------------------------------------------------------- /features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/presentation/HomeMiddleware.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/presentation/HomeMiddleware.kt -------------------------------------------------------------------------------- /features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/presentation/HomeReducer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/presentation/HomeReducer.kt -------------------------------------------------------------------------------- /features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/presentation/HomeState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/presentation/HomeState.kt -------------------------------------------------------------------------------- /features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/presentation/HomeViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/presentation/HomeViewModel.kt -------------------------------------------------------------------------------- /features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/presentation/HomeWish.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/presentation/HomeWish.kt -------------------------------------------------------------------------------- /features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/presentation/UIHomeCategory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/presentation/UIHomeCategory.kt -------------------------------------------------------------------------------- /features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/presentation/UIHomePassword.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/presentation/UIHomePassword.kt -------------------------------------------------------------------------------- /features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/ui/HomeDefaults.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/ui/HomeDefaults.kt -------------------------------------------------------------------------------- /features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/ui/HomeScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/ui/HomeScreen.kt -------------------------------------------------------------------------------- /features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/ui/component/CategoryCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/ui/component/CategoryCard.kt -------------------------------------------------------------------------------- /features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/ui/component/HomeDrawer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/ui/component/HomeDrawer.kt -------------------------------------------------------------------------------- /features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/ui/component/HomeHeadline.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/ui/component/HomeHeadline.kt -------------------------------------------------------------------------------- /features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/ui/component/HomeIndicator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/ui/component/HomeIndicator.kt -------------------------------------------------------------------------------- /features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/ui/component/HomePager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/ui/component/HomePager.kt -------------------------------------------------------------------------------- /features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/ui/component/HomeTag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/ui/component/HomeTag.kt -------------------------------------------------------------------------------- /features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/ui/component/HomeTopBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/home/home-impl/src/commonMain/kotlin/io/spherelabs/homeimpl/ui/component/HomeTopBar.kt -------------------------------------------------------------------------------- /features/keypassword/keypassword-api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/keypassword/keypassword-api/build.gradle.kts -------------------------------------------------------------------------------- /features/keypassword/keypassword-di/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/keypassword/keypassword-di/build.gradle.kts -------------------------------------------------------------------------------- /features/keypassword/keypassword-di/src/commonMain/kotlin/io/spherelabs/passphrasedi/Koin.keypassword.domain.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/keypassword/keypassword-di/src/commonMain/kotlin/io/spherelabs/passphrasedi/Koin.keypassword.domain.kt -------------------------------------------------------------------------------- /features/keypassword/keypassword-di/src/commonMain/kotlin/io/spherelabs/passphrasedi/Voyager.keypassword.ui.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/keypassword/keypassword-di/src/commonMain/kotlin/io/spherelabs/passphrasedi/Voyager.keypassword.ui.kt -------------------------------------------------------------------------------- /features/keypassword/keypassword-impl/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/keypassword/keypassword-impl/build.gradle.kts -------------------------------------------------------------------------------- /features/keypassword/keypassword-impl/src/androidUnitTest/kotlin/KeyPasswordUseCaseDomainArchitectureTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/keypassword/keypassword-impl/src/androidUnitTest/kotlin/KeyPasswordUseCaseDomainArchitectureTest.kt -------------------------------------------------------------------------------- /features/keypassword/keypassword-impl/src/commonMain/kotlin/io/spherelabs/passphraseimpl/ui/KeyPasswordContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/keypassword/keypassword-impl/src/commonMain/kotlin/io/spherelabs/passphraseimpl/ui/KeyPasswordContent.kt -------------------------------------------------------------------------------- /features/keypassword/keypassword-impl/src/commonMain/kotlin/io/spherelabs/passphraseimpl/ui/KeyPasswordScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/keypassword/keypassword-impl/src/commonMain/kotlin/io/spherelabs/passphraseimpl/ui/KeyPasswordScreen.kt -------------------------------------------------------------------------------- /features/keypassword/keypassword-impl/src/commonMain/kotlin/io/spherelabs/passphraseimpl/ui/Keypads.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/keypassword/keypassword-impl/src/commonMain/kotlin/io/spherelabs/passphraseimpl/ui/Keypads.kt -------------------------------------------------------------------------------- /features/keypassword/keypassword-impl/src/commonTest/kotlin/MasterPasswordReducerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/keypassword/keypassword-impl/src/commonTest/kotlin/MasterPasswordReducerTest.kt -------------------------------------------------------------------------------- /features/navigation/navigation-api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/navigation/navigation-api/build.gradle.kts -------------------------------------------------------------------------------- /features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/AccountDestination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/AccountDestination.kt -------------------------------------------------------------------------------- /features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/AddNewPasswordDestination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/AddNewPasswordDestination.kt -------------------------------------------------------------------------------- /features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/AuthDestination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/AuthDestination.kt -------------------------------------------------------------------------------- /features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/AuthenticatorDestination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/AuthenticatorDestination.kt -------------------------------------------------------------------------------- /features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/ChangePasswordDestination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/ChangePasswordDestination.kt -------------------------------------------------------------------------------- /features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/GeneratePasswordDestination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/GeneratePasswordDestination.kt -------------------------------------------------------------------------------- /features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/HelpDestination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/HelpDestination.kt -------------------------------------------------------------------------------- /features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/HomeDestination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/HomeDestination.kt -------------------------------------------------------------------------------- /features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/KeyPasswordDestination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/KeyPasswordDestination.kt -------------------------------------------------------------------------------- /features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/NewTokenDestination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/NewTokenDestination.kt -------------------------------------------------------------------------------- /features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/OnboardingDestination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/OnboardingDestination.kt -------------------------------------------------------------------------------- /features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/PasswordHealthDestination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/PasswordHealthDestination.kt -------------------------------------------------------------------------------- /features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/PasswordHistoryDestination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/PasswordHistoryDestination.kt -------------------------------------------------------------------------------- /features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/core/Destination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/navigation/navigation-api/src/commonMain/kotlin/io/spherelabs/navigationapi/core/Destination.kt -------------------------------------------------------------------------------- /features/newtoken/newtoken-api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/newtoken/newtoken-api/build.gradle.kts -------------------------------------------------------------------------------- /features/newtoken/newtoken-api/src/commonMain/kotlin/io/spherelabs/newtokenapi/model/NewTokenDigit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/newtoken/newtoken-api/src/commonMain/kotlin/io/spherelabs/newtokenapi/model/NewTokenDigit.kt -------------------------------------------------------------------------------- /features/newtoken/newtoken-api/src/commonMain/kotlin/io/spherelabs/newtokenapi/model/NewTokenDomain.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/newtoken/newtoken-api/src/commonMain/kotlin/io/spherelabs/newtokenapi/model/NewTokenDomain.kt -------------------------------------------------------------------------------- /features/newtoken/newtoken-api/src/commonMain/kotlin/io/spherelabs/newtokenapi/model/NewTokenDuration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/newtoken/newtoken-api/src/commonMain/kotlin/io/spherelabs/newtokenapi/model/NewTokenDuration.kt -------------------------------------------------------------------------------- /features/newtoken/newtoken-api/src/commonMain/kotlin/io/spherelabs/newtokenapi/model/NewTokenType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/newtoken/newtoken-api/src/commonMain/kotlin/io/spherelabs/newtokenapi/model/NewTokenType.kt -------------------------------------------------------------------------------- /features/newtoken/newtoken-di/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/newtoken/newtoken-di/build.gradle.kts -------------------------------------------------------------------------------- /features/newtoken/newtoken-di/src/commonMain/kotlin/io/spherelabs/newtokendi/Koin.newtoken.domain.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/newtoken/newtoken-di/src/commonMain/kotlin/io/spherelabs/newtokendi/Koin.newtoken.domain.kt -------------------------------------------------------------------------------- /features/newtoken/newtoken-di/src/commonMain/kotlin/io/spherelabs/newtokendi/Koin.newtoken.presentation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/newtoken/newtoken-di/src/commonMain/kotlin/io/spherelabs/newtokendi/Koin.newtoken.presentation.kt -------------------------------------------------------------------------------- /features/newtoken/newtoken-di/src/commonMain/kotlin/io/spherelabs/newtokendi/Voyager.newtoken.ui.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/newtoken/newtoken-di/src/commonMain/kotlin/io/spherelabs/newtokendi/Voyager.newtoken.ui.kt -------------------------------------------------------------------------------- /features/newtoken/newtoken-impl/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/newtoken/newtoken-impl/build.gradle.kts -------------------------------------------------------------------------------- /features/newtoken/newtoken-impl/src/commonMain/kotlin/io/spherelabs/newtokenimpl/domain/DefaultInsertOtpWithCount.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/newtoken/newtoken-impl/src/commonMain/kotlin/io/spherelabs/newtokenimpl/domain/DefaultInsertOtpWithCount.kt -------------------------------------------------------------------------------- /features/newtoken/newtoken-impl/src/commonMain/kotlin/io/spherelabs/newtokenimpl/presentation/NewTokenEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/newtoken/newtoken-impl/src/commonMain/kotlin/io/spherelabs/newtokenimpl/presentation/NewTokenEffect.kt -------------------------------------------------------------------------------- /features/newtoken/newtoken-impl/src/commonMain/kotlin/io/spherelabs/newtokenimpl/presentation/NewTokenMiddleware.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/newtoken/newtoken-impl/src/commonMain/kotlin/io/spherelabs/newtokenimpl/presentation/NewTokenMiddleware.kt -------------------------------------------------------------------------------- /features/newtoken/newtoken-impl/src/commonMain/kotlin/io/spherelabs/newtokenimpl/presentation/NewTokenReducer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/newtoken/newtoken-impl/src/commonMain/kotlin/io/spherelabs/newtokenimpl/presentation/NewTokenReducer.kt -------------------------------------------------------------------------------- /features/newtoken/newtoken-impl/src/commonMain/kotlin/io/spherelabs/newtokenimpl/presentation/NewTokenState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/newtoken/newtoken-impl/src/commonMain/kotlin/io/spherelabs/newtokenimpl/presentation/NewTokenState.kt -------------------------------------------------------------------------------- /features/newtoken/newtoken-impl/src/commonMain/kotlin/io/spherelabs/newtokenimpl/presentation/NewTokenViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/newtoken/newtoken-impl/src/commonMain/kotlin/io/spherelabs/newtokenimpl/presentation/NewTokenViewModel.kt -------------------------------------------------------------------------------- /features/newtoken/newtoken-impl/src/commonMain/kotlin/io/spherelabs/newtokenimpl/presentation/NewTokenWish.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/newtoken/newtoken-impl/src/commonMain/kotlin/io/spherelabs/newtokenimpl/presentation/NewTokenWish.kt -------------------------------------------------------------------------------- /features/newtoken/newtoken-impl/src/commonMain/kotlin/io/spherelabs/newtokenimpl/ui/NewTokenContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/newtoken/newtoken-impl/src/commonMain/kotlin/io/spherelabs/newtokenimpl/ui/NewTokenContent.kt -------------------------------------------------------------------------------- /features/newtoken/newtoken-impl/src/commonMain/kotlin/io/spherelabs/newtokenimpl/ui/NewTokenScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/newtoken/newtoken-impl/src/commonMain/kotlin/io/spherelabs/newtokenimpl/ui/NewTokenScreen.kt -------------------------------------------------------------------------------- /features/newtoken/newtoken-impl/src/commonMain/kotlin/io/spherelabs/newtokenimpl/ui/NewTokenTextField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/newtoken/newtoken-impl/src/commonMain/kotlin/io/spherelabs/newtokenimpl/ui/NewTokenTextField.kt -------------------------------------------------------------------------------- /features/newtoken/newtoken-impl/src/commonMain/kotlin/io/spherelabs/newtokenimpl/ui/NewTokenTopBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/newtoken/newtoken-impl/src/commonMain/kotlin/io/spherelabs/newtokenimpl/ui/NewTokenTopBar.kt -------------------------------------------------------------------------------- /features/onboarding/onboarding-api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/onboarding/onboarding-api/build.gradle.kts -------------------------------------------------------------------------------- /features/onboarding/onboarding-di/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/onboarding/onboarding-di/build.gradle.kts -------------------------------------------------------------------------------- /features/onboarding/onboarding-di/src/commonMain/kotlin/io/spherelabs/onboardingdi/Koin.onboarding.domain.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/onboarding/onboarding-di/src/commonMain/kotlin/io/spherelabs/onboardingdi/Koin.onboarding.domain.kt -------------------------------------------------------------------------------- /features/onboarding/onboarding-di/src/commonMain/kotlin/io/spherelabs/onboardingdi/Koin.onboarding.presentation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/onboarding/onboarding-di/src/commonMain/kotlin/io/spherelabs/onboardingdi/Koin.onboarding.presentation.kt -------------------------------------------------------------------------------- /features/onboarding/onboarding-di/src/commonMain/kotlin/io/spherelabs/onboardingdi/Voyager.onboarding.ui.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/onboarding/onboarding-di/src/commonMain/kotlin/io/spherelabs/onboardingdi/Voyager.onboarding.ui.kt -------------------------------------------------------------------------------- /features/onboarding/onboarding-impl/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/onboarding/onboarding-impl/build.gradle.kts -------------------------------------------------------------------------------- /features/onboarding/onboarding-impl/src/androidUnitTest/kotlin/OnboardingDomainArchitectureTest.kt: -------------------------------------------------------------------------------- 1 | class OnboardingDomainArchitectureTest {} 2 | -------------------------------------------------------------------------------- /features/onboarding/onboarding-impl/src/androidUnitTest/kotlin/OnboardingUseCaseDomainArchitectureTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/onboarding/onboarding-impl/src/androidUnitTest/kotlin/OnboardingUseCaseDomainArchitectureTest.kt -------------------------------------------------------------------------------- /features/onboarding/onboarding-impl/src/commonMain/kotlin/io/spherelabs/onboardingimpl/ui/OnboardingScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/onboarding/onboarding-impl/src/commonMain/kotlin/io/spherelabs/onboardingimpl/ui/OnboardingScreen.kt -------------------------------------------------------------------------------- /features/passwordhealth/passwordhealth-api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhealth/passwordhealth-api/build.gradle.kts -------------------------------------------------------------------------------- /features/passwordhealth/passwordhealth-api/src/commonMain/kotlin/domain/model/PasswordHealth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhealth/passwordhealth-api/src/commonMain/kotlin/domain/model/PasswordHealth.kt -------------------------------------------------------------------------------- /features/passwordhealth/passwordhealth-api/src/commonMain/kotlin/domain/model/PasswordStats.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhealth/passwordhealth-api/src/commonMain/kotlin/domain/model/PasswordStats.kt -------------------------------------------------------------------------------- /features/passwordhealth/passwordhealth-api/src/commonMain/kotlin/domain/model/PasswordType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhealth/passwordhealth-api/src/commonMain/kotlin/domain/model/PasswordType.kt -------------------------------------------------------------------------------- /features/passwordhealth/passwordhealth-api/src/commonMain/kotlin/domain/repository/PasswordHealthRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhealth/passwordhealth-api/src/commonMain/kotlin/domain/repository/PasswordHealthRepository.kt -------------------------------------------------------------------------------- /features/passwordhealth/passwordhealth-api/src/commonMain/kotlin/domain/usecase/GetPasswordHealthUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhealth/passwordhealth-api/src/commonMain/kotlin/domain/usecase/GetPasswordHealthUseCase.kt -------------------------------------------------------------------------------- /features/passwordhealth/passwordhealth-api/src/commonMain/kotlin/domain/usecase/GetPasswordProgressUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhealth/passwordhealth-api/src/commonMain/kotlin/domain/usecase/GetPasswordProgressUseCase.kt -------------------------------------------------------------------------------- /features/passwordhealth/passwordhealth-api/src/commonMain/kotlin/domain/usecase/GetPasswordStatsUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhealth/passwordhealth-api/src/commonMain/kotlin/domain/usecase/GetPasswordStatsUseCase.kt -------------------------------------------------------------------------------- /features/passwordhealth/passwordhealth-di/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhealth/passwordhealth-di/build.gradle.kts -------------------------------------------------------------------------------- /features/passwordhealth/passwordhealth-di/src/commonMain/kotlin/Koin.passwordhealth.domain.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhealth/passwordhealth-di/src/commonMain/kotlin/Koin.passwordhealth.domain.kt -------------------------------------------------------------------------------- /features/passwordhealth/passwordhealth-di/src/commonMain/kotlin/Koin.passwordhealth.presentation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhealth/passwordhealth-di/src/commonMain/kotlin/Koin.passwordhealth.presentation.kt -------------------------------------------------------------------------------- /features/passwordhealth/passwordhealth-di/src/commonMain/kotlin/Voayager.passwordhealth.ui.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhealth/passwordhealth-di/src/commonMain/kotlin/Voayager.passwordhealth.ui.kt -------------------------------------------------------------------------------- /features/passwordhealth/passwordhealth-impl/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhealth/passwordhealth-impl/build.gradle.kts -------------------------------------------------------------------------------- /features/passwordhealth/passwordhealth-impl/src/commonMain/kotlin/passwordhealthimpl/ui/PasswordHealthContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhealth/passwordhealth-impl/src/commonMain/kotlin/passwordhealthimpl/ui/PasswordHealthContent.kt -------------------------------------------------------------------------------- /features/passwordhealth/passwordhealth-impl/src/commonMain/kotlin/passwordhealthimpl/ui/PasswordHealthScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhealth/passwordhealth-impl/src/commonMain/kotlin/passwordhealthimpl/ui/PasswordHealthScreen.kt -------------------------------------------------------------------------------- /features/passwordhealth/passwordhealth-impl/src/commonMain/kotlin/passwordhealthimpl/ui/component/SemiProgressBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhealth/passwordhealth-impl/src/commonMain/kotlin/passwordhealthimpl/ui/component/SemiProgressBar.kt -------------------------------------------------------------------------------- /features/passwordhealth/passwordhealth-impl/src/commonTest/kotlin/FakePasswordHealthRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhealth/passwordhealth-impl/src/commonTest/kotlin/FakePasswordHealthRepository.kt -------------------------------------------------------------------------------- /features/passwordhealth/passwordhealth-impl/src/commonTest/kotlin/GetPasswordHealthUseCaseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhealth/passwordhealth-impl/src/commonTest/kotlin/GetPasswordHealthUseCaseTest.kt -------------------------------------------------------------------------------- /features/passwordhistory/passwordhistory-api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhistory/passwordhistory-api/build.gradle.kts -------------------------------------------------------------------------------- /features/passwordhistory/passwordhistory-di/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhistory/passwordhistory-di/build.gradle.kts -------------------------------------------------------------------------------- /features/passwordhistory/passwordhistory-impl/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhistory/passwordhistory-impl/build.gradle.kts -------------------------------------------------------------------------------- /features/passwordhistory/passwordhistory-impl/src/commonTest/kotlin/FakeClearPasswordHistoryUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhistory/passwordhistory-impl/src/commonTest/kotlin/FakeClearPasswordHistoryUseCase.kt -------------------------------------------------------------------------------- /features/passwordhistory/passwordhistory-impl/src/commonTest/kotlin/FakeGetAllPasswordsUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhistory/passwordhistory-impl/src/commonTest/kotlin/FakeGetAllPasswordsUseCase.kt -------------------------------------------------------------------------------- /features/passwordhistory/passwordhistory-impl/src/commonTest/kotlin/PasswordHistoryViewModelTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/features/passwordhistory/passwordhistory-impl/src/commonTest/kotlin/PasswordHistoryViewModelTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/gradlew.bat -------------------------------------------------------------------------------- /iosApp/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/iosApp/Config.xcconfig -------------------------------------------------------------------------------- /iosApp/iosApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/iosApp/iosApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/iosApp/iosApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/iosApp/iosApp/ContentView.swift -------------------------------------------------------------------------------- /iosApp/iosApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/iosApp/iosApp/Info.plist -------------------------------------------------------------------------------- /iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/iOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/iosApp/iosApp/iOSApp.swift -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/local.properties -------------------------------------------------------------------------------- /manager/biometry/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/biometry/build.gradle.kts -------------------------------------------------------------------------------- /manager/biometry/src/androidMain/kotlin/io/spherelabs/biometry/BiometricManager.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/biometry/src/androidMain/kotlin/io/spherelabs/biometry/BiometricManager.android.kt -------------------------------------------------------------------------------- /manager/biometry/src/androidMain/kotlin/io/spherelabs/biometry/RememberBiometricManager.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/biometry/src/androidMain/kotlin/io/spherelabs/biometry/RememberBiometricManager.android.kt -------------------------------------------------------------------------------- /manager/biometry/src/commonMain/kotlin/io/spherelabs/biometry/BiometricManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/biometry/src/commonMain/kotlin/io/spherelabs/biometry/BiometricManager.kt -------------------------------------------------------------------------------- /manager/biometry/src/commonMain/kotlin/io/spherelabs/biometry/RememberBiometricManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/biometry/src/commonMain/kotlin/io/spherelabs/biometry/RememberBiometricManager.kt -------------------------------------------------------------------------------- /manager/biometry/src/iosMain/kotlin/io/spherelabs/biometry/BiometricManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/biometry/src/iosMain/kotlin/io/spherelabs/biometry/BiometricManager.kt -------------------------------------------------------------------------------- /manager/biometry/src/iosMain/kotlin/io/spherelabs/biometry/Coroutine.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/biometry/src/iosMain/kotlin/io/spherelabs/biometry/Coroutine.kt -------------------------------------------------------------------------------- /manager/biometry/src/iosMain/kotlin/io/spherelabs/biometry/RememberBiometricManager.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/biometry/src/iosMain/kotlin/io/spherelabs/biometry/RememberBiometricManager.ios.kt -------------------------------------------------------------------------------- /manager/otp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/otp/build.gradle.kts -------------------------------------------------------------------------------- /manager/otp/src/commonMain/kotlin/io/spherelabs/otp/Otp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/otp/src/commonMain/kotlin/io/spherelabs/otp/Otp.kt -------------------------------------------------------------------------------- /manager/otp/src/commonMain/kotlin/io/spherelabs/otp/OtpDuration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/otp/src/commonMain/kotlin/io/spherelabs/otp/OtpDuration.kt -------------------------------------------------------------------------------- /manager/otp/src/commonMain/kotlin/io/spherelabs/otp/OtpManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/otp/src/commonMain/kotlin/io/spherelabs/otp/OtpManager.kt -------------------------------------------------------------------------------- /manager/otp/src/commonTest/kotlin/OtpManagerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/otp/src/commonTest/kotlin/OtpManagerTest.kt -------------------------------------------------------------------------------- /manager/password/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/password/build.gradle.kts -------------------------------------------------------------------------------- /manager/password/src/commonMain/kotlin/io/spherelabs/manager/password/DigitRandom.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/password/src/commonMain/kotlin/io/spherelabs/manager/password/DigitRandom.kt -------------------------------------------------------------------------------- /manager/password/src/commonMain/kotlin/io/spherelabs/manager/password/LowercaseRandom.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/password/src/commonMain/kotlin/io/spherelabs/manager/password/LowercaseRandom.kt -------------------------------------------------------------------------------- /manager/password/src/commonMain/kotlin/io/spherelabs/manager/password/PasswordManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/password/src/commonMain/kotlin/io/spherelabs/manager/password/PasswordManager.kt -------------------------------------------------------------------------------- /manager/password/src/commonMain/kotlin/io/spherelabs/manager/password/SpecialRandom.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/password/src/commonMain/kotlin/io/spherelabs/manager/password/SpecialRandom.kt -------------------------------------------------------------------------------- /manager/password/src/commonMain/kotlin/io/spherelabs/manager/password/UppercaseRandom.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/password/src/commonMain/kotlin/io/spherelabs/manager/password/UppercaseRandom.kt -------------------------------------------------------------------------------- /manager/password/src/commonMain/kotlin/io/spherelabs/manager/password/di/Koin.password.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/password/src/commonMain/kotlin/io/spherelabs/manager/password/di/Koin.password.kt -------------------------------------------------------------------------------- /manager/password/src/commonTest/kotlin/io.spherelabs.manager.password/DigitalRandomTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/password/src/commonTest/kotlin/io.spherelabs.manager.password/DigitalRandomTest.kt -------------------------------------------------------------------------------- /manager/password/src/commonTest/kotlin/io.spherelabs.manager.password/LowercaseRandomTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/password/src/commonTest/kotlin/io.spherelabs.manager.password/LowercaseRandomTest.kt -------------------------------------------------------------------------------- /manager/password/src/commonTest/kotlin/io.spherelabs.manager.password/PasswordManagerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/password/src/commonTest/kotlin/io.spherelabs.manager.password/PasswordManagerTest.kt -------------------------------------------------------------------------------- /manager/password/src/commonTest/kotlin/io.spherelabs.manager.password/UppercaseRandomTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/manager/password/src/commonTest/kotlin/io.spherelabs.manager.password/UppercaseRandomTest.kt -------------------------------------------------------------------------------- /media/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/media/account.png -------------------------------------------------------------------------------- /media/add_new_password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/media/add_new_password.png -------------------------------------------------------------------------------- /media/authenticator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/media/authenticator.png -------------------------------------------------------------------------------- /media/change_key_password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/media/change_key_password.png -------------------------------------------------------------------------------- /media/confirm_key_password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/media/confirm_key_password.png -------------------------------------------------------------------------------- /media/generate_password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/media/generate_password.png -------------------------------------------------------------------------------- /media/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/media/help.png -------------------------------------------------------------------------------- /media/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/media/home.png -------------------------------------------------------------------------------- /media/password_health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/media/password_health.png -------------------------------------------------------------------------------- /media/rounded-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/media/rounded-banner.png -------------------------------------------------------------------------------- /media/sign_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/media/sign_in.png -------------------------------------------------------------------------------- /media/sign_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/media/sign_up.png -------------------------------------------------------------------------------- /release/google-services.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/release/google-services.gpg -------------------------------------------------------------------------------- /resource/fonts/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/fonts/build.gradle.kts -------------------------------------------------------------------------------- /resource/fonts/src/androidMain/kotlin/io/spherelabs/resource/fonts/Fonts.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/fonts/src/androidMain/kotlin/io/spherelabs/resource/fonts/Fonts.android.kt -------------------------------------------------------------------------------- /resource/fonts/src/commonMain/kotlin/io/spherelabs/resource/fonts/Fonts.common.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/fonts/src/commonMain/kotlin/io/spherelabs/resource/fonts/Fonts.common.kt -------------------------------------------------------------------------------- /resource/fonts/src/commonMain/resources/font/googlesans_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/fonts/src/commonMain/resources/font/googlesans_bold.ttf -------------------------------------------------------------------------------- /resource/fonts/src/commonMain/resources/font/googlesans_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/fonts/src/commonMain/resources/font/googlesans_medium.ttf -------------------------------------------------------------------------------- /resource/fonts/src/commonMain/resources/font/googlesans_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/fonts/src/commonMain/resources/font/googlesans_regular.ttf -------------------------------------------------------------------------------- /resource/fonts/src/commonMain/resources/font/opensans_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/fonts/src/commonMain/resources/font/opensans_bold.ttf -------------------------------------------------------------------------------- /resource/fonts/src/commonMain/resources/font/opensans_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/fonts/src/commonMain/resources/font/opensans_medium.ttf -------------------------------------------------------------------------------- /resource/fonts/src/commonMain/resources/font/opensans_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/fonts/src/commonMain/resources/font/opensans_regular.ttf -------------------------------------------------------------------------------- /resource/fonts/src/iosMain/kotlin/io/spherelabs/resource/fonts/Fonts.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/fonts/src/iosMain/kotlin/io/spherelabs/resource/fonts/Fonts.ios.kt -------------------------------------------------------------------------------- /resource/icons/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/icons/build.gradle.kts -------------------------------------------------------------------------------- /resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/AnyPassIcons.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/AnyPassIcons.kt -------------------------------------------------------------------------------- /resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/ApplePodcasts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/ApplePodcasts.kt -------------------------------------------------------------------------------- /resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Behance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Behance.kt -------------------------------------------------------------------------------- /resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Discord.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Discord.kt -------------------------------------------------------------------------------- /resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Dribble.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Dribble.kt -------------------------------------------------------------------------------- /resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Facebook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Facebook.kt -------------------------------------------------------------------------------- /resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Googlemeet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Googlemeet.kt -------------------------------------------------------------------------------- /resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Layers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Layers.kt -------------------------------------------------------------------------------- /resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Linkedin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Linkedin.kt -------------------------------------------------------------------------------- /resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Medium.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Medium.kt -------------------------------------------------------------------------------- /resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Messenger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Messenger.kt -------------------------------------------------------------------------------- /resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Patreon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Patreon.kt -------------------------------------------------------------------------------- /resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Pinterest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Pinterest.kt -------------------------------------------------------------------------------- /resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Quora.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Quora.kt -------------------------------------------------------------------------------- /resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Reddit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Reddit.kt -------------------------------------------------------------------------------- /resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/ShieldCheck.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/ShieldCheck.kt -------------------------------------------------------------------------------- /resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Skype.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Skype.kt -------------------------------------------------------------------------------- /resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Target.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Target.kt -------------------------------------------------------------------------------- /resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Telegram.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Telegram.kt -------------------------------------------------------------------------------- /resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Whatsapp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/icons/src/commonMain/kotlin/io/spherelabs/resource/icons/anypassicons/Whatsapp.kt -------------------------------------------------------------------------------- /resource/images/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/images/build.gradle.kts -------------------------------------------------------------------------------- /resource/images/images.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/images/images.podspec -------------------------------------------------------------------------------- /resource/images/src/commonMain/kotlin/io/spherelabs/resource/images/AnyPassImages.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/images/src/commonMain/kotlin/io/spherelabs/resource/images/AnyPassImages.kt -------------------------------------------------------------------------------- /resource/images/src/commonMain/resources/MR/images/avatar2@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/images/src/commonMain/resources/MR/images/avatar2@1x.png -------------------------------------------------------------------------------- /resource/images/src/commonMain/resources/MR/images/avatar3@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/images/src/commonMain/resources/MR/images/avatar3@1x.png -------------------------------------------------------------------------------- /resource/images/src/commonMain/resources/MR/images/avatar4@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/images/src/commonMain/resources/MR/images/avatar4@1x.png -------------------------------------------------------------------------------- /resource/images/src/commonMain/resources/MR/images/avatar5@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/images/src/commonMain/resources/MR/images/avatar5@1x.png -------------------------------------------------------------------------------- /resource/images/src/commonMain/resources/MR/images/avatar6@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/images/src/commonMain/resources/MR/images/avatar6@1x.png -------------------------------------------------------------------------------- /resource/images/src/commonMain/resources/MR/images/avatar@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/images/src/commonMain/resources/MR/images/avatar@1x.png -------------------------------------------------------------------------------- /resource/images/src/commonMain/resources/MR/images/change_password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/images/src/commonMain/resources/MR/images/change_password.svg -------------------------------------------------------------------------------- /resource/images/src/commonMain/resources/MR/images/illustration@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/images/src/commonMain/resources/MR/images/illustration@1x.png -------------------------------------------------------------------------------- /resource/images/src/commonMain/resources/MR/images/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/images/src/commonMain/resources/MR/images/layers.svg -------------------------------------------------------------------------------- /resource/images/src/commonMain/resources/MR/images/locker@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/images/src/commonMain/resources/MR/images/locker@1x.png -------------------------------------------------------------------------------- /resource/images/src/commonMain/resources/MR/images/message_square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/images/src/commonMain/resources/MR/images/message_square.svg -------------------------------------------------------------------------------- /resource/images/src/commonMain/resources/MR/images/shield_check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/images/src/commonMain/resources/MR/images/shield_check.svg -------------------------------------------------------------------------------- /resource/images/src/commonMain/resources/MR/images/signin@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/images/src/commonMain/resources/MR/images/signin@1x.png -------------------------------------------------------------------------------- /resource/images/src/commonMain/resources/MR/images/signup@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/images/src/commonMain/resources/MR/images/signup@1x.png -------------------------------------------------------------------------------- /resource/images/src/commonMain/resources/MR/images/target.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/images/src/commonMain/resources/MR/images/target.svg -------------------------------------------------------------------------------- /resource/images/src/commonMain/resources/MR/images/whale_logo@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/images/src/commonMain/resources/MR/images/whale_logo@1x.png -------------------------------------------------------------------------------- /resource/strings/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/strings/build.gradle.kts -------------------------------------------------------------------------------- /resource/strings/src/commonMain/kotlin/io/spherelabs/resource/EnAnyPassStrings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/strings/src/commonMain/kotlin/io/spherelabs/resource/EnAnyPassStrings.kt -------------------------------------------------------------------------------- /resource/strings/src/commonMain/kotlin/io/spherelabs/resource/KoAnyPassStrings.kt: -------------------------------------------------------------------------------- 1 | package io.spherelabs.resource 2 | 3 | -------------------------------------------------------------------------------- /resource/strings/src/commonMain/kotlin/io/spherelabs/resource/RuAnyPassStrings.kt: -------------------------------------------------------------------------------- 1 | package io.spherelabs.resource 2 | 3 | -------------------------------------------------------------------------------- /resource/strings/src/commonMain/kotlin/io/spherelabs/resource/UzAnyPassStrings.kt: -------------------------------------------------------------------------------- 1 | package io.spherelabs.resource 2 | 3 | -------------------------------------------------------------------------------- /resource/strings/src/commonMain/kotlin/io/spherelabs/resource/strings/AnyPassStrings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/resource/strings/src/commonMain/kotlin/io/spherelabs/resource/strings/AnyPassStrings.kt -------------------------------------------------------------------------------- /scripts/cleanup-secrets.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f androidApp/google-services.json 4 | -------------------------------------------------------------------------------- /scripts/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/scripts/cleanup.sh -------------------------------------------------------------------------------- /scripts/decrypt-and-save.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/scripts/decrypt-and-save.sh -------------------------------------------------------------------------------- /scripts/rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/scripts/rebuild.sh -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /shared/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/build.gradle.kts -------------------------------------------------------------------------------- /shared/shared.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/shared.podspec -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/io/spherelabs/anypass/Main.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/androidMain/kotlin/io/spherelabs/anypass/Main.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/io/spherelabs/anypass/di/PlatformModule.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/androidMain/kotlin/io/spherelabs/anypass/di/PlatformModule.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/io/spherelabs/anypass/di/ViewModelModule.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/androidMain/kotlin/io/spherelabs/anypass/di/ViewModelModule.android.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/io/spherelabs/anypass/app/AnyPassApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/commonMain/kotlin/io/spherelabs/anypass/app/AnyPassApp.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/io/spherelabs/anypass/app/SharedViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/commonMain/kotlin/io/spherelabs/anypass/app/SharedViewModel.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/io/spherelabs/anypass/di/Koin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/commonMain/kotlin/io/spherelabs/anypass/di/Koin.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/io/spherelabs/anypass/di/ViewModelModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/commonMain/kotlin/io/spherelabs/anypass/di/ViewModelModule.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/io/spherelabs/anypass/sentry/Sentry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/commonMain/kotlin/io/spherelabs/anypass/sentry/Sentry.kt -------------------------------------------------------------------------------- /shared/src/commonMain/resources/MR/colors/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/commonMain/resources/MR/colors/colors.xml -------------------------------------------------------------------------------- /shared/src/commonMain/resources/MR/images/avatar2@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/commonMain/resources/MR/images/avatar2@1x.png -------------------------------------------------------------------------------- /shared/src/commonMain/resources/MR/images/avatar3@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/commonMain/resources/MR/images/avatar3@1x.png -------------------------------------------------------------------------------- /shared/src/commonMain/resources/MR/images/avatar4@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/commonMain/resources/MR/images/avatar4@1x.png -------------------------------------------------------------------------------- /shared/src/commonMain/resources/MR/images/avatar5@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/commonMain/resources/MR/images/avatar5@1x.png -------------------------------------------------------------------------------- /shared/src/commonMain/resources/MR/images/avatar6@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/commonMain/resources/MR/images/avatar6@1x.png -------------------------------------------------------------------------------- /shared/src/commonMain/resources/MR/images/avatar@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/commonMain/resources/MR/images/avatar@1x.png -------------------------------------------------------------------------------- /shared/src/commonMain/resources/MR/images/change_password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/commonMain/resources/MR/images/change_password.svg -------------------------------------------------------------------------------- /shared/src/commonMain/resources/MR/images/illustration@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/commonMain/resources/MR/images/illustration@1x.png -------------------------------------------------------------------------------- /shared/src/commonMain/resources/MR/images/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/commonMain/resources/MR/images/layers.svg -------------------------------------------------------------------------------- /shared/src/commonMain/resources/MR/images/locker@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/commonMain/resources/MR/images/locker@1x.png -------------------------------------------------------------------------------- /shared/src/commonMain/resources/MR/images/message_square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/commonMain/resources/MR/images/message_square.svg -------------------------------------------------------------------------------- /shared/src/commonMain/resources/MR/images/shield_check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/commonMain/resources/MR/images/shield_check.svg -------------------------------------------------------------------------------- /shared/src/commonMain/resources/MR/images/signin@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/commonMain/resources/MR/images/signin@1x.png -------------------------------------------------------------------------------- /shared/src/commonMain/resources/MR/images/signup@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/commonMain/resources/MR/images/signup@1x.png -------------------------------------------------------------------------------- /shared/src/commonMain/resources/MR/images/target.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/commonMain/resources/MR/images/target.svg -------------------------------------------------------------------------------- /shared/src/commonMain/resources/MR/images/whale_logo@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/commonMain/resources/MR/images/whale_logo@1x.png -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/io/spherelabs/anypass/Main.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/iosMain/kotlin/io/spherelabs/anypass/Main.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/io/spherelabs/anypass/di/PlatformModule.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/iosMain/kotlin/io/spherelabs/anypass/di/PlatformModule.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/io/spherelabs/anypass/di/ViewModelModule.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/shared/src/iosMain/kotlin/io/spherelabs/anypass/di/ViewModelModule.ios.kt -------------------------------------------------------------------------------- /spotless/anypass-copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getspherelabs/anypass-kmp/HEAD/spotless/anypass-copyright.txt --------------------------------------------------------------------------------