├── .buckconfig ├── .bundle └── config ├── .devcontainer ├── Dockerfile ├── base.Dockerfile ├── devcontainer.json └── library-scripts │ ├── README.md │ ├── common-debian.sh │ └── node-debian.sh ├── .eslintrc.js ├── .flowconfig ├── .github ├── FUNDING.yml ├── codeql │ ├── codeql-config.yml │ └── custom-queries │ │ └── javascript │ │ └── qlpack.yml └── workflows │ ├── build-prod.yml │ ├── build.yml │ ├── codeql-analysis.yml │ ├── e2e.yml │ ├── git-sync.yml │ └── lint.yml ├── .gitignore ├── .gitmodules ├── .mocharc.yml ├── .prettierignore ├── .prettierrc.js ├── .ruby-version ├── .vscode └── settings.json ├── .watchmanconfig ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── SECURITY.md ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── standardnotes │ │ │ └── DetoxTest.java │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── standardnotes │ │ │ └── ReactNativeFlipper.java │ │ ├── dev │ │ ├── AndroidManifest.xml │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ │ └── drawable-xxxhdpi │ │ │ └── icon.png │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── .keep │ │ ├── java │ │ └── com │ │ │ └── standardnotes │ │ │ ├── CustomClientFactory.java │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── drawable-hdpi │ │ ├── ic_android_background.png │ │ └── ic_android_foreground.png │ │ ├── drawable-mdpi │ │ ├── ic_android_background.png │ │ └── ic_android_foreground.png │ │ ├── drawable-xhdpi │ │ ├── ic_android_background.png │ │ └── ic_android_foreground.png │ │ ├── drawable-xxhdpi │ │ ├── ic_android_background.png │ │ └── ic_android_foreground.png │ │ ├── drawable-xxxhdpi │ │ ├── ic_android_background.png │ │ └── ic_android_foreground.png │ │ ├── drawable │ │ └── rn_edit_text_material.xml │ │ ├── mipmap-anydpi-v26 │ │ └── ic_launcher.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-ldpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ └── ic_launcher_foreground.png │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ └── network_security_config.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── e2e ├── Helpers.ts ├── Screens │ └── Settings │ │ ├── Account.spec.ts │ │ └── Options.spec.ts ├── config.json └── init.js ├── fastlane ├── Appfile ├── Fastfile ├── Matchfile ├── Pluginfile └── README.md ├── index.js ├── ios ├── Dev.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── iTunesArtwork@2x.png │ │ ├── icon-20.png │ │ ├── icon-20@2x-1.png │ │ ├── icon-20@2x.png │ │ ├── icon-20@3x.png │ │ ├── icon-29.png │ │ ├── icon-29@2x-1.png │ │ ├── icon-29@2x.png │ │ ├── icon-29@3x.png │ │ ├── icon-40.png │ │ ├── icon-40@2x-1.png │ │ ├── icon-40@2x.png │ │ ├── icon-40@3x-1.png │ │ ├── icon-40@3x.png │ │ ├── icon-60@3x.png │ │ ├── icon-76.png │ │ ├── icon-76@2x.png │ │ └── icon-83.5@2x.png │ └── Contents.json ├── LaunchScreen.storyboard ├── Podfile ├── Podfile.lock ├── Red.png ├── Red@2x.png ├── Red@3x.png ├── SNDev.entitlements ├── StandardNotes.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── StandardNotes.xcscheme │ │ └── StandardNotesDev.xcscheme ├── StandardNotes.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── StandardNotes │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Blue.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ └── ItunesArtwork@2x.png │ │ └── Contents.json │ ├── Info.plist │ ├── StandardNotes.entitlements │ └── main.m ├── StandardNotesDev-Info.plist └── StandardNotesTests │ ├── Info.plist │ └── StandardNotesTests.m ├── linter.tsconfig.json ├── metro.config.js ├── package.json ├── patches ├── react-native-keychain+8.0.0.patch └── react-native-static-server+0.5.0.patch ├── src ├── App.tsx ├── AppStack.tsx ├── ApplicationContext.tsx ├── Components │ ├── BlockingModal.styled.ts │ ├── BlockingModal.tsx │ ├── Button.tsx │ ├── ButtonCell.tsx │ ├── Chip.tsx │ ├── Circle.ts │ ├── HeaderTitleView.tsx │ ├── Icon.styled.ts │ ├── IoniconsHeaderButton.tsx │ ├── SearchBar.styled.ts │ ├── SearchBar.tsx │ ├── SectionHeader.tsx │ ├── SectionedAccessoryTableCell.tsx │ ├── SectionedOptionsTableCell.tsx │ ├── SectionedTableCell.ts │ ├── SnIcon.tsx │ ├── TableSection.ts │ ├── ToastWrapper.styled.ts │ ├── ToastWrapper.tsx │ └── package.json ├── HistoryStack.tsx ├── Hooks │ ├── useFiles.ts │ ├── useProgessBar.ts │ └── useSafeApplicationContext.ts ├── Lib │ ├── AlertService.ts │ ├── Application.ts │ ├── ApplicationGroup.ts │ ├── ApplicationState.ts │ ├── BackupsService.ts │ ├── ComponentManager.ts │ ├── FilesService.ts │ ├── InstallationService.ts │ ├── Interface.ts │ ├── Keychain.ts │ ├── NavigationService.ts │ ├── PreferencesManager.ts │ ├── ReactNativeCrypto.ts │ ├── ReviewService.ts │ ├── SnjsHelperHooks.ts │ ├── StatusManager.ts │ ├── Types.ts │ ├── Utils.ts │ ├── constants.ts │ ├── moment.ts │ └── package.json ├── ModalStack.tsx ├── Screens │ ├── Authenticate │ │ ├── Authenticate.styled.ts │ │ ├── Authenticate.tsx │ │ └── helpers.ts │ ├── Compose │ │ ├── ComponentView.styled.ts │ │ ├── ComponentView.tsx │ │ ├── Compose.styled.ts │ │ └── Compose.tsx │ ├── InputModal │ │ ├── FileInputModal.tsx │ │ ├── InputModal.styled.ts │ │ ├── PasscodeInputModal.tsx │ │ └── TagInputModal.tsx │ ├── ManageSessions │ │ ├── ManageSessions.tsx │ │ └── SessionCell.tsx │ ├── NoteHistory │ │ ├── NoteHistory.styled.ts │ │ ├── NoteHistory.tsx │ │ ├── NoteHistoryCell.tsx │ │ ├── NoteHistoryPreview.styled.ts │ │ ├── NoteHistoryPreview.tsx │ │ ├── RemoteHistory.tsx │ │ └── SessionHistory.tsx │ ├── Notes │ │ ├── NoteCell.styled.ts │ │ ├── NoteCell.tsx │ │ ├── NoteCellFlags.tsx │ │ ├── NoteCellIconFlags.tsx │ │ ├── NoteList.styled.ts │ │ ├── NoteList.tsx │ │ ├── Notes.styled.ts │ │ ├── Notes.tsx │ │ ├── OfflineBanner.styled.ts │ │ └── OfflineBanner.tsx │ ├── Root.styled.ts │ ├── Root.tsx │ ├── Settings │ │ ├── Sections │ │ │ ├── AuthSection.styled.ts │ │ │ ├── AuthSection.tsx │ │ │ ├── CompanySection.styled.ts │ │ │ ├── CompanySection.tsx │ │ │ ├── EncryptionSection.styled.ts │ │ │ ├── EncryptionSection.tsx │ │ │ ├── FilesSection.styled.tsx │ │ │ ├── FilesSection.tsx │ │ │ ├── OptionsSection.tsx │ │ │ ├── PreferencesSection.tsx │ │ │ ├── ProtectionsSection.styled.ts │ │ │ ├── ProtectionsSection.tsx │ │ │ ├── SecuritySection.styled.ts │ │ │ └── SecuritySection.tsx │ │ ├── Settings.styled.ts │ │ └── Settings.tsx │ ├── SideMenu │ │ ├── Files.styled.ts │ │ ├── Files.tsx │ │ ├── Listed.styled.ts │ │ ├── Listed.tsx │ │ ├── MainSideMenu.styled.ts │ │ ├── MainSideMenu.tsx │ │ ├── NoteSideMenu.styled.ts │ │ ├── NoteSideMenu.tsx │ │ ├── SideMenuCell.styled.ts │ │ ├── SideMenuCell.tsx │ │ ├── SideMenuHero.styled.ts │ │ ├── SideMenuHero.tsx │ │ ├── SideMenuSection.styled.ts │ │ ├── SideMenuSection.tsx │ │ ├── TagSelectionList.styled.ts │ │ └── TagSelectionList.tsx │ ├── UploadedFilesList │ │ ├── UploadedFileItem.styled.ts │ │ ├── UploadedFileItem.tsx │ │ ├── UploadedFileItemAction.ts │ │ ├── UploadedFilesList.styled.ts │ │ └── UploadedFilesList.tsx │ ├── ViewProtectedNote │ │ ├── ViewProtectedNote.styled.ts │ │ └── ViewProtectedNote.tsx │ ├── package.json │ └── screens.ts ├── Style │ ├── CssParser.ts │ ├── CustomActionSheet.ts │ ├── Icons.ts │ ├── Images │ │ ├── sn-logo.png │ │ └── sn-splash-logo.png │ ├── MobileTheme.ts │ ├── ThemeService.ts │ ├── Themes │ │ ├── blue-dark.json │ │ ├── blue.json │ │ ├── red.json │ │ └── styled-components.d.ts │ ├── Utils.ts │ ├── android_text_fix.js │ └── package.json ├── Types │ ├── index.d.ts │ ├── react-native-mail │ │ └── index.d.ts │ ├── react-native-privacy-snapshot │ │ └── index.d.ts │ ├── react-native-search-box │ │ └── index.d.ts │ ├── react-native-svg │ │ └── index.d.ts │ └── stylekit.d.ts └── package.json ├── tsconfig.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/.buckconfig -------------------------------------------------------------------------------- /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/.bundle/config -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/base.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/.devcontainer/base.Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/library-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/.devcontainer/library-scripts/README.md -------------------------------------------------------------------------------- /.devcontainer/library-scripts/common-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/.devcontainer/library-scripts/common-debian.sh -------------------------------------------------------------------------------- /.devcontainer/library-scripts/node-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/.devcontainer/library-scripts/node-debian.sh -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/.flowconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/codeql/codeql-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/.github/codeql/codeql-config.yml -------------------------------------------------------------------------------- /.github/codeql/custom-queries/javascript/qlpack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/.github/codeql/custom-queries/javascript/qlpack.yml -------------------------------------------------------------------------------- /.github/workflows/build-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/.github/workflows/build-prod.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/.github/workflows/e2e.yml -------------------------------------------------------------------------------- /.github/workflows/git-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/.github/workflows/git-sync.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.mocharc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/.mocharc.yml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .github 2 | codeqldb 3 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.4 -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/SECURITY.md -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/__tests__/index.android.js -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/__tests__/index.ios.js -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/app/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/app/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/gradlew -------------------------------------------------------------------------------- /android/app/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/gradlew.bat -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/androidTest/java/com/standardnotes/DetoxTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/androidTest/java/com/standardnotes/DetoxTest.java -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/standardnotes/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/debug/java/com/standardnotes/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/dev/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/dev/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/dev/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/dev/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/app/src/dev/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/dev/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android/app/src/dev/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/dev/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /android/app/src/dev/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/dev/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /android/app/src/dev/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/dev/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /android/app/src/dev/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/dev/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/standardnotes/CustomClientFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/java/com/standardnotes/CustomClientFactory.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/standardnotes/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/java/com/standardnotes/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/standardnotes/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/java/com/standardnotes/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_android_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/drawable-hdpi/ic_android_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_android_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/drawable-hdpi/ic_android_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_android_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/drawable-mdpi/ic_android_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_android_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/drawable-mdpi/ic_android_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_android_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/drawable-xhdpi/ic_android_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_android_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/drawable-xhdpi/ic_android_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_android_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_android_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_android_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_android_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_android_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_android_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_android_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_android_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/mipmap-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/app/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/babel.config.js -------------------------------------------------------------------------------- /e2e/Helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/e2e/Helpers.ts -------------------------------------------------------------------------------- /e2e/Screens/Settings/Account.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/e2e/Screens/Settings/Account.spec.ts -------------------------------------------------------------------------------- /e2e/Screens/Settings/Options.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/e2e/Screens/Settings/Options.spec.ts -------------------------------------------------------------------------------- /e2e/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/e2e/config.json -------------------------------------------------------------------------------- /e2e/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/e2e/init.js -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Matchfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/fastlane/Matchfile -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/fastlane/Pluginfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/index.js -------------------------------------------------------------------------------- /ios/Dev.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Dev.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Dev.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Dev.xcassets/AppIcon.appiconset/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /ios/Dev.xcassets/AppIcon.appiconset/icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Dev.xcassets/AppIcon.appiconset/icon-20.png -------------------------------------------------------------------------------- /ios/Dev.xcassets/AppIcon.appiconset/icon-20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Dev.xcassets/AppIcon.appiconset/icon-20@2x-1.png -------------------------------------------------------------------------------- /ios/Dev.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Dev.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /ios/Dev.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Dev.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /ios/Dev.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Dev.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /ios/Dev.xcassets/AppIcon.appiconset/icon-29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Dev.xcassets/AppIcon.appiconset/icon-29@2x-1.png -------------------------------------------------------------------------------- /ios/Dev.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Dev.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /ios/Dev.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Dev.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /ios/Dev.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Dev.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /ios/Dev.xcassets/AppIcon.appiconset/icon-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Dev.xcassets/AppIcon.appiconset/icon-40@2x-1.png -------------------------------------------------------------------------------- /ios/Dev.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Dev.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /ios/Dev.xcassets/AppIcon.appiconset/icon-40@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Dev.xcassets/AppIcon.appiconset/icon-40@3x-1.png -------------------------------------------------------------------------------- /ios/Dev.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Dev.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /ios/Dev.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Dev.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /ios/Dev.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Dev.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /ios/Dev.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Dev.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /ios/Dev.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Dev.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /ios/Dev.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Dev.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Red.png -------------------------------------------------------------------------------- /ios/Red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Red@2x.png -------------------------------------------------------------------------------- /ios/Red@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/Red@3x.png -------------------------------------------------------------------------------- /ios/SNDev.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/SNDev.entitlements -------------------------------------------------------------------------------- /ios/StandardNotes.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/StandardNotes.xcodeproj/xcshareddata/xcschemes/StandardNotes.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes.xcodeproj/xcshareddata/xcschemes/StandardNotes.xcscheme -------------------------------------------------------------------------------- /ios/StandardNotes.xcodeproj/xcshareddata/xcschemes/StandardNotesDev.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes.xcodeproj/xcshareddata/xcschemes/StandardNotesDev.xcscheme -------------------------------------------------------------------------------- /ios/StandardNotes.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/StandardNotes.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/StandardNotes.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/StandardNotes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes/AppDelegate.h -------------------------------------------------------------------------------- /ios/StandardNotes/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes/AppDelegate.m -------------------------------------------------------------------------------- /ios/StandardNotes/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/StandardNotes/Images.xcassets/Blue.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes/Images.xcassets/Blue.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes/Images.xcassets/Blue.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/StandardNotes/Images.xcassets/Blue.appiconset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes/Images.xcassets/Blue.appiconset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /ios/StandardNotes/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/StandardNotes/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes/Info.plist -------------------------------------------------------------------------------- /ios/StandardNotes/StandardNotes.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes/StandardNotes.entitlements -------------------------------------------------------------------------------- /ios/StandardNotes/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotes/main.m -------------------------------------------------------------------------------- /ios/StandardNotesDev-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotesDev-Info.plist -------------------------------------------------------------------------------- /ios/StandardNotesTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotesTests/Info.plist -------------------------------------------------------------------------------- /ios/StandardNotesTests/StandardNotesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/ios/StandardNotesTests/StandardNotesTests.m -------------------------------------------------------------------------------- /linter.tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/linter.tsconfig.json -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/package.json -------------------------------------------------------------------------------- /patches/react-native-keychain+8.0.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/patches/react-native-keychain+8.0.0.patch -------------------------------------------------------------------------------- /patches/react-native-static-server+0.5.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/patches/react-native-static-server+0.5.0.patch -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/AppStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/AppStack.tsx -------------------------------------------------------------------------------- /src/ApplicationContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/ApplicationContext.tsx -------------------------------------------------------------------------------- /src/Components/BlockingModal.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Components/BlockingModal.styled.ts -------------------------------------------------------------------------------- /src/Components/BlockingModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Components/BlockingModal.tsx -------------------------------------------------------------------------------- /src/Components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Components/Button.tsx -------------------------------------------------------------------------------- /src/Components/ButtonCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Components/ButtonCell.tsx -------------------------------------------------------------------------------- /src/Components/Chip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Components/Chip.tsx -------------------------------------------------------------------------------- /src/Components/Circle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Components/Circle.ts -------------------------------------------------------------------------------- /src/Components/HeaderTitleView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Components/HeaderTitleView.tsx -------------------------------------------------------------------------------- /src/Components/Icon.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Components/Icon.styled.ts -------------------------------------------------------------------------------- /src/Components/IoniconsHeaderButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Components/IoniconsHeaderButton.tsx -------------------------------------------------------------------------------- /src/Components/SearchBar.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Components/SearchBar.styled.ts -------------------------------------------------------------------------------- /src/Components/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Components/SearchBar.tsx -------------------------------------------------------------------------------- /src/Components/SectionHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Components/SectionHeader.tsx -------------------------------------------------------------------------------- /src/Components/SectionedAccessoryTableCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Components/SectionedAccessoryTableCell.tsx -------------------------------------------------------------------------------- /src/Components/SectionedOptionsTableCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Components/SectionedOptionsTableCell.tsx -------------------------------------------------------------------------------- /src/Components/SectionedTableCell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Components/SectionedTableCell.ts -------------------------------------------------------------------------------- /src/Components/SnIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Components/SnIcon.tsx -------------------------------------------------------------------------------- /src/Components/TableSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Components/TableSection.ts -------------------------------------------------------------------------------- /src/Components/ToastWrapper.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Components/ToastWrapper.styled.ts -------------------------------------------------------------------------------- /src/Components/ToastWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Components/ToastWrapper.tsx -------------------------------------------------------------------------------- /src/Components/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@Components" 3 | } 4 | -------------------------------------------------------------------------------- /src/HistoryStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/HistoryStack.tsx -------------------------------------------------------------------------------- /src/Hooks/useFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Hooks/useFiles.ts -------------------------------------------------------------------------------- /src/Hooks/useProgessBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Hooks/useProgessBar.ts -------------------------------------------------------------------------------- /src/Hooks/useSafeApplicationContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Hooks/useSafeApplicationContext.ts -------------------------------------------------------------------------------- /src/Lib/AlertService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Lib/AlertService.ts -------------------------------------------------------------------------------- /src/Lib/Application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Lib/Application.ts -------------------------------------------------------------------------------- /src/Lib/ApplicationGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Lib/ApplicationGroup.ts -------------------------------------------------------------------------------- /src/Lib/ApplicationState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Lib/ApplicationState.ts -------------------------------------------------------------------------------- /src/Lib/BackupsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Lib/BackupsService.ts -------------------------------------------------------------------------------- /src/Lib/ComponentManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Lib/ComponentManager.ts -------------------------------------------------------------------------------- /src/Lib/FilesService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Lib/FilesService.ts -------------------------------------------------------------------------------- /src/Lib/InstallationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Lib/InstallationService.ts -------------------------------------------------------------------------------- /src/Lib/Interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Lib/Interface.ts -------------------------------------------------------------------------------- /src/Lib/Keychain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Lib/Keychain.ts -------------------------------------------------------------------------------- /src/Lib/NavigationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Lib/NavigationService.ts -------------------------------------------------------------------------------- /src/Lib/PreferencesManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Lib/PreferencesManager.ts -------------------------------------------------------------------------------- /src/Lib/ReactNativeCrypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Lib/ReactNativeCrypto.ts -------------------------------------------------------------------------------- /src/Lib/ReviewService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Lib/ReviewService.ts -------------------------------------------------------------------------------- /src/Lib/SnjsHelperHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Lib/SnjsHelperHooks.ts -------------------------------------------------------------------------------- /src/Lib/StatusManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Lib/StatusManager.ts -------------------------------------------------------------------------------- /src/Lib/Types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Lib/Types.ts -------------------------------------------------------------------------------- /src/Lib/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Lib/Utils.ts -------------------------------------------------------------------------------- /src/Lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Lib/constants.ts -------------------------------------------------------------------------------- /src/Lib/moment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Lib/moment.ts -------------------------------------------------------------------------------- /src/Lib/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@Lib" 3 | } 4 | -------------------------------------------------------------------------------- /src/ModalStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/ModalStack.tsx -------------------------------------------------------------------------------- /src/Screens/Authenticate/Authenticate.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Authenticate/Authenticate.styled.ts -------------------------------------------------------------------------------- /src/Screens/Authenticate/Authenticate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Authenticate/Authenticate.tsx -------------------------------------------------------------------------------- /src/Screens/Authenticate/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Authenticate/helpers.ts -------------------------------------------------------------------------------- /src/Screens/Compose/ComponentView.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Compose/ComponentView.styled.ts -------------------------------------------------------------------------------- /src/Screens/Compose/ComponentView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Compose/ComponentView.tsx -------------------------------------------------------------------------------- /src/Screens/Compose/Compose.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Compose/Compose.styled.ts -------------------------------------------------------------------------------- /src/Screens/Compose/Compose.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Compose/Compose.tsx -------------------------------------------------------------------------------- /src/Screens/InputModal/FileInputModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/InputModal/FileInputModal.tsx -------------------------------------------------------------------------------- /src/Screens/InputModal/InputModal.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/InputModal/InputModal.styled.ts -------------------------------------------------------------------------------- /src/Screens/InputModal/PasscodeInputModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/InputModal/PasscodeInputModal.tsx -------------------------------------------------------------------------------- /src/Screens/InputModal/TagInputModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/InputModal/TagInputModal.tsx -------------------------------------------------------------------------------- /src/Screens/ManageSessions/ManageSessions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/ManageSessions/ManageSessions.tsx -------------------------------------------------------------------------------- /src/Screens/ManageSessions/SessionCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/ManageSessions/SessionCell.tsx -------------------------------------------------------------------------------- /src/Screens/NoteHistory/NoteHistory.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/NoteHistory/NoteHistory.styled.ts -------------------------------------------------------------------------------- /src/Screens/NoteHistory/NoteHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/NoteHistory/NoteHistory.tsx -------------------------------------------------------------------------------- /src/Screens/NoteHistory/NoteHistoryCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/NoteHistory/NoteHistoryCell.tsx -------------------------------------------------------------------------------- /src/Screens/NoteHistory/NoteHistoryPreview.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/NoteHistory/NoteHistoryPreview.styled.ts -------------------------------------------------------------------------------- /src/Screens/NoteHistory/NoteHistoryPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/NoteHistory/NoteHistoryPreview.tsx -------------------------------------------------------------------------------- /src/Screens/NoteHistory/RemoteHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/NoteHistory/RemoteHistory.tsx -------------------------------------------------------------------------------- /src/Screens/NoteHistory/SessionHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/NoteHistory/SessionHistory.tsx -------------------------------------------------------------------------------- /src/Screens/Notes/NoteCell.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Notes/NoteCell.styled.ts -------------------------------------------------------------------------------- /src/Screens/Notes/NoteCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Notes/NoteCell.tsx -------------------------------------------------------------------------------- /src/Screens/Notes/NoteCellFlags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Notes/NoteCellFlags.tsx -------------------------------------------------------------------------------- /src/Screens/Notes/NoteCellIconFlags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Notes/NoteCellIconFlags.tsx -------------------------------------------------------------------------------- /src/Screens/Notes/NoteList.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Notes/NoteList.styled.ts -------------------------------------------------------------------------------- /src/Screens/Notes/NoteList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Notes/NoteList.tsx -------------------------------------------------------------------------------- /src/Screens/Notes/Notes.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Notes/Notes.styled.ts -------------------------------------------------------------------------------- /src/Screens/Notes/Notes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Notes/Notes.tsx -------------------------------------------------------------------------------- /src/Screens/Notes/OfflineBanner.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Notes/OfflineBanner.styled.ts -------------------------------------------------------------------------------- /src/Screens/Notes/OfflineBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Notes/OfflineBanner.tsx -------------------------------------------------------------------------------- /src/Screens/Root.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Root.styled.ts -------------------------------------------------------------------------------- /src/Screens/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Root.tsx -------------------------------------------------------------------------------- /src/Screens/Settings/Sections/AuthSection.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Settings/Sections/AuthSection.styled.ts -------------------------------------------------------------------------------- /src/Screens/Settings/Sections/AuthSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Settings/Sections/AuthSection.tsx -------------------------------------------------------------------------------- /src/Screens/Settings/Sections/CompanySection.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Settings/Sections/CompanySection.styled.ts -------------------------------------------------------------------------------- /src/Screens/Settings/Sections/CompanySection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Settings/Sections/CompanySection.tsx -------------------------------------------------------------------------------- /src/Screens/Settings/Sections/EncryptionSection.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Settings/Sections/EncryptionSection.styled.ts -------------------------------------------------------------------------------- /src/Screens/Settings/Sections/EncryptionSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Settings/Sections/EncryptionSection.tsx -------------------------------------------------------------------------------- /src/Screens/Settings/Sections/FilesSection.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Settings/Sections/FilesSection.styled.tsx -------------------------------------------------------------------------------- /src/Screens/Settings/Sections/FilesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Settings/Sections/FilesSection.tsx -------------------------------------------------------------------------------- /src/Screens/Settings/Sections/OptionsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Settings/Sections/OptionsSection.tsx -------------------------------------------------------------------------------- /src/Screens/Settings/Sections/PreferencesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Settings/Sections/PreferencesSection.tsx -------------------------------------------------------------------------------- /src/Screens/Settings/Sections/ProtectionsSection.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Settings/Sections/ProtectionsSection.styled.ts -------------------------------------------------------------------------------- /src/Screens/Settings/Sections/ProtectionsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Settings/Sections/ProtectionsSection.tsx -------------------------------------------------------------------------------- /src/Screens/Settings/Sections/SecuritySection.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Settings/Sections/SecuritySection.styled.ts -------------------------------------------------------------------------------- /src/Screens/Settings/Sections/SecuritySection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Settings/Sections/SecuritySection.tsx -------------------------------------------------------------------------------- /src/Screens/Settings/Settings.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Settings/Settings.styled.ts -------------------------------------------------------------------------------- /src/Screens/Settings/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/Settings/Settings.tsx -------------------------------------------------------------------------------- /src/Screens/SideMenu/Files.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/SideMenu/Files.styled.ts -------------------------------------------------------------------------------- /src/Screens/SideMenu/Files.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/SideMenu/Files.tsx -------------------------------------------------------------------------------- /src/Screens/SideMenu/Listed.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/SideMenu/Listed.styled.ts -------------------------------------------------------------------------------- /src/Screens/SideMenu/Listed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/SideMenu/Listed.tsx -------------------------------------------------------------------------------- /src/Screens/SideMenu/MainSideMenu.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/SideMenu/MainSideMenu.styled.ts -------------------------------------------------------------------------------- /src/Screens/SideMenu/MainSideMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/SideMenu/MainSideMenu.tsx -------------------------------------------------------------------------------- /src/Screens/SideMenu/NoteSideMenu.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/SideMenu/NoteSideMenu.styled.ts -------------------------------------------------------------------------------- /src/Screens/SideMenu/NoteSideMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/SideMenu/NoteSideMenu.tsx -------------------------------------------------------------------------------- /src/Screens/SideMenu/SideMenuCell.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/SideMenu/SideMenuCell.styled.ts -------------------------------------------------------------------------------- /src/Screens/SideMenu/SideMenuCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/SideMenu/SideMenuCell.tsx -------------------------------------------------------------------------------- /src/Screens/SideMenu/SideMenuHero.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/SideMenu/SideMenuHero.styled.ts -------------------------------------------------------------------------------- /src/Screens/SideMenu/SideMenuHero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/SideMenu/SideMenuHero.tsx -------------------------------------------------------------------------------- /src/Screens/SideMenu/SideMenuSection.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/SideMenu/SideMenuSection.styled.ts -------------------------------------------------------------------------------- /src/Screens/SideMenu/SideMenuSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/SideMenu/SideMenuSection.tsx -------------------------------------------------------------------------------- /src/Screens/SideMenu/TagSelectionList.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/SideMenu/TagSelectionList.styled.ts -------------------------------------------------------------------------------- /src/Screens/SideMenu/TagSelectionList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/SideMenu/TagSelectionList.tsx -------------------------------------------------------------------------------- /src/Screens/UploadedFilesList/UploadedFileItem.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/UploadedFilesList/UploadedFileItem.styled.ts -------------------------------------------------------------------------------- /src/Screens/UploadedFilesList/UploadedFileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/UploadedFilesList/UploadedFileItem.tsx -------------------------------------------------------------------------------- /src/Screens/UploadedFilesList/UploadedFileItemAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/UploadedFilesList/UploadedFileItemAction.ts -------------------------------------------------------------------------------- /src/Screens/UploadedFilesList/UploadedFilesList.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/UploadedFilesList/UploadedFilesList.styled.ts -------------------------------------------------------------------------------- /src/Screens/UploadedFilesList/UploadedFilesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/UploadedFilesList/UploadedFilesList.tsx -------------------------------------------------------------------------------- /src/Screens/ViewProtectedNote/ViewProtectedNote.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/ViewProtectedNote/ViewProtectedNote.styled.ts -------------------------------------------------------------------------------- /src/Screens/ViewProtectedNote/ViewProtectedNote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/ViewProtectedNote/ViewProtectedNote.tsx -------------------------------------------------------------------------------- /src/Screens/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@Screens" 3 | } 4 | -------------------------------------------------------------------------------- /src/Screens/screens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Screens/screens.ts -------------------------------------------------------------------------------- /src/Style/CssParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Style/CssParser.ts -------------------------------------------------------------------------------- /src/Style/CustomActionSheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Style/CustomActionSheet.ts -------------------------------------------------------------------------------- /src/Style/Icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Style/Icons.ts -------------------------------------------------------------------------------- /src/Style/Images/sn-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Style/Images/sn-logo.png -------------------------------------------------------------------------------- /src/Style/Images/sn-splash-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Style/Images/sn-splash-logo.png -------------------------------------------------------------------------------- /src/Style/MobileTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Style/MobileTheme.ts -------------------------------------------------------------------------------- /src/Style/ThemeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Style/ThemeService.ts -------------------------------------------------------------------------------- /src/Style/Themes/blue-dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Style/Themes/blue-dark.json -------------------------------------------------------------------------------- /src/Style/Themes/blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Style/Themes/blue.json -------------------------------------------------------------------------------- /src/Style/Themes/red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Style/Themes/red.json -------------------------------------------------------------------------------- /src/Style/Themes/styled-components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Style/Themes/styled-components.d.ts -------------------------------------------------------------------------------- /src/Style/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Style/Utils.ts -------------------------------------------------------------------------------- /src/Style/android_text_fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Style/android_text_fix.js -------------------------------------------------------------------------------- /src/Style/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@Style" 3 | } 4 | -------------------------------------------------------------------------------- /src/Types/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'react-native-search-box' 2 | -------------------------------------------------------------------------------- /src/Types/react-native-mail/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'react-native-mail' 2 | -------------------------------------------------------------------------------- /src/Types/react-native-privacy-snapshot/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Types/react-native-privacy-snapshot/index.d.ts -------------------------------------------------------------------------------- /src/Types/react-native-search-box/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'react-native-seach-box' 2 | -------------------------------------------------------------------------------- /src/Types/react-native-svg/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/src/Types/react-native-svg/index.d.ts -------------------------------------------------------------------------------- /src/Types/stylekit.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@standardnotes/stylekit' 2 | -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@Root" 3 | } 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/mobile/HEAD/yarn.lock --------------------------------------------------------------------------------