├── .eslintrc.js ├── .expo-shared └── assets.json ├── .github └── FUNDING.yml ├── .gitignore ├── .watchmanconfig ├── AUTHORS ├── App.ts ├── LICENSES └── GPL-3.0-only ├── README.md ├── android ├── app │ ├── build.gradle │ ├── expo.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── assets │ │ └── kernel-manifest.json │ │ ├── java │ │ └── host │ │ │ └── exp │ │ │ └── exponent │ │ │ ├── MainActivity.java │ │ │ ├── MainApplication.java │ │ │ └── generated │ │ │ ├── AppConstants.java │ │ │ └── DetachBuildConstants.java │ │ └── res │ │ ├── drawable-hdpi │ │ ├── ic_arrow_back_white_36dp.png │ │ ├── ic_home_white_36dp.png │ │ ├── ic_logo_white_32dp.png │ │ ├── ic_refresh_white_36dp.png │ │ └── ic_share_white_36dp.png │ │ ├── drawable-mdpi │ │ ├── ic_arrow_back_white_36dp.png │ │ ├── ic_home_white_36dp.png │ │ ├── ic_logo_white_32dp.png │ │ ├── ic_refresh_white_36dp.png │ │ └── ic_share_white_36dp.png │ │ ├── drawable-xhdpi │ │ ├── ic_arrow_back_white_36dp.png │ │ ├── ic_home_white_36dp.png │ │ ├── ic_logo_white_32dp.png │ │ ├── ic_refresh_white_36dp.png │ │ └── ic_share_white_36dp.png │ │ ├── drawable-xxhdpi │ │ ├── ic_arrow_back_white_36dp.png │ │ ├── ic_home_white_36dp.png │ │ ├── ic_logo_white_32dp.png │ │ ├── ic_refresh_white_36dp.png │ │ └── ic_share_white_36dp.png │ │ ├── drawable-xxxhdpi │ │ ├── big_logo_dark.png │ │ ├── big_logo_dark_filled.png │ │ ├── big_logo_filled.png │ │ ├── big_logo_new_filled.png │ │ ├── ic_arrow_back_white_36dp.png │ │ ├── ic_home_white_36dp.png │ │ ├── ic_logo_white_32dp.png │ │ ├── ic_refresh_white_36dp.png │ │ ├── ic_share_white_36dp.png │ │ ├── notification_icon.png │ │ ├── pin_white.png │ │ ├── pin_white_fade.png │ │ ├── shell_launch_background_image.png │ │ └── shell_notification_icon.png │ │ ├── drawable │ │ └── splash_background.xml │ │ ├── layout │ │ ├── error_activity_new.xml │ │ ├── error_console_fragment.xml │ │ ├── error_console_list_item.xml │ │ ├── error_fragment.xml │ │ ├── notification.xml │ │ └── notification_shell_app.xml │ │ ├── mipmap-hdpi │ │ ├── dev_icon.png │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ ├── dev_icon.png │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ ├── dev_icon.png │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ ├── dev_icon.png │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ ├── dev_icon.png │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── debug.keystore ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew └── settings.gradle ├── app.json ├── assets ├── icon.png └── splash.png ├── babel.config.js ├── deploy_dist.sh ├── etesync.mobileconfig ├── ios ├── EteSyncTests │ ├── EteSyncTests.swift │ └── Info.plist ├── Podfile ├── Podfile.lock ├── etesync.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── etesync.xcscheme ├── etesync.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── etesync │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── AppIcon1024x1024.png │ │ ├── AppIcon20x20@2x.png │ │ ├── AppIcon20x20@3x.png │ │ ├── AppIcon29x29@2x.png │ │ ├── AppIcon29x29@3x.png │ │ ├── AppIcon40x40@2x.png │ │ ├── AppIcon40x40@3x.png │ │ ├── AppIcon60x60@2x.png │ │ ├── AppIcon60x60@3x.png │ │ ├── AppIcon76x76@2x~ipad.png │ │ ├── AppIcon76x76~ipad.png │ │ ├── AppIcon83.5x83.5@2x~ipad.png │ │ └── Contents.json │ ├── Supporting │ ├── EXSDKVersions.plist │ ├── EXShell.json │ ├── EXShell.plist │ ├── Info.plist │ ├── LaunchScreen.xib │ ├── launch_background_image.png │ ├── launch_icon.png │ ├── main.m │ └── sdkVersions.json │ ├── etesync.entitlements │ └── modules │ ├── ContactSerializer.swift │ ├── EteEXCalendar.h │ ├── EteEXCalendar.m │ ├── EtesyncNative.swift │ ├── EtesyncNativeBridge.m │ ├── EtesyncNativeTest.swift │ ├── Utils.swift │ └── etesync-Bridging-Header.h ├── license-gen.js ├── licenses.json ├── package.json ├── shim.js ├── src ├── AboutScreen.tsx ├── AccountWizardScreen.tsx ├── App.tsx ├── CollectionChangelogScreen.tsx ├── CollectionEditScreen.tsx ├── CollectionImportScreen.tsx ├── CollectionItemContact.tsx ├── CollectionItemEvent.tsx ├── CollectionItemScreen.tsx ├── CollectionItemTask.tsx ├── CollectionMemberAddDialog.tsx ├── CollectionMembersScreen.tsx ├── DebugLogsScreen.tsx ├── Drawer.tsx ├── ErrorBoundary.tsx ├── EteSyncNative.ts ├── HomeScreen.tsx ├── InvitationsScreen.tsx ├── JournalEditScreen.tsx ├── JournalEntriesScreen.tsx ├── JournalImportScreen.tsx ├── JournalItemContact.tsx ├── JournalItemEvent.tsx ├── JournalItemHeader.tsx ├── JournalItemSaveScreen.tsx ├── JournalItemScreen.tsx ├── JournalItemTask.tsx ├── JournalMembersScreen.tsx ├── LegacyHomeScreen.tsx ├── LogoutDialog.tsx ├── Permissions.tsx ├── RootNavigator.tsx ├── SettingsGate.tsx ├── SettingsScreen.tsx ├── SettingsScreenLegacy.tsx ├── SyncGate.tsx ├── SyncHandler.tsx ├── components │ ├── EncryptionLoginForm.tsx │ ├── JournalListScreen.tsx │ ├── JournalListScreenEb.tsx │ ├── LoginForm.tsx │ └── WebviewKeygen.tsx ├── constants │ └── index.ts ├── credentials.tsx ├── data │ └── zones.json ├── etesync-helpers.ts ├── helpers.test.tsx ├── helpers.tsx ├── images │ └── icon.png ├── index.tsx ├── logging.ts ├── login │ ├── LoginScreen.tsx │ └── index.tsx ├── pim-types.ts ├── store │ ├── actions.ts │ ├── construct.ts │ ├── index.test.ts │ ├── index.ts │ ├── promise-middleware.ts │ └── reducers.ts ├── sync │ ├── SyncManager.ts │ ├── SyncManagerAddressBook.ts │ ├── SyncManagerBase.ts │ ├── SyncManagerCalendar.ts │ ├── SyncManagerTaskList.ts │ ├── SyncSettings.tsx │ ├── helpers.ts │ ├── index.ts │ └── legacy │ │ ├── SyncManager.ts │ │ ├── SyncManagerAddressBook.ts │ │ ├── SyncManagerBase.ts │ │ ├── SyncManagerCalendar.ts │ │ └── SyncManagerTaskList.ts ├── types │ ├── ical.js.d.ts │ └── redux-persist.d.ts └── widgets │ ├── Alert.tsx │ ├── Checkbox.tsx │ ├── ColorBox.tsx │ ├── ColorPicker.tsx │ ├── ConfirmationDialog.tsx │ ├── Container.tsx │ ├── ErrorDialog.tsx │ ├── ErrorOrLoadingDialog.tsx │ ├── ExternalLink.tsx │ ├── LoadingIndicator.tsx │ ├── Markdown.tsx │ ├── PasswordInput.tsx │ ├── PrettyFingerprint.tsx │ ├── PrettyFingerprintEb.tsx │ ├── Row.tsx │ ├── ScrollView.tsx │ ├── Select.tsx │ ├── Small.tsx │ ├── TextInput.tsx │ ├── Typography.tsx │ └── Wizard.tsx ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Tom Hacohen 2 | -------------------------------------------------------------------------------- /App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/App.ts -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-only: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/LICENSES/GPL-3.0-only -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/README.md -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/expo.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/expo.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/assets/kernel-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/assets/kernel-manifest.json -------------------------------------------------------------------------------- /android/app/src/main/java/host/exp/exponent/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/java/host/exp/exponent/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/host/exp/exponent/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/java/host/exp/exponent/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/java/host/exp/exponent/generated/AppConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/java/host/exp/exponent/generated/AppConstants.java -------------------------------------------------------------------------------- /android/app/src/main/java/host/exp/exponent/generated/DetachBuildConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/java/host/exp/exponent/generated/DetachBuildConstants.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_arrow_back_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-hdpi/ic_arrow_back_white_36dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_home_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-hdpi/ic_home_white_36dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_logo_white_32dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-hdpi/ic_logo_white_32dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_refresh_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-hdpi/ic_refresh_white_36dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_share_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-hdpi/ic_share_white_36dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_arrow_back_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-mdpi/ic_arrow_back_white_36dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_home_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-mdpi/ic_home_white_36dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_logo_white_32dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-mdpi/ic_logo_white_32dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_refresh_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-mdpi/ic_refresh_white_36dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_share_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-mdpi/ic_share_white_36dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_arrow_back_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xhdpi/ic_arrow_back_white_36dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_home_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xhdpi/ic_home_white_36dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_logo_white_32dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xhdpi/ic_logo_white_32dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_refresh_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xhdpi/ic_refresh_white_36dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_share_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xhdpi/ic_share_white_36dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_arrow_back_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_arrow_back_white_36dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_home_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_home_white_36dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_logo_white_32dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_logo_white_32dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_refresh_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_refresh_white_36dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_share_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_share_white_36dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/big_logo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xxxhdpi/big_logo_dark.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/big_logo_dark_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xxxhdpi/big_logo_dark_filled.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/big_logo_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xxxhdpi/big_logo_filled.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/big_logo_new_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xxxhdpi/big_logo_new_filled.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_arrow_back_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_arrow_back_white_36dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_home_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_home_white_36dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_logo_white_32dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_logo_white_32dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_refresh_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_refresh_white_36dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_share_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_share_white_36dp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xxxhdpi/notification_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/pin_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xxxhdpi/pin_white.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/pin_white_fade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xxxhdpi/pin_white_fade.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/shell_launch_background_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xxxhdpi/shell_launch_background_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/shell_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable-xxxhdpi/shell_notification_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/splash_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/drawable/splash_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/error_activity_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/layout/error_activity_new.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/error_console_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/layout/error_console_fragment.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/error_console_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/layout/error_console_list_item.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/error_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/layout/error_fragment.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/layout/notification.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/notification_shell_app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/layout/notification_shell_app.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/dev_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/mipmap-hdpi/dev_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/dev_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/mipmap-mdpi/dev_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/dev_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/mipmap-xhdpi/dev_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/dev_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/mipmap-xxhdpi/dev_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/dev_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/mipmap-xxxhdpi/dev_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/debug.keystore -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/app.json -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/babel.config.js -------------------------------------------------------------------------------- /deploy_dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/deploy_dist.sh -------------------------------------------------------------------------------- /etesync.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/etesync.mobileconfig -------------------------------------------------------------------------------- /ios/EteSyncTests/EteSyncTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/EteSyncTests/EteSyncTests.swift -------------------------------------------------------------------------------- /ios/EteSyncTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/EteSyncTests/Info.plist -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/etesync.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/etesync.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/etesync.xcodeproj/xcshareddata/xcschemes/etesync.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync.xcodeproj/xcshareddata/xcschemes/etesync.xcscheme -------------------------------------------------------------------------------- /ios/etesync.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/etesync.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/etesync/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/AppDelegate.h -------------------------------------------------------------------------------- /ios/etesync/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/AppDelegate.m -------------------------------------------------------------------------------- /ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon1024x1024.png -------------------------------------------------------------------------------- /ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon20x20@2x.png -------------------------------------------------------------------------------- /ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon20x20@3x.png -------------------------------------------------------------------------------- /ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png -------------------------------------------------------------------------------- /ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png -------------------------------------------------------------------------------- /ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png -------------------------------------------------------------------------------- /ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png -------------------------------------------------------------------------------- /ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png -------------------------------------------------------------------------------- /ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon76x76@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon76x76@2x~ipad.png -------------------------------------------------------------------------------- /ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon76x76~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon76x76~ipad.png -------------------------------------------------------------------------------- /ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon83.5x83.5@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/Assets.xcassets/AppIcon.appiconset/AppIcon83.5x83.5@2x~ipad.png -------------------------------------------------------------------------------- /ios/etesync/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/etesync/Supporting/EXSDKVersions.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/Supporting/EXSDKVersions.plist -------------------------------------------------------------------------------- /ios/etesync/Supporting/EXShell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/Supporting/EXShell.json -------------------------------------------------------------------------------- /ios/etesync/Supporting/EXShell.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/Supporting/EXShell.plist -------------------------------------------------------------------------------- /ios/etesync/Supporting/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/Supporting/Info.plist -------------------------------------------------------------------------------- /ios/etesync/Supporting/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/Supporting/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/etesync/Supporting/launch_background_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/Supporting/launch_background_image.png -------------------------------------------------------------------------------- /ios/etesync/Supporting/launch_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/Supporting/launch_icon.png -------------------------------------------------------------------------------- /ios/etesync/Supporting/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/Supporting/main.m -------------------------------------------------------------------------------- /ios/etesync/Supporting/sdkVersions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/Supporting/sdkVersions.json -------------------------------------------------------------------------------- /ios/etesync/etesync.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/etesync.entitlements -------------------------------------------------------------------------------- /ios/etesync/modules/ContactSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/modules/ContactSerializer.swift -------------------------------------------------------------------------------- /ios/etesync/modules/EteEXCalendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/modules/EteEXCalendar.h -------------------------------------------------------------------------------- /ios/etesync/modules/EteEXCalendar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/modules/EteEXCalendar.m -------------------------------------------------------------------------------- /ios/etesync/modules/EtesyncNative.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/modules/EtesyncNative.swift -------------------------------------------------------------------------------- /ios/etesync/modules/EtesyncNativeBridge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/modules/EtesyncNativeBridge.m -------------------------------------------------------------------------------- /ios/etesync/modules/EtesyncNativeTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/modules/EtesyncNativeTest.swift -------------------------------------------------------------------------------- /ios/etesync/modules/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/modules/Utils.swift -------------------------------------------------------------------------------- /ios/etesync/modules/etesync-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/ios/etesync/modules/etesync-Bridging-Header.h -------------------------------------------------------------------------------- /license-gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/license-gen.js -------------------------------------------------------------------------------- /licenses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/licenses.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/package.json -------------------------------------------------------------------------------- /shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/shim.js -------------------------------------------------------------------------------- /src/AboutScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/AboutScreen.tsx -------------------------------------------------------------------------------- /src/AccountWizardScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/AccountWizardScreen.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/CollectionChangelogScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/CollectionChangelogScreen.tsx -------------------------------------------------------------------------------- /src/CollectionEditScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/CollectionEditScreen.tsx -------------------------------------------------------------------------------- /src/CollectionImportScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/CollectionImportScreen.tsx -------------------------------------------------------------------------------- /src/CollectionItemContact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/CollectionItemContact.tsx -------------------------------------------------------------------------------- /src/CollectionItemEvent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/CollectionItemEvent.tsx -------------------------------------------------------------------------------- /src/CollectionItemScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/CollectionItemScreen.tsx -------------------------------------------------------------------------------- /src/CollectionItemTask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/CollectionItemTask.tsx -------------------------------------------------------------------------------- /src/CollectionMemberAddDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/CollectionMemberAddDialog.tsx -------------------------------------------------------------------------------- /src/CollectionMembersScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/CollectionMembersScreen.tsx -------------------------------------------------------------------------------- /src/DebugLogsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/DebugLogsScreen.tsx -------------------------------------------------------------------------------- /src/Drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/Drawer.tsx -------------------------------------------------------------------------------- /src/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/ErrorBoundary.tsx -------------------------------------------------------------------------------- /src/EteSyncNative.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/EteSyncNative.ts -------------------------------------------------------------------------------- /src/HomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/HomeScreen.tsx -------------------------------------------------------------------------------- /src/InvitationsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/InvitationsScreen.tsx -------------------------------------------------------------------------------- /src/JournalEditScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/JournalEditScreen.tsx -------------------------------------------------------------------------------- /src/JournalEntriesScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/JournalEntriesScreen.tsx -------------------------------------------------------------------------------- /src/JournalImportScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/JournalImportScreen.tsx -------------------------------------------------------------------------------- /src/JournalItemContact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/JournalItemContact.tsx -------------------------------------------------------------------------------- /src/JournalItemEvent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/JournalItemEvent.tsx -------------------------------------------------------------------------------- /src/JournalItemHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/JournalItemHeader.tsx -------------------------------------------------------------------------------- /src/JournalItemSaveScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/JournalItemSaveScreen.tsx -------------------------------------------------------------------------------- /src/JournalItemScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/JournalItemScreen.tsx -------------------------------------------------------------------------------- /src/JournalItemTask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/JournalItemTask.tsx -------------------------------------------------------------------------------- /src/JournalMembersScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/JournalMembersScreen.tsx -------------------------------------------------------------------------------- /src/LegacyHomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/LegacyHomeScreen.tsx -------------------------------------------------------------------------------- /src/LogoutDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/LogoutDialog.tsx -------------------------------------------------------------------------------- /src/Permissions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/Permissions.tsx -------------------------------------------------------------------------------- /src/RootNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/RootNavigator.tsx -------------------------------------------------------------------------------- /src/SettingsGate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/SettingsGate.tsx -------------------------------------------------------------------------------- /src/SettingsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/SettingsScreen.tsx -------------------------------------------------------------------------------- /src/SettingsScreenLegacy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/SettingsScreenLegacy.tsx -------------------------------------------------------------------------------- /src/SyncGate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/SyncGate.tsx -------------------------------------------------------------------------------- /src/SyncHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/SyncHandler.tsx -------------------------------------------------------------------------------- /src/components/EncryptionLoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/components/EncryptionLoginForm.tsx -------------------------------------------------------------------------------- /src/components/JournalListScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/components/JournalListScreen.tsx -------------------------------------------------------------------------------- /src/components/JournalListScreenEb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/components/JournalListScreenEb.tsx -------------------------------------------------------------------------------- /src/components/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/components/LoginForm.tsx -------------------------------------------------------------------------------- /src/components/WebviewKeygen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/components/WebviewKeygen.tsx -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/credentials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/credentials.tsx -------------------------------------------------------------------------------- /src/data/zones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/data/zones.json -------------------------------------------------------------------------------- /src/etesync-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/etesync-helpers.ts -------------------------------------------------------------------------------- /src/helpers.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/helpers.test.tsx -------------------------------------------------------------------------------- /src/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/helpers.tsx -------------------------------------------------------------------------------- /src/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/images/icon.png -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/logging.ts -------------------------------------------------------------------------------- /src/login/LoginScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/login/LoginScreen.tsx -------------------------------------------------------------------------------- /src/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/login/index.tsx -------------------------------------------------------------------------------- /src/pim-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/pim-types.ts -------------------------------------------------------------------------------- /src/store/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/store/actions.ts -------------------------------------------------------------------------------- /src/store/construct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/store/construct.ts -------------------------------------------------------------------------------- /src/store/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/store/index.test.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/promise-middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/store/promise-middleware.ts -------------------------------------------------------------------------------- /src/store/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/store/reducers.ts -------------------------------------------------------------------------------- /src/sync/SyncManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/sync/SyncManager.ts -------------------------------------------------------------------------------- /src/sync/SyncManagerAddressBook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/sync/SyncManagerAddressBook.ts -------------------------------------------------------------------------------- /src/sync/SyncManagerBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/sync/SyncManagerBase.ts -------------------------------------------------------------------------------- /src/sync/SyncManagerCalendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/sync/SyncManagerCalendar.ts -------------------------------------------------------------------------------- /src/sync/SyncManagerTaskList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/sync/SyncManagerTaskList.ts -------------------------------------------------------------------------------- /src/sync/SyncSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/sync/SyncSettings.tsx -------------------------------------------------------------------------------- /src/sync/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/sync/helpers.ts -------------------------------------------------------------------------------- /src/sync/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/sync/index.ts -------------------------------------------------------------------------------- /src/sync/legacy/SyncManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/sync/legacy/SyncManager.ts -------------------------------------------------------------------------------- /src/sync/legacy/SyncManagerAddressBook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/sync/legacy/SyncManagerAddressBook.ts -------------------------------------------------------------------------------- /src/sync/legacy/SyncManagerBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/sync/legacy/SyncManagerBase.ts -------------------------------------------------------------------------------- /src/sync/legacy/SyncManagerCalendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/sync/legacy/SyncManagerCalendar.ts -------------------------------------------------------------------------------- /src/sync/legacy/SyncManagerTaskList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/sync/legacy/SyncManagerTaskList.ts -------------------------------------------------------------------------------- /src/types/ical.js.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/types/ical.js.d.ts -------------------------------------------------------------------------------- /src/types/redux-persist.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/types/redux-persist.d.ts -------------------------------------------------------------------------------- /src/widgets/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/widgets/Alert.tsx -------------------------------------------------------------------------------- /src/widgets/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/widgets/Checkbox.tsx -------------------------------------------------------------------------------- /src/widgets/ColorBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/widgets/ColorBox.tsx -------------------------------------------------------------------------------- /src/widgets/ColorPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/widgets/ColorPicker.tsx -------------------------------------------------------------------------------- /src/widgets/ConfirmationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/widgets/ConfirmationDialog.tsx -------------------------------------------------------------------------------- /src/widgets/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/widgets/Container.tsx -------------------------------------------------------------------------------- /src/widgets/ErrorDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/widgets/ErrorDialog.tsx -------------------------------------------------------------------------------- /src/widgets/ErrorOrLoadingDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/widgets/ErrorOrLoadingDialog.tsx -------------------------------------------------------------------------------- /src/widgets/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/widgets/ExternalLink.tsx -------------------------------------------------------------------------------- /src/widgets/LoadingIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/widgets/LoadingIndicator.tsx -------------------------------------------------------------------------------- /src/widgets/Markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/widgets/Markdown.tsx -------------------------------------------------------------------------------- /src/widgets/PasswordInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/widgets/PasswordInput.tsx -------------------------------------------------------------------------------- /src/widgets/PrettyFingerprint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/widgets/PrettyFingerprint.tsx -------------------------------------------------------------------------------- /src/widgets/PrettyFingerprintEb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/widgets/PrettyFingerprintEb.tsx -------------------------------------------------------------------------------- /src/widgets/Row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/widgets/Row.tsx -------------------------------------------------------------------------------- /src/widgets/ScrollView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/widgets/ScrollView.tsx -------------------------------------------------------------------------------- /src/widgets/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/widgets/Select.tsx -------------------------------------------------------------------------------- /src/widgets/Small.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/widgets/Small.tsx -------------------------------------------------------------------------------- /src/widgets/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/widgets/TextInput.tsx -------------------------------------------------------------------------------- /src/widgets/Typography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/widgets/Typography.tsx -------------------------------------------------------------------------------- /src/widgets/Wizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/src/widgets/Wizard.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etesync/ios/HEAD/yarn.lock --------------------------------------------------------------------------------