├── .github └── workflows │ ├── codeql-analysis.yml │ └── main.yml ├── .gitignore ├── .sauce └── config.yml ├── CONTRIBUTING.md ├── COPYING.txt ├── README.md ├── SECURITY.md ├── assets ├── ON_banner_g+.xcf ├── ON_banner_play.png ├── ON_banner_play.xcf ├── ON_banner_site.png ├── css │ └── style.scss ├── files.svg ├── help │ └── help.md ├── logo-foreground.svg ├── logo-monochrome.svg ├── logo.png ├── logo.svg ├── play.svg ├── play_store_pics │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── 06.png │ ├── 07.png │ ├── 08.png │ ├── 09.png │ ├── 10.png │ ├── 11.png │ └── 12.png ├── popup.png ├── popup.svg ├── promo_video_thumb.png └── translations │ ├── arrays.xml │ ├── pictures.txt │ ├── play_store_description.txt │ └── strings.xml ├── build.gradle ├── etc └── logo-alpha.png ├── fastlane └── metadata │ └── android │ └── en-US │ ├── changelogs │ ├── 237.txt │ ├── 238.txt │ └── 331.txt │ ├── full_description.txt │ ├── images │ ├── feature-graphic.png │ ├── icon.png │ └── phoneScreenshots │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── 4.png │ ├── short_description.txt │ ├── title.txt │ └── video.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── lombok.config ├── omniNotes ├── .gitignore ├── build.gradle ├── lint.xml ├── proguard-rules.txt └── src │ ├── alpha │ ├── java │ │ └── it │ │ │ └── feio │ │ │ └── android │ │ │ └── omninotes │ │ │ ├── helpers │ │ │ └── GeocodeProviderFactory.java │ │ │ └── utils │ │ │ └── Constants.java │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values │ │ └── strings.xml │ │ └── xml │ │ └── shortcuts.xml │ ├── androidTest │ └── java │ │ └── it │ │ └── feio │ │ └── android │ │ └── omninotes │ │ ├── async │ │ └── upgrade │ │ │ └── UpgradeProcessorTest.kt │ │ ├── db │ │ └── DbHelperTest.java │ │ ├── exceptions │ │ └── TestException.java │ │ ├── helpers │ │ ├── AppVersionHelperTest.java │ │ ├── BackupHelperTest.java │ │ ├── DocumentFileHelperTest.kt │ │ ├── GeocodeProviderBaseFactoryTest.kt │ │ ├── IntentHelperTest.java │ │ ├── LanguageHelperTest.java │ │ ├── TagOpenerHelperTest.kt │ │ └── count │ │ │ └── CountFactoryTest.java │ │ ├── testutils │ │ ├── BaseAndroidTestCase.java │ │ ├── NoRealDeviceTest.java │ │ └── RetryableAssert.java │ │ ├── ui │ │ ├── AutoBackupTest.java │ │ ├── BaseEspressoTest.java │ │ ├── CategoryLifecycleTest.java │ │ ├── DrawerMenusEspressoTest.java │ │ ├── FabCameraNoteTest.java │ │ ├── FabLifecycleTest.java │ │ ├── MrJingleLifecycleTest.java │ │ ├── NoteLifecycleTest.java │ │ ├── NoteListMenuTest.java │ │ ├── RecurrenceRuleTest.java │ │ ├── RemindersLifecycleTest.java │ │ ├── SearchTagBackArrowTest.java │ │ └── SettingsActivityTest.java │ │ └── utils │ │ ├── BitmapHelperTest.java │ │ ├── ClickWithoutDisplayConstraint.java │ │ ├── FileProviderHelperTest.kt │ │ ├── GeocodeHelperTest.java │ │ ├── IntentCheckerTest.kt │ │ ├── IsEqualTrimmingAndIgnoringCase.java │ │ ├── MiscUtilsTest.kt │ │ ├── ParcelableUtilTest.java │ │ ├── ReminderHelperTest.java │ │ ├── SecurityTest.kt │ │ ├── ShortcutHelperTest.java │ │ ├── StorageHelperTest.kt │ │ ├── VisibleViewMatcher.java │ │ └── date │ │ └── RecurrenceHelperTest.java │ ├── beta │ ├── java │ │ └── it │ │ │ └── feio │ │ │ └── android │ │ │ └── omninotes │ │ │ ├── helpers │ │ │ └── GeocodeProviderFactory.java │ │ │ └── utils │ │ │ └── Constants.java │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── strings.xml │ ├── foss │ ├── java │ │ └── it │ │ │ └── feio │ │ │ └── android │ │ │ └── omninotes │ │ │ ├── helpers │ │ │ └── GeocodeProviderFactory.java │ │ │ └── utils │ │ │ └── Constants.java │ └── res │ │ ├── values │ │ ├── integers.xml │ │ └── strings.xml │ │ └── xml │ │ └── shortcuts.xml │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── fonts │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── RobotoSlab-Bold.ttf │ │ │ └── RobotoSlab-Regular.ttf │ │ ├── html │ │ │ └── about.html │ │ └── sql │ │ │ ├── create.sql │ │ │ ├── upgrade-390.sql │ │ │ ├── upgrade-391.sql │ │ │ ├── upgrade-394.sql │ │ │ ├── upgrade-410.sql │ │ │ ├── upgrade-414.sql │ │ │ ├── upgrade-450.sql │ │ │ ├── upgrade-451.sql │ │ │ ├── upgrade-453.sql │ │ │ ├── upgrade-481.sql │ │ │ ├── upgrade-482.sql │ │ │ └── upgrade-501.sql │ ├── java │ │ └── it │ │ │ └── feio │ │ │ └── android │ │ │ └── omninotes │ │ │ ├── AboutActivity.java │ │ │ ├── BaseActivity.java │ │ │ ├── BaseFragment.java │ │ │ ├── CategoryActivity.java │ │ │ ├── DetailFragment.java │ │ │ ├── GalleryActivity.java │ │ │ ├── ListFragment.java │ │ │ ├── MainActivity.java │ │ │ ├── NavigationDrawerFragment.java │ │ │ ├── NoteInfosActivity.java │ │ │ ├── OmniNotes.java │ │ │ ├── PasswordActivity.java │ │ │ ├── SettingsActivity.java │ │ │ ├── SettingsFragment.java │ │ │ ├── ShortcutActivity.java │ │ │ ├── SketchFragment.java │ │ │ ├── SnoozeActivity.java │ │ │ ├── StatsActivity.java │ │ │ ├── async │ │ │ ├── AlarmRestoreOnRebootService.java │ │ │ ├── AttachmentTask.java │ │ │ ├── CategoryMenuTask.java │ │ │ ├── DataBackupIntentService.java │ │ │ ├── MainMenuTask.java │ │ │ ├── TextWorkerTask.java │ │ │ ├── UpdateWidgetsTask.java │ │ │ ├── bus │ │ │ │ ├── CategoriesUpdatedEvent.java │ │ │ │ ├── DynamicNavigationReadyEvent.java │ │ │ │ ├── NavigationUpdatedEvent.java │ │ │ │ ├── NavigationUpdatedNavDrawerClosedEvent.java │ │ │ │ ├── NotesDeletedEvent.java │ │ │ │ ├── NotesLoadedEvent.java │ │ │ │ ├── NotesMergeEvent.java │ │ │ │ ├── NotesUpdatedEvent.java │ │ │ │ ├── NotificationRemovedEvent.java │ │ │ │ ├── NotificationsGrantedEvent.java │ │ │ │ ├── PasswordRemovedEvent.java │ │ │ │ ├── PushbulletReplyEvent.java │ │ │ │ └── SwitchFragmentEvent.java │ │ │ ├── notes │ │ │ │ ├── NoteLoaderTask.java │ │ │ │ ├── NoteProcessor.java │ │ │ │ ├── NoteProcessorArchive.java │ │ │ │ ├── NoteProcessorCategorize.java │ │ │ │ ├── NoteProcessorDelete.java │ │ │ │ ├── NoteProcessorTrash.java │ │ │ │ └── SaveNoteTask.java │ │ │ └── upgrade │ │ │ │ └── UpgradeProcessor.java │ │ │ ├── db │ │ │ ├── DbHelper.java │ │ │ └── SqlParser.java │ │ │ ├── exceptions │ │ │ ├── BackupException.java │ │ │ ├── DatabaseException.java │ │ │ ├── GenericException.java │ │ │ ├── NotesLoadingException.java │ │ │ ├── checked │ │ │ │ ├── BackupAttachmentException.java │ │ │ │ ├── ContentSecurityException.kt │ │ │ │ ├── ExternalStorageProviderException.java │ │ │ │ └── UnhandledIntentException.java │ │ │ └── unchecked │ │ │ │ └── ExternalDirectoryCreationException.java │ │ │ ├── extensions │ │ │ ├── ONDashClockExtension.java │ │ │ └── PushBulletExtension.java │ │ │ ├── factory │ │ │ └── MediaStoreFactory.java │ │ │ ├── helpers │ │ │ ├── AppVersionHelper.java │ │ │ ├── AttachmentsHelper.java │ │ │ ├── BackupHelper.java │ │ │ ├── BuildHelper.kt │ │ │ ├── ChangelogHelper.java │ │ │ ├── DocumentFileHelper.kt │ │ │ ├── GeocodeProviderBaseFactory.java │ │ │ ├── IntentHelper.java │ │ │ ├── LanguageHelper.java │ │ │ ├── LogDelegate.java │ │ │ ├── NotesHelper.java │ │ │ ├── PermissionsHelper.java │ │ │ ├── SpringImportHelper.java │ │ │ ├── TagOpenerHelper.kt │ │ │ ├── count │ │ │ │ ├── CountFactory.java │ │ │ │ ├── DefaultWordCounter.java │ │ │ │ ├── IdeogramsWordCounter.java │ │ │ │ └── WordCounter.java │ │ │ ├── date │ │ │ │ ├── DateHelper.java │ │ │ │ └── RecurrenceHelper.java │ │ │ └── notifications │ │ │ │ ├── NotificationChannel.java │ │ │ │ ├── NotificationChannels.java │ │ │ │ └── NotificationsHelper.java │ │ │ ├── intro │ │ │ ├── IntroActivity.java │ │ │ ├── IntroFragment.java │ │ │ ├── IntroSlide1.java │ │ │ ├── IntroSlide2.java │ │ │ ├── IntroSlide3.java │ │ │ ├── IntroSlide4.java │ │ │ ├── IntroSlide5.java │ │ │ └── IntroSlide6.java │ │ │ ├── models │ │ │ ├── Attachment.java │ │ │ ├── Category.java │ │ │ ├── NavigationItem.java │ │ │ ├── Note.java │ │ │ ├── ONStyle.java │ │ │ ├── PasswordValidator.java │ │ │ ├── PushBulletMessage.java │ │ │ ├── Stats.java │ │ │ ├── StatsSingleNote.java │ │ │ ├── Tag.java │ │ │ ├── UndoBarController.java │ │ │ ├── adapters │ │ │ │ ├── AttachmentAdapter.java │ │ │ │ ├── CategoryBaseAdapter.java │ │ │ │ ├── CategoryRecyclerViewAdapter.java │ │ │ │ ├── NavDrawerAdapter.java │ │ │ │ ├── NoteAdapter.java │ │ │ │ ├── PlacesAutoCompleteAdapter.java │ │ │ │ └── category │ │ │ │ │ └── CategoryViewHolder.java │ │ │ ├── holders │ │ │ │ ├── ImageAndTextItem.java │ │ │ │ └── NoteViewHolder.java │ │ │ ├── listeners │ │ │ │ ├── OnAttachingFileListener.java │ │ │ │ ├── OnCABItemClickedListener.java │ │ │ │ ├── OnDrawChangedListener.java │ │ │ │ ├── OnFabItemClickedListener.java │ │ │ │ ├── OnGeoUtilResultListener.java │ │ │ │ ├── OnPermissionRequestedListener.java │ │ │ │ ├── OnReminderPickedListener.java │ │ │ │ ├── OnViewTouchedListener.java │ │ │ │ └── RecyclerViewItemClickSupport.java │ │ │ ├── misc │ │ │ │ ├── DynamicNavigationLookupTable.java │ │ │ │ └── PlayStoreMetadataFetcherResult.java │ │ │ └── views │ │ │ │ ├── ExpandableHeightGridView.java │ │ │ │ ├── Fab.java │ │ │ │ ├── InterceptorFrameLayout.java │ │ │ │ ├── InterceptorLinearLayout.java │ │ │ │ ├── NonScrollableListView.java │ │ │ │ ├── RecyclerViewEmptySupport.java │ │ │ │ ├── SketchView.java │ │ │ │ ├── SquareImageView.java │ │ │ │ └── VerticalSeekBar.java │ │ │ ├── receiver │ │ │ ├── AlarmReceiver.java │ │ │ └── BootCompleteReceiver.java │ │ │ ├── services │ │ │ └── NotificationListener.java │ │ │ ├── utils │ │ │ ├── AlphaManager.java │ │ │ ├── AnimationsHelper.java │ │ │ ├── AssetUtils.java │ │ │ ├── BitmapHelper.java │ │ │ ├── ColorsUtil.java │ │ │ ├── ConstantsBase.java │ │ │ ├── Display.java │ │ │ ├── FileHelper.java │ │ │ ├── FileProviderHelper.java │ │ │ ├── GeocodeHelper.java │ │ │ ├── IntentChecker.java │ │ │ ├── KeyboardUtils.java │ │ │ ├── LoadingDialog.java │ │ │ ├── MiscUtils.kt │ │ │ ├── Navigation.java │ │ │ ├── ParcelableUtil.java │ │ │ ├── PasswordHelper.java │ │ │ ├── RandomUtils.kt │ │ │ ├── ReminderHelper.java │ │ │ ├── ResourcesUtils.java │ │ │ ├── Security.kt │ │ │ ├── ShortcutHelper.java │ │ │ ├── StorageHelper.java │ │ │ ├── SystemHelper.java │ │ │ ├── TagsHelper.java │ │ │ ├── TextHelper.java │ │ │ └── date │ │ │ │ ├── DateUtils.java │ │ │ │ ├── ReminderPickers.java │ │ │ │ └── SublimePickerFragment.java │ │ │ └── widget │ │ │ ├── ListRemoteViewsFactory.java │ │ │ ├── ListWidgetProvider.java │ │ │ ├── ListWidgetService.java │ │ │ ├── SimpleWidgetProvider.java │ │ │ ├── WidgetConfigurationActivity.java │ │ │ └── WidgetProvider.java │ └── res │ │ ├── anim │ │ ├── anim_in.xml │ │ ├── anim_in_pop.xml │ │ ├── anim_out.xml │ │ ├── anim_out_pop.xml │ │ ├── fade_in.xml │ │ ├── fade_in_support.xml │ │ ├── fade_out.xml │ │ └── fade_out_support.xml │ │ ├── animator │ │ ├── fade_in.xml │ │ ├── fade_in_support.xml │ │ ├── fade_out.xml │ │ ├── fade_out_support.xml │ │ ├── slide_back_left.xml │ │ ├── slide_back_right.xml │ │ ├── slide_left.xml │ │ └── slide_right.xml │ │ ├── drawable-hdpi-v11 │ │ ├── ic_stat_literal_icon.png │ │ └── ic_stat_notification.png │ │ ├── drawable-hdpi │ │ ├── bg_popup.9.png │ │ ├── drawer_shadow.9.png │ │ ├── ic_action_draw.png │ │ ├── ic_action_on.png │ │ ├── ic_action_view_as_list.png │ │ ├── ic_add_circle_white_48dp.png │ │ ├── ic_alarm_add_black_18dp.png │ │ ├── ic_alarm_black_18dp.png │ │ ├── ic_alarm_black_48dp.png │ │ ├── ic_alarm_white_24dp.png │ │ ├── ic_archive_black_18dp.png │ │ ├── ic_archive_black_48dp.png │ │ ├── ic_archive_white_24dp.png │ │ ├── ic_attachment_black_18dp.png │ │ ├── ic_attachment_white_24dp.png │ │ ├── ic_brush_black_24dp.png │ │ ├── ic_call_merge_white_24dp.png │ │ ├── ic_camera_alt_white_48dp.png │ │ ├── ic_cancel_black_18dp.png │ │ ├── ic_cancel_white_24dp.png │ │ ├── ic_clock_outline_black_24dp.png │ │ ├── ic_content_save_white_24dp.png │ │ ├── ic_delete_black_48dp.png │ │ ├── ic_delete_grey600_48dp.png │ │ ├── ic_delete_red_48dp.png │ │ ├── ic_delete_white_24dp.png │ │ ├── ic_drawer.png │ │ ├── ic_emoticon_sad_white_24dp.png │ │ ├── ic_eraser_black_24dp.png │ │ ├── ic_file_document_black_48dp.png │ │ ├── ic_file_document_white_48dp.png │ │ ├── ic_filter_remove_white_24dp.png │ │ ├── ic_filter_white_24dp.png │ │ ├── ic_folder_open_black_48dp.png │ │ ├── ic_folder_special_black_24dp.png │ │ ├── ic_folder_special_white_24dp.png │ │ ├── ic_format_align_justify_black_24dp.png │ │ ├── ic_format_align_justify_white_48dp.png │ │ ├── ic_format_list_bulleted_black_24dp.png │ │ ├── ic_format_list_bulleted_white_48dp.png │ │ ├── ic_format_list_checks_white_24dp.png │ │ ├── ic_image_white_24dp.png │ │ ├── ic_information_outline_grey600_24dp.png │ │ ├── ic_insert_drive_file_black_24dp.png │ │ ├── ic_laptop_black_24dp.png │ │ ├── ic_lock_black_24dp.png │ │ ├── ic_logo.png │ │ ├── ic_loyalty_black_24dp.png │ │ ├── ic_loyalty_white_24dp.png │ │ ├── ic_material_reminder_time_light.png │ │ ├── ic_mic_black_24dp.png │ │ ├── ic_photo_camera_black_24dp.png │ │ ├── ic_pin_drop_black_18dp.png │ │ ├── ic_pin_drop_black_24dp.png │ │ ├── ic_redo_black_24dp.png │ │ ├── ic_remind_later_light.png │ │ ├── ic_search_white_24dp.png │ │ ├── ic_select_all_black_24dp.png │ │ ├── ic_select_all_white_24dp.png │ │ ├── ic_settings_black_36dp.png │ │ ├── ic_share_white_24dp.png │ │ ├── ic_shortcut.png │ │ ├── ic_snooze_reminder.png │ │ ├── ic_sort_white_24dp.png │ │ ├── ic_stat_literal_icon.png │ │ ├── ic_stat_notification.png │ │ ├── ic_unarchive_grey600_48dp.png │ │ ├── ic_unarchive_white_24dp.png │ │ ├── ic_undelete_white_24dp.png │ │ ├── ic_undo_black_24dp.png │ │ ├── ic_videocam_black_24dp.png │ │ ├── jingles_1.png │ │ ├── jingles_2.png │ │ ├── jingles_3.png │ │ ├── jingles_4.png │ │ ├── jingles_5.png │ │ └── jingles_6.png │ │ ├── drawable-mdpi-v11 │ │ ├── ic_stat_literal_icon.png │ │ └── ic_stat_notification.png │ │ ├── drawable-mdpi │ │ ├── bg_popup.9.png │ │ ├── ic_action_draw.png │ │ ├── ic_action_on.png │ │ ├── ic_action_view_as_list.png │ │ ├── ic_add_circle_white_48dp.png │ │ ├── ic_alarm_add_black_18dp.png │ │ ├── ic_alarm_black_18dp.png │ │ ├── ic_alarm_black_48dp.png │ │ ├── ic_alarm_white_24dp.png │ │ ├── ic_archive_black_18dp.png │ │ ├── ic_archive_black_48dp.png │ │ ├── ic_archive_white_24dp.png │ │ ├── ic_attachment_black_18dp.png │ │ ├── ic_attachment_white_24dp.png │ │ ├── ic_brush_black_24dp.png │ │ ├── ic_call_merge_white_24dp.png │ │ ├── ic_camera_alt_white_48dp.png │ │ ├── ic_cancel_black_18dp.png │ │ ├── ic_cancel_white_24dp.png │ │ ├── ic_checkbox_blank_circle_outline_indigo_18dp.png │ │ ├── ic_checkbox_blank_outline_indigo_18dp.png │ │ ├── ic_checkbox_marked_circle_outline_indigo_18dp.png │ │ ├── ic_checkbox_marked_outline_indigo_18dp.png │ │ ├── ic_clock_outline_black_24dp.png │ │ ├── ic_content_save_white_24dp.png │ │ ├── ic_delete_black_48dp.png │ │ ├── ic_delete_grey600_48dp.png │ │ ├── ic_delete_red_48dp.png │ │ ├── ic_delete_white_24dp.png │ │ ├── ic_drawer.png │ │ ├── ic_emoticon_sad_white_24dp.png │ │ ├── ic_eraser_black_24dp.png │ │ ├── ic_file_document_black_48dp.png │ │ ├── ic_file_document_white_48dp.png │ │ ├── ic_filter_remove_white_24dp.png │ │ ├── ic_filter_white_24dp.png │ │ ├── ic_folder_open_black_48dp.png │ │ ├── ic_folder_special_black_24dp.png │ │ ├── ic_folder_special_white_24dp.png │ │ ├── ic_format_align_justify_black_24dp.png │ │ ├── ic_format_align_justify_white_48dp.png │ │ ├── ic_format_list_bulleted_black_24dp.png │ │ ├── ic_format_list_bulleted_white_48dp.png │ │ ├── ic_format_list_checks_white_24dp.png │ │ ├── ic_image_white_24dp.png │ │ ├── ic_information_outline_grey600_24dp.png │ │ ├── ic_insert_drive_file_black_24dp.png │ │ ├── ic_laptop_black_24dp.png │ │ ├── ic_lock_black_24dp.png │ │ ├── ic_logo.png │ │ ├── ic_loyalty_black_24dp.png │ │ ├── ic_loyalty_white_24dp.png │ │ ├── ic_material_reminder_time_light.png │ │ ├── ic_mic_black_24dp.png │ │ ├── ic_photo_camera_black_24dp.png │ │ ├── ic_pin_drop_black_18dp.png │ │ ├── ic_pin_drop_black_24dp.png │ │ ├── ic_redo_black_24dp.png │ │ ├── ic_remind_later_light.png │ │ ├── ic_search_white_24dp.png │ │ ├── ic_select_all_black_24dp.png │ │ ├── ic_select_all_white_24dp.png │ │ ├── ic_settings_black_36dp.png │ │ ├── ic_share_white_24dp.png │ │ ├── ic_shortcut.png │ │ ├── ic_snooze_reminder.png │ │ ├── ic_sort_white_24dp.png │ │ ├── ic_stat_literal_icon.png │ │ ├── ic_stat_notification.png │ │ ├── ic_unarchive_grey600_48dp.png │ │ ├── ic_undelete_white_24dp.png │ │ ├── ic_undo_black_24dp.png │ │ └── ic_videocam_black_24dp.png │ │ ├── drawable-nodpi │ │ ├── attachment_broken.png │ │ ├── community.png │ │ ├── ic_stat_notification_icon.png │ │ ├── logo.png │ │ ├── logo_notification_lollipop.png │ │ ├── material_wall.jpg │ │ ├── mr_jingles.png │ │ ├── play_no_bg.png │ │ ├── play_white.png │ │ ├── shortcut_icon.png │ │ ├── slide2.png │ │ ├── slide3.png │ │ ├── slide4.png │ │ ├── slide5.png │ │ ├── stop.png │ │ ├── white.png │ │ ├── widget_list.png │ │ └── widget_simple.png │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-v26 │ │ ├── camera_adaptive.xml │ │ └── plus_adaptive.xml │ │ ├── drawable-xhdpi-v11 │ │ ├── ic_stat_literal_icon.png │ │ └── ic_stat_notification.png │ │ ├── drawable-xhdpi │ │ ├── bg_popup.9.png │ │ ├── ic_action_draw.png │ │ ├── ic_action_on.png │ │ ├── ic_action_view_as_list.png │ │ ├── ic_add_circle_white_48dp.png │ │ ├── ic_alarm_add_black_18dp.png │ │ ├── ic_alarm_black_18dp.png │ │ ├── ic_alarm_black_48dp.png │ │ ├── ic_alarm_white_24dp.png │ │ ├── ic_archive_black_18dp.png │ │ ├── ic_archive_black_48dp.png │ │ ├── ic_archive_white_24dp.png │ │ ├── ic_attachment_black_18dp.png │ │ ├── ic_attachment_white_24dp.png │ │ ├── ic_brush_black_24dp.png │ │ ├── ic_call_merge_white_24dp.png │ │ ├── ic_camera_alt_white_48dp.png │ │ ├── ic_cancel_black_18dp.png │ │ ├── ic_cancel_white_24dp.png │ │ ├── ic_checkbox_blank_circle_outline_indigo_18dp.png │ │ ├── ic_checkbox_blank_outline_indigo_18dp.png │ │ ├── ic_checkbox_marked_circle_outline_indigo_18dp.png │ │ ├── ic_checkbox_marked_outline_indigo_18dp.png │ │ ├── ic_clock_outline_black_24dp.png │ │ ├── ic_content_save_white_24dp.png │ │ ├── ic_delete_black_48dp.png │ │ ├── ic_delete_grey600_48dp.png │ │ ├── ic_delete_red_48dp.png │ │ ├── ic_delete_white_24dp.png │ │ ├── ic_drawer.png │ │ ├── ic_emoticon_sad_white_24dp.png │ │ ├── ic_eraser_black_24dp.png │ │ ├── ic_file_document_black_48dp.png │ │ ├── ic_file_document_white_48dp.png │ │ ├── ic_filter_remove_white_24dp.png │ │ ├── ic_filter_white_24dp.png │ │ ├── ic_folder_open_black_48dp.png │ │ ├── ic_folder_special_black_24dp.png │ │ ├── ic_folder_special_white_24dp.png │ │ ├── ic_format_align_justify_black_24dp.png │ │ ├── ic_format_align_justify_white_48dp.png │ │ ├── ic_format_list_bulleted_black_24dp.png │ │ ├── ic_format_list_bulleted_white_48dp.png │ │ ├── ic_format_list_checks_white_24dp.png │ │ ├── ic_image_white_24dp.png │ │ ├── ic_information_outline_grey600_24dp.png │ │ ├── ic_insert_drive_file_black_24dp.png │ │ ├── ic_laptop_black_24dp.png │ │ ├── ic_lock_black_24dp.png │ │ ├── ic_logo.png │ │ ├── ic_loyalty_black_24dp.png │ │ ├── ic_loyalty_white_24dp.png │ │ ├── ic_material_reminder_time_light.png │ │ ├── ic_mic_black_24dp.png │ │ ├── ic_photo_camera_black_24dp.png │ │ ├── ic_pin_drop_black_18dp.png │ │ ├── ic_pin_drop_black_24dp.png │ │ ├── ic_redo_black_24dp.png │ │ ├── ic_remind_later_light.png │ │ ├── ic_search_white_24dp.png │ │ ├── ic_select_all_black_24dp.png │ │ ├── ic_select_all_white_24dp.png │ │ ├── ic_settings_black_36dp.png │ │ ├── ic_share_white_24dp.png │ │ ├── ic_shortcut.png │ │ ├── ic_snooze_reminder.png │ │ ├── ic_sort_white_24dp.png │ │ ├── ic_stat_literal_icon.png │ │ ├── ic_stat_notification.png │ │ ├── ic_unarchive_grey600_48dp.png │ │ ├── ic_unarchive_white_24dp.png │ │ ├── ic_undelete_white_24dp.png │ │ ├── ic_undo_black_24dp.png │ │ ├── ic_undobar_undo.png │ │ ├── ic_videocam_black_24dp.png │ │ ├── jingles_1.png │ │ ├── jingles_2.png │ │ ├── jingles_3.png │ │ ├── jingles_4.png │ │ ├── jingles_5.png │ │ ├── jingles_6.png │ │ ├── undobar.9.png │ │ ├── undobar_button_focused.9.png │ │ ├── undobar_button_pressed.9.png │ │ └── undobar_divider.9.png │ │ ├── drawable-xxhdpi-v11 │ │ ├── ic_stat_literal_icon.png │ │ └── ic_stat_notification.png │ │ ├── drawable-xxhdpi │ │ ├── bg_popup.9.png │ │ ├── ic_action_draw.png │ │ ├── ic_action_on.png │ │ ├── ic_action_view_as_list.png │ │ ├── ic_add_circle_white_48dp.png │ │ ├── ic_alarm_add_black_18dp.png │ │ ├── ic_alarm_black_18dp.png │ │ ├── ic_alarm_black_48dp.png │ │ ├── ic_alarm_white_24dp.png │ │ ├── ic_archive_black_18dp.png │ │ ├── ic_archive_black_48dp.png │ │ ├── ic_archive_white_24dp.png │ │ ├── ic_attachment_black_18dp.png │ │ ├── ic_attachment_white_24dp.png │ │ ├── ic_brush_black_24dp.png │ │ ├── ic_call_merge_white_24dp.png │ │ ├── ic_camera_alt_white_48dp.png │ │ ├── ic_cancel_black_18dp.png │ │ ├── ic_cancel_white_24dp.png │ │ ├── ic_checkbox_blank_circle_outline_indigo_18dp.png │ │ ├── ic_checkbox_blank_outline_indigo_18dp.png │ │ ├── ic_checkbox_marked_circle_outline_indigo_18dp.png │ │ ├── ic_checkbox_marked_outline_indigo_18dp.png │ │ ├── ic_clock_outline_black_24dp.png │ │ ├── ic_content_save_white_24dp.png │ │ ├── ic_delete_black_48dp.png │ │ ├── ic_delete_grey600_48dp.png │ │ ├── ic_delete_red_48dp.png │ │ ├── ic_delete_white_24dp.png │ │ ├── ic_drawer.png │ │ ├── ic_emoticon_sad_white_24dp.png │ │ ├── ic_eraser_black_24dp.png │ │ ├── ic_file_document_black_48dp.png │ │ ├── ic_file_document_white_48dp.png │ │ ├── ic_filter_remove_white_24dp.png │ │ ├── ic_filter_white_24dp.png │ │ ├── ic_folder_open_black_48dp.png │ │ ├── ic_folder_special_black_24dp.png │ │ ├── ic_folder_special_white_24dp.png │ │ ├── ic_format_align_justify_black_24dp.png │ │ ├── ic_format_align_justify_white_48dp.png │ │ ├── ic_format_list_bulleted_black_24dp.png │ │ ├── ic_format_list_bulleted_white_48dp.png │ │ ├── ic_format_list_checks_white_24dp.png │ │ ├── ic_image_white_24dp.png │ │ ├── ic_information_outline_grey600_24dp.png │ │ ├── ic_insert_drive_file_black_24dp.png │ │ ├── ic_laptop_black_24dp.png │ │ ├── ic_lock_black_24dp.png │ │ ├── ic_logo.png │ │ ├── ic_loyalty_black_24dp.png │ │ ├── ic_loyalty_white_24dp.png │ │ ├── ic_material_reminder_time_light.png │ │ ├── ic_mic_black_24dp.png │ │ ├── ic_photo_camera_black_24dp.png │ │ ├── ic_pin_drop_black_18dp.png │ │ ├── ic_pin_drop_black_24dp.png │ │ ├── ic_redo_black_24dp.png │ │ ├── ic_remind_later_light.png │ │ ├── ic_search_white_24dp.png │ │ ├── ic_select_all_black_24dp.png │ │ ├── ic_select_all_white_24dp.png │ │ ├── ic_settings_black_36dp.png │ │ ├── ic_share_white_24dp.png │ │ ├── ic_shortcut.png │ │ ├── ic_snooze_reminder.png │ │ ├── ic_sort_white_24dp.png │ │ ├── ic_stat_literal_icon.png │ │ ├── ic_stat_notification.png │ │ ├── ic_unarchive_grey600_48dp.png │ │ ├── ic_unarchive_white_24dp.png │ │ ├── ic_undelete_white_24dp.png │ │ ├── ic_undo_black_24dp.png │ │ ├── ic_videocam_black_24dp.png │ │ ├── jingles_1.png │ │ ├── jingles_2.png │ │ ├── jingles_3.png │ │ ├── jingles_4.png │ │ ├── jingles_5.png │ │ └── jingles_6.png │ │ ├── drawable-xxxhdpi-v11 │ │ ├── ic_stat_literal_icon.png │ │ └── ic_stat_notification.png │ │ ├── drawable-xxxhdpi │ │ ├── ic_action_draw.png │ │ ├── ic_action_on.png │ │ ├── ic_add_circle_white_48dp.png │ │ ├── ic_alarm_add_black_18dp.png │ │ ├── ic_alarm_black_18dp.png │ │ ├── ic_alarm_black_48dp.png │ │ ├── ic_alarm_white_24dp.png │ │ ├── ic_archive_black_18dp.png │ │ ├── ic_archive_black_48dp.png │ │ ├── ic_archive_white_24dp.png │ │ ├── ic_attachment_black_18dp.png │ │ ├── ic_attachment_white_24dp.png │ │ ├── ic_brush_black_24dp.png │ │ ├── ic_call_merge_white_24dp.png │ │ ├── ic_camera_alt_white_48dp.png │ │ ├── ic_cancel_black_18dp.png │ │ ├── ic_cancel_white_24dp.png │ │ ├── ic_checkbox_blank_circle_outline_indigo_18dp.png │ │ ├── ic_checkbox_blank_outline_indigo_18dp.png │ │ ├── ic_checkbox_marked_circle_outline_indigo_18dp.png │ │ ├── ic_checkbox_marked_outline_indigo_18dp.png │ │ ├── ic_clock_outline_black_24dp.png │ │ ├── ic_content_save_white_24dp.png │ │ ├── ic_delete_black_48dp.png │ │ ├── ic_delete_grey600_48dp.png │ │ ├── ic_delete_red_48dp.png │ │ ├── ic_delete_white_24dp.png │ │ ├── ic_drawer.png │ │ ├── ic_emoticon_sad_white_24dp.png │ │ ├── ic_eraser_black_24dp.png │ │ ├── ic_file_document_black_48dp.png │ │ ├── ic_file_document_white_48dp.png │ │ ├── ic_filter_remove_white_24dp.png │ │ ├── ic_filter_white_24dp.png │ │ ├── ic_folder_open_black_48dp.png │ │ ├── ic_folder_special_black_24dp.png │ │ ├── ic_folder_special_white_24dp.png │ │ ├── ic_format_align_justify_black_24dp.png │ │ ├── ic_format_align_justify_white_48dp.png │ │ ├── ic_format_list_bulleted_black_24dp.png │ │ ├── ic_format_list_bulleted_white_48dp.png │ │ ├── ic_format_list_checks_white_24dp.png │ │ ├── ic_image_white_24dp.png │ │ ├── ic_information_outline_grey600_24dp.png │ │ ├── ic_insert_drive_file_black_24dp.png │ │ ├── ic_laptop_black_24dp.png │ │ ├── ic_lock_black_24dp.png │ │ ├── ic_logo.png │ │ ├── ic_loyalty_black_24dp.png │ │ ├── ic_loyalty_white_24dp.png │ │ ├── ic_mic_black_24dp.png │ │ ├── ic_photo_camera_black_24dp.png │ │ ├── ic_pin_drop_black_18dp.png │ │ ├── ic_pin_drop_black_24dp.png │ │ ├── ic_redo_black_24dp.png │ │ ├── ic_search_white_24dp.png │ │ ├── ic_select_all_black_24dp.png │ │ ├── ic_select_all_white_24dp.png │ │ ├── ic_settings_black_36dp.png │ │ ├── ic_share_white_24dp.png │ │ ├── ic_shortcut.png │ │ ├── ic_sort_white_24dp.png │ │ ├── ic_stat_literal_icon.png │ │ ├── ic_stat_notification.png │ │ ├── ic_unarchive_grey600_48dp.png │ │ ├── ic_unarchive_white_24dp.png │ │ ├── ic_undelete_white_24dp.png │ │ ├── ic_undo_black_24dp.png │ │ └── ic_videocam_black_24dp.png │ │ ├── drawable │ │ ├── bg_card.xml │ │ ├── branded_background.xml │ │ ├── camera.xml │ │ ├── camera_white.xml │ │ ├── category_count_bg.xml │ │ ├── checklist.xml │ │ ├── checklist_white.xml │ │ ├── circle.xml │ │ ├── fab_labels_background.9.png │ │ ├── fragment_list_item_divider.xml │ │ ├── gray_circle.xml │ │ ├── icon_selector.xml │ │ ├── image_borders.xml │ │ ├── jingles_animation.xml │ │ ├── list_selector_focused.xml │ │ ├── list_selector_pressed.xml │ │ ├── logo_color.xml │ │ ├── logo_monochrome.xml │ │ ├── note_selector.xml │ │ ├── plus.xml │ │ ├── scrollbar_line.xml │ │ ├── scrollbar_line_drawable.xml │ │ ├── scrollbar_thumb.xml │ │ ├── scrollbar_thumb_drawable.xml │ │ ├── square.xml │ │ ├── text_box_white.xml │ │ ├── toolbar_dropshadow.xml │ │ └── undobar_button.xml │ │ ├── layout-sw600dp │ │ └── password_buttons.xml │ │ ├── layout-v21 │ │ └── settings_font_size_dialog_item.xml │ │ ├── layout │ │ ├── activity_about.xml │ │ ├── activity_category.xml │ │ ├── activity_changelog.xml │ │ ├── activity_gallery.xml │ │ ├── activity_main.xml │ │ ├── activity_note_infos.xml │ │ ├── activity_password.xml │ │ ├── activity_settings.xml │ │ ├── activity_stats.xml │ │ ├── activity_stats_note.xml │ │ ├── activity_widget_configuration.xml │ │ ├── attachment_dialog.xml │ │ ├── crouton_handle.xml │ │ ├── dialog_backup_layout.xml │ │ ├── dialog_location.xml │ │ ├── dialog_remove_checklist_layout.xml │ │ ├── drawer_category_list_footer.xml │ │ ├── drawer_category_list_header.xml │ │ ├── drawer_list_item.xml │ │ ├── fab.xml │ │ ├── fragment_detail.xml │ │ ├── fragment_detail_attachments.xml │ │ ├── fragment_detail_content.xml │ │ ├── fragment_list.xml │ │ ├── fragment_navigation_drawer.xml │ │ ├── fragment_sketch.xml │ │ ├── gridview_item.xml │ │ ├── image_and_text_item.xml │ │ ├── intro_slide.xml │ │ ├── note_layout.xml │ │ ├── note_layout_expanded.xml │ │ ├── note_layout_widget.xml │ │ ├── password_buttons.xml │ │ ├── password_request_dialog_layout.xml │ │ ├── password_reset_dialog_layout.xml │ │ ├── popup_sketch_eraser.xml │ │ ├── popup_sketch_stroke.xml │ │ ├── rate_app_dialog_layout.xml │ │ ├── row.xml │ │ ├── settings_font_size_dialog_item.xml │ │ ├── settings_font_size_item.xml │ │ ├── simple_text_layout.xml │ │ ├── sublime_picker.xml │ │ ├── toolbar.xml │ │ ├── undobar.xml │ │ ├── webview.xml │ │ ├── widget_layout.xml │ │ ├── widget_layout_list.xml │ │ ├── widget_layout_small.xml │ │ └── widget_layout_toolbar.xml │ │ ├── menu │ │ ├── menu_detail.xml │ │ ├── menu_gallery.xml │ │ └── menu_list.xml │ │ ├── mipmap-anydpi-v26 │ │ └── ic_launcher.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── raw │ │ ├── changelog.xml │ │ ├── files.png │ │ ├── play.png │ │ └── vcard.png │ │ ├── values-ar-rSA │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-bg-rBG │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-ca-rES │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-cs-rCZ │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-de-rDE │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-el-rGR │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-en-rUS │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-es-rES │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-es-rXA │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-eu-rES │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-fa-rIR │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-fi-rFI │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-fil-rPH │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-fr-rFR │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-gl-rES │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-hdpi │ │ └── dimens.xml │ │ ├── values-hi-rIN │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-hr-rHR │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-hu-rHU │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-in-rID │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-it-rIT │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-iw-rIL │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-ja-rJP │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-km-rKH │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-land-v19 │ │ └── bools.xml │ │ ├── values-land │ │ └── dimens.xml │ │ ├── values-lo-rLA │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-lv-rLV │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-my-rMM │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-nb-rNO │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-nl-rNL │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-or-rIN │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-pl-rPL │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-pt-rPT │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-ro-rRO │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-ru-rRU │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-si-rLK │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-sk-rSK │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-sl-rSI │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-sr-rSP │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-sv-rSE │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-sw360dp │ │ └── dimens.xml │ │ ├── values-sw384dp │ │ └── dimens.xml │ │ ├── values-sw600dp-land │ │ └── dimens.xml │ │ ├── values-sw600dp │ │ ├── dimens.xml │ │ └── integers.xml │ │ ├── values-sw720dp-land-v19 │ │ └── dimens.xml │ │ ├── values-sw720dp-land-v21 │ │ └── dimens.xml │ │ ├── values-sw720dp-land │ │ └── dimens.xml │ │ ├── values-tr-rTR │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-uk-rUA │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-ur-rPK │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-v19 │ │ ├── bools.xml │ │ ├── dimens.xml │ │ └── styles.xml │ │ ├── values-v21 │ │ └── styles.xml │ │ ├── values-v23 │ │ └── styles.xml │ │ ├── values-xhdpi │ │ └── dimens.xml │ │ ├── values-zh-rCN │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values │ │ ├── arrays.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ic_launcher_background.xml │ │ ├── ids.xml │ │ ├── integers.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ ├── appwidget_list.xml │ │ ├── appwidget_simple.xml │ │ ├── file_provider_paths.xml │ │ ├── searchable.xml │ │ ├── settings.xml │ │ ├── settings_behaviors.xml │ │ ├── settings_data.xml │ │ ├── settings_interface.xml │ │ ├── settings_navigation.xml │ │ ├── settings_notifications.xml │ │ ├── settings_privacy.xml │ │ ├── settings_sync_import_export.xml │ │ └── shortcuts.xml │ ├── play │ ├── java │ │ └── it │ │ │ └── feio │ │ │ └── android │ │ │ └── omninotes │ │ │ ├── helpers │ │ │ └── GeocodeProviderFactory.java │ │ │ └── utils │ │ │ └── Constants.java │ └── res │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── it │ └── feio │ └── android │ └── omninotes │ ├── BaseUnitTest.java │ ├── NoteInfosActivityTest.java │ ├── ResourceAwareTest.java │ ├── helpers │ ├── NotesHelperTest.java │ └── count │ │ ├── DefaultWordCounterTest.java │ │ └── IdeogramsWordCounterTest.java │ └── utils │ ├── RandomUtilsTest.kt │ ├── TagsHelperTest.java │ └── date │ ├── DateUtilsTest.java │ └── RecurrenceHelperTest.java ├── project.properties └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | # built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # lint folder 6 | lint 7 | 8 | # files for the dex VM 9 | *.dex 10 | 11 | # Java class files 12 | *.class 13 | 14 | # generated files 15 | bin/ 16 | gen/ 17 | classes/ 18 | gen-external-apklibs/ 19 | 20 | # maven output folder 21 | target 22 | 23 | # Local configuration file (sdk path, etc) 24 | local.properties 25 | 26 | # Eclipse project files 27 | .classpath 28 | .project 29 | .metadata 30 | .settings 31 | 32 | # IntelliJ files 33 | .idea 34 | *.iml 35 | 36 | # OSX files 37 | .DS_Store 38 | 39 | # Windows files 40 | Thumbs.db 41 | 42 | # vi swap files 43 | *.swp 44 | 45 | # backup files 46 | *.bak 47 | 48 | # gradle directory 49 | .gradle 50 | build/ 51 | 52 | # Android Studio 53 | .navigation 54 | captures 55 | 56 | # private properties file 57 | omniNotes/gradle.properties 58 | 59 | *.log 60 | 61 | \.directory 62 | 63 | .gradletasknamecache 64 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Supported Versions 4 | 5 | Security updates are supported for the following application's versions: 6 | 7 | | Version | Supported | 8 | | ------- | ------------------ | 9 | | 6.2.x | :white_check_mark: | 10 | | < 6.2.x | :x: | 11 | 12 | ## Reporting a Vulnerability 13 | 14 | Take contact with me through **security@omninotes.app** 15 | -------------------------------------------------------------------------------- /assets/ON_banner_g+.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/assets/ON_banner_g+.xcf -------------------------------------------------------------------------------- /assets/ON_banner_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/assets/ON_banner_play.png -------------------------------------------------------------------------------- /assets/ON_banner_play.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/assets/ON_banner_play.xcf -------------------------------------------------------------------------------- /assets/ON_banner_site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/assets/ON_banner_site.png -------------------------------------------------------------------------------- /assets/css/style.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | @import "{{ site.theme }}"; 5 | .page-header { 6 | height: 255px; 7 | background-image: url(https://raw.githubusercontent.com/federicoiosue/Omni-Notes/develop/assets/ON_banner_site.png); 8 | background-position: center; 9 | background-repeat: no-repeat; 10 | background-color: #f44336; 11 | } 12 | .page-header h1, .page-header h2, .page-header a.btn { 13 | display: none; 14 | } 15 | -------------------------------------------------------------------------------- /assets/help/help.md: -------------------------------------------------------------------------------- 1 | Omni Notes Help Online 2 | -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/assets/logo.png -------------------------------------------------------------------------------- /assets/play_store_pics/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/assets/play_store_pics/02.png -------------------------------------------------------------------------------- /assets/play_store_pics/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/assets/play_store_pics/03.png -------------------------------------------------------------------------------- /assets/play_store_pics/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/assets/play_store_pics/04.png -------------------------------------------------------------------------------- /assets/play_store_pics/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/assets/play_store_pics/05.png -------------------------------------------------------------------------------- /assets/play_store_pics/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/assets/play_store_pics/06.png -------------------------------------------------------------------------------- /assets/play_store_pics/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/assets/play_store_pics/07.png -------------------------------------------------------------------------------- /assets/play_store_pics/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/assets/play_store_pics/08.png -------------------------------------------------------------------------------- /assets/play_store_pics/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/assets/play_store_pics/09.png -------------------------------------------------------------------------------- /assets/play_store_pics/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/assets/play_store_pics/10.png -------------------------------------------------------------------------------- /assets/play_store_pics/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/assets/play_store_pics/11.png -------------------------------------------------------------------------------- /assets/play_store_pics/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/assets/play_store_pics/12.png -------------------------------------------------------------------------------- /assets/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/assets/popup.png -------------------------------------------------------------------------------- /assets/promo_video_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/assets/promo_video_thumb.png -------------------------------------------------------------------------------- /assets/translations/pictures.txt: -------------------------------------------------------------------------------- 1 | Easy note taking 2 | With modern and simple user interface 3 | 4 | Batch contextual actions 5 | Select notes to tag, archive or delete 6 | 7 | Note searching 8 | Insert text to find it in title or content 9 | 10 | Sort notes 11 | Manage by ordering with criteria 12 | 13 | Categorized 14 | Filter notes tagged, archived or with reminder set using navigation 15 | 16 | Make it alive 17 | Choose a color for your tags to highlight notes in lists 18 | 19 | Editing actions 20 | Save, share, tag, archive, mask, delete and more... 21 | 22 | Attachments 23 | Enrich your notes with photos, videos, audio recordings and geo-location 24 | 25 | Hyperlinks 26 | Web url and e-mail auto recognition 27 | 28 | Do things as you like 29 | A lot of available settings to personalize your experience 30 | 31 | Easy access 32 | Resizable widgets, DashClock extension, Google Now integration 33 | 34 | Opensource 35 | Checkout the code sources and help with your feedback 36 | -------------------------------------------------------------------------------- /assets/translations/play_store_description.txt: -------------------------------------------------------------------------------- 1 | Open-source note taking application, designed to be lightweight and simple without giving up smart behavior. 2 | 3 | Follow the developments and post your comments and advice on our community at https://t.me/+VwL2-SGNdTs4ZWY0 4 | 5 | Your help in translating the app is welcome. Send me an e-mail If you want to lend a hand ! 6 | 7 | Current features: 8 | ☆ Material Design interface 9 | ☆ Basic add, modify, archive, trash and delete notes actions 10 | ☆ Share, merge and search notes 11 | ☆ Image, audio and generic file attachments 12 | ☆ Manage your notes using tags and categories 13 | ☆ To-do list 14 | ☆ Sketch-note mode 15 | ☆ Notes shortcut on home screen 16 | ☆ Export/import notes to backup 17 | ☆ Google Now integration: just tell "write a note" followed by the content 18 | ☆ Multiple widgets, DashClock extension 19 | ☆ Multi-language: 30+ languages supported: https://crowdin.com/project/omni-notes 20 | -------------------------------------------------------------------------------- /etc/logo-alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/etc/logo-alpha.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/237.txt: -------------------------------------------------------------------------------- 1 | 5.4.2 2 | ☆ Updated translations 3 | ☆ Widget showing two lines of content and top-aligned 4 | ✓ Bugfixes -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/238.txt: -------------------------------------------------------------------------------- 1 | 5.4.3 2 | ★ Added Basque language 3 | ☆ Updated translations 4 | ✓ Reminders are not fired again after notes deletion -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/331.txt: -------------------------------------------------------------------------------- 1 | 6.3.0 2 | ★ Targeting Android 13 API with improved performances and security updates 3 | ★ Telegram channel https://t.me/omninotes 4 | ★ Adaptive and monochrome icons 5 | ★ Context menu to share easily with ON 6 | ☆ Password required when restoring protected notes 7 | ✓ Tons of bug fixes -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/feature-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/fastlane/metadata/android/en-US/images/feature-graphic.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/fastlane/metadata/android/en-US/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Note taking open-source app simple to use and with killer features! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Omni Notes 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/video.txt: -------------------------------------------------------------------------------- 1 | https://youtu.be/0Z_-SgT3qYs -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | # 4 | # This program is free software: you can redistribute it and/or modify 5 | # it under the terms of the GNU General Public License as published by 6 | # the Free Software Foundation, either version 3 of the License, or 7 | # (at your option) any later version. 8 | # 9 | # This program is distributed in the hope that it will be useful, 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | # GNU General Public License for more details. 13 | # 14 | # You should have received a copy of the GNU General Public License 15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | # 17 | 18 | distributionBase=GRADLE_USER_HOME 19 | distributionPath=wrapper/dists 20 | zipStoreBase=GRADLE_USER_HOME 21 | zipStorePath=wrapper/dists 22 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip 23 | -------------------------------------------------------------------------------- /lombok.config: -------------------------------------------------------------------------------- 1 | lombok.anyConstructor.suppressConstructorProperties = true 2 | lombok.addGeneratedAnnotation = false -------------------------------------------------------------------------------- /omniNotes/.gitignore: -------------------------------------------------------------------------------- 1 | /google-services.json 2 | -------------------------------------------------------------------------------- /omniNotes/lint.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <!-- 3 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 4 | ~ 5 | ~ This program is free software: you can redistribute it and/or modify 6 | ~ it under the terms of the GNU General Public License as published by 7 | ~ the Free Software Foundation, either version 3 of the License, or 8 | ~ (at your option) any later version. 9 | ~ 10 | ~ This program is distributed in the hope that it will be useful, 11 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | ~ GNU General Public License for more details. 14 | ~ 15 | ~ You should have received a copy of the GNU General Public License 16 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 17 | --> 18 | 19 | <lint> 20 | <issue id="ManifestResource" severity="ignore" /> 21 | </lint> 22 | -------------------------------------------------------------------------------- /omniNotes/src/alpha/java/it/feio/android/omninotes/helpers/GeocodeProviderFactory.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | * 4 | * This program is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | */ 17 | 18 | package it.feio.android.omninotes.helpers; 19 | 20 | public class GeocodeProviderFactory extends GeocodeProviderBaseFactory { 21 | 22 | } -------------------------------------------------------------------------------- /omniNotes/src/alpha/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/alpha/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /omniNotes/src/alpha/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/alpha/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /omniNotes/src/alpha/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/alpha/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /omniNotes/src/alpha/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/alpha/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /omniNotes/src/alpha/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/alpha/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /omniNotes/src/beta/java/it/feio/android/omninotes/helpers/GeocodeProviderFactory.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2017-2024 Federico Iosue (federico.iosue@gmail.com) 3 | * 4 | * This program is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundatibehaon, either version 3 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | */ 17 | 18 | package it.feio.android.omninotes.helpers; 19 | 20 | public class GeocodeProviderFactory extends GeocodeProviderBaseFactory { 21 | 22 | } 23 | -------------------------------------------------------------------------------- /omniNotes/src/beta/java/it/feio/android/omninotes/utils/Constants.java: -------------------------------------------------------------------------------- 1 | package it.feio.android.omninotes.utils; 2 | 3 | 4 | public interface Constants extends ConstantsBase { 5 | 6 | String TAG = "Omni Notes Beta"; 7 | String EXTERNAL_STORAGE_FOLDER = "Omni Notes"; 8 | String PACKAGE = "it.feio.android.omninotes"; 9 | 10 | String CHANNEL_BACKUPS_ID = PACKAGE + ".backups"; 11 | String CHANNEL_REMINDERS_ID = PACKAGE + ".reminders"; 12 | String CHANNEL_PINNED_ID = PACKAGE + ".pinned"; 13 | 14 | } 15 | -------------------------------------------------------------------------------- /omniNotes/src/beta/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/beta/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /omniNotes/src/beta/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/beta/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /omniNotes/src/beta/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/beta/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /omniNotes/src/beta/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/beta/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /omniNotes/src/beta/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/beta/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /omniNotes/src/beta/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?><!-- 2 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | ~ 4 | ~ This program is free software: you can redistribute it and/or modify 5 | ~ it under the terms of the GNU General Public License as published by 6 | ~ the Free Software Foundation, either version 3 of the License, or 7 | ~ (at your option) any later version. 8 | ~ 9 | ~ This program is distributed in the hope that it will be useful, 10 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | ~ GNU General Public License for more details. 13 | ~ 14 | ~ You should have received a copy of the GNU General Public License 15 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | --> 17 | 18 | <resources> 19 | 20 | <string name="app_name">Omni Notes Beta</string> 21 | <string name="app_package">it.feio.android.omninotes</string> 22 | <string name="version_postfix">.BETA</string> 23 | 24 | </resources> 25 | -------------------------------------------------------------------------------- /omniNotes/src/foss/res/values/integers.xml: -------------------------------------------------------------------------------- 1 | <!-- 2 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | ~ 4 | ~ This program is free software: you can redistribute it and/or modify 5 | ~ it under the terms of the GNU General Public License as published by 6 | ~ the Free Software Foundation, either version 3 of the License, or 7 | ~ (at your option) any later version. 8 | ~ 9 | ~ This program is distributed in the hope that it will be useful, 10 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | ~ GNU General Public License for more details. 13 | ~ 14 | ~ You should have received a copy of the GNU General Public License 15 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | --> 17 | 18 | <resources> 19 | <integer name="google_play_services_version">8115000</integer> 20 | </resources> 21 | -------------------------------------------------------------------------------- /omniNotes/src/main/assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /omniNotes/src/main/assets/fonts/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/assets/fonts/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /omniNotes/src/main/assets/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/assets/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /omniNotes/src/main/assets/sql/create.sql: -------------------------------------------------------------------------------- 1 | -- Create table for NOTES 2 | CREATE 3 | TABLE notes 4 | ( 5 | creation INTEGER PRIMARY KEY, 6 | last_modification INTEGER, 7 | title TEXT, 8 | content TEXT, 9 | archived INTEGER, 10 | trashed INTEGER, 11 | alarm INTEGER DEFAULT null, 12 | reminder_fired INTEGER, 13 | recurrence_rule TEXT, 14 | latitude REAL, 15 | longitude REAL, 16 | address TEXT, 17 | category_id INTEGER DEFAULT null, 18 | locked INTEGER, 19 | checklist INTEGER 20 | ); 21 | 22 | 23 | 24 | -- Create table for ATTACHMENTS 25 | CREATE 26 | TABLE attachments 27 | ( 28 | attachment_id INTEGER PRIMARY KEY AUTOINCREMENT, 29 | uri TEXT, 30 | name TEXT, 31 | size INTEGER, 32 | length INTEGER, 33 | mime_type TEXT, 34 | note_id INTEGER 35 | ); 36 | 37 | 38 | 39 | -- Create table for CATEGORIES 40 | CREATE 41 | TABLE categories 42 | ( 43 | category_id INTEGER PRIMARY KEY, 44 | name TEXT, 45 | description TEXT, 46 | color TEXT 47 | ); 48 | -------------------------------------------------------------------------------- /omniNotes/src/main/assets/sql/upgrade-390.sql: -------------------------------------------------------------------------------- 1 | -- Add alarm field ALTER TABLE notes ADD COLUMN alarm LONG DEFAULT null; -- Create new table for attachments CREATE TABLE attachments ( id INTEGER PRIMARY KEY AUTOINCREMENT, uri TEXT, note_id INTEGER ); -------------------------------------------------------------------------------- /omniNotes/src/main/assets/sql/upgrade-391.sql: -------------------------------------------------------------------------------- 1 | -- Add location fields ALTER TABLE notes ADD COLUMN latitude REAL DEFAULT null; ALTER TABLE notes ADD COLUMN longitude REAL DEFAULT null; -------------------------------------------------------------------------------- /omniNotes/src/main/assets/sql/upgrade-394.sql: -------------------------------------------------------------------------------- 1 | -- Adding column mime type to support audio recordings ALTER TABLE attachments ADD COLUMN mime_type TEXT DEFAULT null; 2 | -------------------------------------------------------------------------------- /omniNotes/src/main/assets/sql/upgrade-414.sql: -------------------------------------------------------------------------------- 1 | -- Adding column to support checklists 2 | ALTER TABLE notes ADD COLUMN checklist INTEGER default 0; 3 | -------------------------------------------------------------------------------- /omniNotes/src/main/assets/sql/upgrade-450.sql: -------------------------------------------------------------------------------- 1 | -- Adding attachments meta data 2 | ALTER TABLE attachments ADD COLUMN name TEXT; 3 | ALTER TABLE attachments ADD COLUMN size INTEGER; 4 | ALTER TABLE attachments ADD COLUMN length INTEGER; 5 | -------------------------------------------------------------------------------- /omniNotes/src/main/assets/sql/upgrade-453.sql: -------------------------------------------------------------------------------- 1 | /* 2 | * Performs a column addition to keep location as string to avoid resolving everytime 3 | */ 4 | ALTER TABLE notes RENAME TO notes_tmp; 5 | CREATE 6 | TABLE notes 7 | ( 8 | note_id INTEGER PRIMARY KEY AUTOINCREMENT, 9 | creation INTEGER, 10 | last_modification INTEGER, 11 | title TEXT, 12 | content TEXT, 13 | archived INTEGER, 14 | trashed INTEGER, 15 | alarm INTEGER DEFAULT null, 16 | latitude REAL, 17 | longitude REAL, 18 | address TEXT, 19 | category_id INTEGER DEFAULT null, 20 | locked INTEGER, 21 | checklist INTEGER 22 | ); 23 | INSERT INTO notes(note_id, creation, last_modification, title, content, archived, alarm, latitude, longitude, category_id, locked, checklist) 24 | SELECT note_id, creation, last_modification, title, content, archived, alarm, latitude, longitude, category_id, locked, checklist 25 | FROM notes_tmp; 26 | DROP TABLE notes_tmp; 27 | -------------------------------------------------------------------------------- /omniNotes/src/main/assets/sql/upgrade-481.sql: -------------------------------------------------------------------------------- 1 | /* 2 | * Adds "recurrenceRule" column to the table 3 | */ 4 | ALTER TABLE notes RENAME TO notes_tmp; 5 | CREATE 6 | TABLE notes 7 | ( 8 | note_id INTEGER PRIMARY KEY AUTOINCREMENT, 9 | creation INTEGER, 10 | last_modification INTEGER, 11 | title TEXT, 12 | content TEXT, 13 | archived INTEGER, 14 | trashed INTEGER, 15 | alarm INTEGER DEFAULT null, 16 | recurrence_rule TEXT, 17 | latitude REAL, 18 | longitude REAL, 19 | address TEXT, 20 | category_id INTEGER DEFAULT null, 21 | locked INTEGER, 22 | checklist INTEGER 23 | ); 24 | INSERT INTO notes(note_id, creation, last_modification, title, content, archived, trashed, alarm, latitude, longitude, 25 | address, category_id, locked, checklist) 26 | SELECT note_id, creation, last_modification, title, content, archived, trashed, alarm, latitude, longitude, address, 27 | category_id, locked, checklist 28 | FROM notes_tmp; 29 | DROP TABLE notes_tmp; 30 | -------------------------------------------------------------------------------- /omniNotes/src/main/java/it/feio/android/omninotes/async/bus/CategoriesUpdatedEvent.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | * 4 | * This program is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | */ 17 | 18 | package it.feio.android.omninotes.async.bus; 19 | 20 | public class CategoriesUpdatedEvent { 21 | 22 | } 23 | -------------------------------------------------------------------------------- /omniNotes/src/main/java/it/feio/android/omninotes/async/bus/DynamicNavigationReadyEvent.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | * 4 | * This program is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | */ 17 | 18 | package it.feio.android.omninotes.async.bus; 19 | 20 | /** 21 | * Created by fede on 18/04/15. 22 | */ 23 | public class DynamicNavigationReadyEvent { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /omniNotes/src/main/java/it/feio/android/omninotes/exceptions/DatabaseException.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | * 4 | * This program is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | */ 17 | 18 | package it.feio.android.omninotes.exceptions; 19 | 20 | public class DatabaseException extends RuntimeException { 21 | 22 | public DatabaseException(String message, Exception e) { 23 | super(message, e); 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /omniNotes/src/main/java/it/feio/android/omninotes/exceptions/GenericException.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | * 4 | * This program is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | */ 17 | 18 | package it.feio.android.omninotes.exceptions; 19 | 20 | public class GenericException extends RuntimeException { 21 | 22 | public GenericException(String message) { 23 | super(message); 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /omniNotes/src/main/java/it/feio/android/omninotes/exceptions/checked/ContentSecurityException.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | * 4 | * This program is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | */ 17 | 18 | package it.feio.android.omninotes.exceptions.checked 19 | 20 | class ContentSecurityException(message: String) : SecurityException() -------------------------------------------------------------------------------- /omniNotes/src/main/java/it/feio/android/omninotes/exceptions/checked/UnhandledIntentException.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | * 4 | * This program is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | */ 17 | 18 | package it.feio.android.omninotes.exceptions.checked; 19 | 20 | public class UnhandledIntentException extends Exception { 21 | 22 | } 23 | -------------------------------------------------------------------------------- /omniNotes/src/main/java/it/feio/android/omninotes/models/PasswordValidator.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | * 4 | * This program is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | */ 17 | 18 | package it.feio.android.omninotes.models; 19 | 20 | public interface PasswordValidator { 21 | 22 | enum Result { 23 | SUCCEED, FAIL, RESTORE 24 | } 25 | 26 | void onPasswordValidated(Result result); 27 | } 28 | -------------------------------------------------------------------------------- /omniNotes/src/main/java/it/feio/android/omninotes/models/listeners/OnCABItemClickedListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | * 4 | * This program is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | */ 17 | 18 | package it.feio.android.omninotes.models.listeners; 19 | 20 | 21 | import android.view.MenuItem; 22 | 23 | 24 | public interface OnCABItemClickedListener { 25 | 26 | void onCABItemClicked(MenuItem item); 27 | } 28 | -------------------------------------------------------------------------------- /omniNotes/src/main/java/it/feio/android/omninotes/models/listeners/OnDrawChangedListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | * 4 | * This program is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | */ 17 | 18 | package it.feio.android.omninotes.models.listeners; 19 | 20 | public interface OnDrawChangedListener { 21 | 22 | void onDrawChanged(); 23 | } 24 | -------------------------------------------------------------------------------- /omniNotes/src/main/java/it/feio/android/omninotes/models/listeners/OnFabItemClickedListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | * 4 | * This program is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | */ 17 | 18 | package it.feio.android.omninotes.models.listeners; 19 | 20 | public interface OnFabItemClickedListener { 21 | 22 | void onFabItemClick(int id); 23 | } 24 | -------------------------------------------------------------------------------- /omniNotes/src/main/java/it/feio/android/omninotes/models/listeners/OnPermissionRequestedListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | * 4 | * This program is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | */ 17 | 18 | package it.feio.android.omninotes.models.listeners; 19 | 20 | public interface OnPermissionRequestedListener { 21 | 22 | void onPermissionGranted(); 23 | } 24 | -------------------------------------------------------------------------------- /omniNotes/src/main/java/it/feio/android/omninotes/models/listeners/OnViewTouchedListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | * 4 | * This program is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | */ 17 | 18 | package it.feio.android.omninotes.models.listeners; 19 | 20 | import android.view.MotionEvent; 21 | 22 | 23 | public interface OnViewTouchedListener { 24 | 25 | void onViewTouchOccurred(MotionEvent ev); 26 | } 27 | -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi-v11/ic_stat_literal_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi-v11/ic_stat_literal_icon.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi-v11/ic_stat_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi-v11/ic_stat_notification.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/bg_popup.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/bg_popup.9.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_action_draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_action_draw.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_action_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_action_on.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_action_view_as_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_action_view_as_list.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_add_circle_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_add_circle_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_alarm_add_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_alarm_add_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_alarm_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_alarm_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_alarm_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_alarm_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_alarm_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_alarm_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_archive_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_archive_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_archive_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_archive_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_archive_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_archive_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_attachment_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_attachment_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_attachment_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_attachment_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_brush_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_brush_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_call_merge_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_call_merge_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_camera_alt_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_camera_alt_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_cancel_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_cancel_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_cancel_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_cancel_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_clock_outline_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_clock_outline_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_content_save_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_content_save_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_delete_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_delete_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_delete_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_delete_grey600_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_delete_red_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_delete_red_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_delete_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_delete_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_drawer.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_emoticon_sad_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_emoticon_sad_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_eraser_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_eraser_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_file_document_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_file_document_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_file_document_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_file_document_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_filter_remove_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_filter_remove_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_filter_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_filter_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_folder_open_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_folder_open_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_folder_special_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_folder_special_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_folder_special_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_folder_special_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_format_align_justify_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_format_align_justify_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_format_align_justify_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_format_align_justify_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_format_list_bulleted_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_format_list_bulleted_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_format_list_bulleted_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_format_list_bulleted_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_format_list_checks_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_format_list_checks_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_image_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_image_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_information_outline_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_information_outline_grey600_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_insert_drive_file_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_insert_drive_file_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_laptop_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_laptop_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_lock_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_lock_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_logo.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_loyalty_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_loyalty_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_loyalty_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_loyalty_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_material_reminder_time_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_material_reminder_time_light.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_mic_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_mic_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_photo_camera_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_photo_camera_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_pin_drop_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_pin_drop_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_pin_drop_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_pin_drop_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_redo_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_redo_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_remind_later_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_remind_later_light.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_select_all_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_select_all_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_select_all_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_select_all_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_settings_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_settings_black_36dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_share_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_share_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_shortcut.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_snooze_reminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_snooze_reminder.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_sort_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_sort_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_stat_literal_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_stat_literal_icon.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_stat_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_stat_notification.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_unarchive_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_unarchive_grey600_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_unarchive_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_unarchive_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_undelete_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_undelete_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_undo_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_undo_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/ic_videocam_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/ic_videocam_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/jingles_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/jingles_1.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/jingles_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/jingles_2.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/jingles_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/jingles_3.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/jingles_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/jingles_4.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/jingles_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/jingles_5.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-hdpi/jingles_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-hdpi/jingles_6.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi-v11/ic_stat_literal_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi-v11/ic_stat_literal_icon.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi-v11/ic_stat_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi-v11/ic_stat_notification.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/bg_popup.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/bg_popup.9.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_action_draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_action_draw.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_action_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_action_on.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_action_view_as_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_action_view_as_list.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_add_circle_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_add_circle_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_alarm_add_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_alarm_add_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_alarm_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_alarm_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_alarm_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_alarm_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_alarm_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_alarm_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_archive_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_archive_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_archive_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_archive_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_archive_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_archive_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_attachment_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_attachment_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_attachment_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_attachment_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_brush_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_brush_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_call_merge_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_call_merge_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_camera_alt_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_camera_alt_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_cancel_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_cancel_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_cancel_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_cancel_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_checkbox_blank_circle_outline_indigo_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_checkbox_blank_circle_outline_indigo_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_checkbox_blank_outline_indigo_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_checkbox_blank_outline_indigo_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_checkbox_marked_circle_outline_indigo_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_checkbox_marked_circle_outline_indigo_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_checkbox_marked_outline_indigo_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_checkbox_marked_outline_indigo_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_clock_outline_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_clock_outline_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_content_save_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_content_save_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_delete_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_delete_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_delete_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_delete_grey600_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_delete_red_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_delete_red_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_delete_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_delete_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_drawer.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_emoticon_sad_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_emoticon_sad_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_eraser_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_eraser_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_file_document_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_file_document_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_file_document_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_file_document_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_filter_remove_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_filter_remove_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_filter_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_filter_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_folder_open_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_folder_open_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_folder_special_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_folder_special_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_folder_special_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_folder_special_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_format_align_justify_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_format_align_justify_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_format_align_justify_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_format_align_justify_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_format_list_bulleted_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_format_list_bulleted_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_format_list_bulleted_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_format_list_bulleted_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_format_list_checks_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_format_list_checks_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_image_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_image_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_information_outline_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_information_outline_grey600_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_insert_drive_file_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_insert_drive_file_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_laptop_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_laptop_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_lock_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_lock_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_logo.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_loyalty_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_loyalty_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_loyalty_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_loyalty_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_material_reminder_time_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_material_reminder_time_light.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_mic_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_mic_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_photo_camera_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_photo_camera_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_pin_drop_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_pin_drop_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_pin_drop_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_pin_drop_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_redo_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_redo_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_remind_later_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_remind_later_light.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_select_all_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_select_all_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_select_all_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_select_all_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_settings_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_settings_black_36dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_share_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_share_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_shortcut.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_snooze_reminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_snooze_reminder.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_sort_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_sort_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_stat_literal_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_stat_literal_icon.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_stat_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_stat_notification.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_unarchive_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_unarchive_grey600_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_undelete_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_undelete_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_undo_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_undo_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-mdpi/ic_videocam_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-mdpi/ic_videocam_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-nodpi/attachment_broken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-nodpi/attachment_broken.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-nodpi/community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-nodpi/community.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-nodpi/ic_stat_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-nodpi/ic_stat_notification_icon.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-nodpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-nodpi/logo.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-nodpi/logo_notification_lollipop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-nodpi/logo_notification_lollipop.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-nodpi/material_wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-nodpi/material_wall.jpg -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-nodpi/mr_jingles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-nodpi/mr_jingles.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-nodpi/play_no_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-nodpi/play_no_bg.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-nodpi/play_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-nodpi/play_white.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-nodpi/shortcut_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-nodpi/shortcut_icon.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-nodpi/slide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-nodpi/slide2.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-nodpi/slide3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-nodpi/slide3.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-nodpi/slide4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-nodpi/slide4.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-nodpi/slide5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-nodpi/slide5.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-nodpi/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-nodpi/stop.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-nodpi/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-nodpi/white.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-nodpi/widget_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-nodpi/widget_list.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-nodpi/widget_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-nodpi/widget_simple.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-v26/camera_adaptive.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?><!-- 2 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | ~ 4 | ~ This program is free software: you can redistribute it and/or modify 5 | ~ it under the terms of the GNU General Public License as published by 6 | ~ the Free Software Foundation, either version 3 of the License, or 7 | ~ (at your option) any later version. 8 | ~ 9 | ~ This program is distributed in the hope that it will be useful, 10 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | ~ GNU General Public License for more details. 13 | ~ 14 | ~ You should have received a copy of the GNU General Public License 15 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | --> 17 | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> 18 | <background android:drawable="@color/materialGrey100" /> 19 | <foreground android:drawable="@drawable/camera" /> 20 | </adaptive-icon> -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-v26/plus_adaptive.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?><!-- 2 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | ~ 4 | ~ This program is free software: you can redistribute it and/or modify 5 | ~ it under the terms of the GNU General Public License as published by 6 | ~ the Free Software Foundation, either version 3 of the License, or 7 | ~ (at your option) any later version. 8 | ~ 9 | ~ This program is distributed in the hope that it will be useful, 10 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | ~ GNU General Public License for more details. 13 | ~ 14 | ~ You should have received a copy of the GNU General Public License 15 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | --> 17 | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> 18 | <background android:drawable="@color/materialGrey100" /> 19 | <foreground android:drawable="@drawable/plus" /> 20 | </adaptive-icon> -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi-v11/ic_stat_literal_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi-v11/ic_stat_literal_icon.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi-v11/ic_stat_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi-v11/ic_stat_notification.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/bg_popup.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/bg_popup.9.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_action_draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_action_draw.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_action_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_action_on.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_action_view_as_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_action_view_as_list.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_add_circle_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_add_circle_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_alarm_add_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_alarm_add_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_alarm_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_alarm_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_alarm_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_alarm_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_alarm_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_alarm_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_archive_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_archive_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_archive_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_archive_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_archive_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_archive_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_attachment_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_attachment_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_attachment_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_attachment_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_brush_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_brush_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_call_merge_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_call_merge_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_camera_alt_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_camera_alt_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_cancel_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_cancel_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_cancel_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_cancel_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_checkbox_blank_circle_outline_indigo_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_checkbox_blank_circle_outline_indigo_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_checkbox_blank_outline_indigo_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_checkbox_blank_outline_indigo_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_checkbox_marked_circle_outline_indigo_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_checkbox_marked_circle_outline_indigo_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_checkbox_marked_outline_indigo_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_checkbox_marked_outline_indigo_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_clock_outline_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_clock_outline_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_content_save_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_content_save_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_delete_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_delete_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_delete_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_delete_grey600_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_delete_red_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_delete_red_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_delete_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_delete_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_drawer.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_emoticon_sad_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_emoticon_sad_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_eraser_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_eraser_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_file_document_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_file_document_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_file_document_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_file_document_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_filter_remove_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_filter_remove_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_filter_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_filter_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_folder_open_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_folder_open_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_folder_special_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_folder_special_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_folder_special_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_folder_special_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_format_align_justify_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_format_align_justify_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_format_align_justify_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_format_align_justify_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_format_list_bulleted_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_format_list_bulleted_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_format_list_bulleted_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_format_list_bulleted_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_format_list_checks_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_format_list_checks_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_image_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_image_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_information_outline_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_information_outline_grey600_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_insert_drive_file_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_insert_drive_file_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_laptop_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_laptop_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_lock_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_lock_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_logo.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_loyalty_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_loyalty_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_loyalty_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_loyalty_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_material_reminder_time_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_material_reminder_time_light.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_mic_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_mic_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_photo_camera_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_photo_camera_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_pin_drop_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_pin_drop_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_pin_drop_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_pin_drop_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_redo_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_redo_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_remind_later_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_remind_later_light.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_select_all_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_select_all_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_select_all_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_select_all_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_settings_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_settings_black_36dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_share_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_share_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_shortcut.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_snooze_reminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_snooze_reminder.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_sort_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_sort_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_stat_literal_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_stat_literal_icon.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_stat_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_stat_notification.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_unarchive_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_unarchive_grey600_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_unarchive_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_unarchive_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_undelete_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_undelete_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_undo_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_undo_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_undobar_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_undobar_undo.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/ic_videocam_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/ic_videocam_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/jingles_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/jingles_1.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/jingles_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/jingles_2.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/jingles_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/jingles_3.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/jingles_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/jingles_4.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/jingles_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/jingles_5.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/jingles_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/jingles_6.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/undobar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/undobar.9.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/undobar_button_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/undobar_button_focused.9.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/undobar_button_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/undobar_button_pressed.9.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xhdpi/undobar_divider.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xhdpi/undobar_divider.9.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi-v11/ic_stat_literal_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi-v11/ic_stat_literal_icon.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi-v11/ic_stat_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi-v11/ic_stat_notification.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/bg_popup.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/bg_popup.9.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_action_draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_action_draw.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_action_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_action_on.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_action_view_as_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_action_view_as_list.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_add_circle_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_add_circle_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_alarm_add_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_alarm_add_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_alarm_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_alarm_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_alarm_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_alarm_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_alarm_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_alarm_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_archive_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_archive_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_archive_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_archive_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_archive_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_archive_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_attachment_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_attachment_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_attachment_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_attachment_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_brush_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_brush_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_call_merge_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_call_merge_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_camera_alt_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_camera_alt_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_cancel_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_cancel_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_cancel_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_cancel_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_checkbox_blank_circle_outline_indigo_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_checkbox_blank_circle_outline_indigo_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_checkbox_blank_outline_indigo_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_checkbox_blank_outline_indigo_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_checkbox_marked_circle_outline_indigo_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_checkbox_marked_circle_outline_indigo_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_checkbox_marked_outline_indigo_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_checkbox_marked_outline_indigo_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_clock_outline_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_clock_outline_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_content_save_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_content_save_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_delete_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_delete_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_delete_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_delete_grey600_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_delete_red_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_delete_red_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_delete_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_delete_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_drawer.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_emoticon_sad_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_emoticon_sad_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_eraser_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_eraser_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_file_document_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_file_document_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_file_document_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_file_document_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_filter_remove_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_filter_remove_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_filter_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_filter_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_folder_open_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_folder_open_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_folder_special_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_folder_special_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_folder_special_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_folder_special_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_format_align_justify_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_format_align_justify_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_format_align_justify_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_format_align_justify_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_format_list_bulleted_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_format_list_bulleted_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_format_list_bulleted_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_format_list_bulleted_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_format_list_checks_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_format_list_checks_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_image_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_image_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_information_outline_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_information_outline_grey600_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_insert_drive_file_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_insert_drive_file_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_laptop_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_laptop_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_lock_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_lock_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_logo.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_loyalty_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_loyalty_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_loyalty_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_loyalty_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_material_reminder_time_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_material_reminder_time_light.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_mic_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_mic_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_photo_camera_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_photo_camera_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_pin_drop_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_pin_drop_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_pin_drop_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_pin_drop_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_redo_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_redo_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_remind_later_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_remind_later_light.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_select_all_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_select_all_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_select_all_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_select_all_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_settings_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_settings_black_36dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_share_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_share_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_shortcut.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_snooze_reminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_snooze_reminder.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_sort_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_sort_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_stat_literal_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_stat_literal_icon.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_stat_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_stat_notification.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_unarchive_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_unarchive_grey600_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_unarchive_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_unarchive_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_undelete_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_undelete_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_undo_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_undo_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/ic_videocam_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/ic_videocam_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/jingles_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/jingles_1.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/jingles_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/jingles_2.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/jingles_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/jingles_3.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/jingles_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/jingles_4.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/jingles_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/jingles_5.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxhdpi/jingles_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxhdpi/jingles_6.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi-v11/ic_stat_literal_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi-v11/ic_stat_literal_icon.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi-v11/ic_stat_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi-v11/ic_stat_notification.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_action_draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_action_draw.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_action_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_action_on.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_add_circle_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_add_circle_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_alarm_add_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_alarm_add_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_alarm_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_alarm_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_alarm_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_alarm_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_alarm_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_alarm_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_archive_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_archive_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_archive_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_archive_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_archive_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_archive_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_attachment_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_attachment_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_attachment_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_attachment_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_brush_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_brush_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_call_merge_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_call_merge_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_camera_alt_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_camera_alt_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_cancel_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_cancel_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_cancel_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_cancel_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_checkbox_blank_circle_outline_indigo_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_checkbox_blank_circle_outline_indigo_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_checkbox_blank_outline_indigo_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_checkbox_blank_outline_indigo_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_checkbox_marked_circle_outline_indigo_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_checkbox_marked_circle_outline_indigo_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_checkbox_marked_outline_indigo_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_checkbox_marked_outline_indigo_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_clock_outline_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_clock_outline_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_content_save_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_content_save_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_delete_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_delete_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_delete_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_delete_grey600_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_delete_red_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_delete_red_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_delete_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_delete_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_drawer.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_emoticon_sad_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_emoticon_sad_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_eraser_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_eraser_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_file_document_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_file_document_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_file_document_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_file_document_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_filter_remove_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_filter_remove_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_filter_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_filter_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_folder_open_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_folder_open_black_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_folder_special_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_folder_special_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_folder_special_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_folder_special_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_format_align_justify_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_format_align_justify_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_format_align_justify_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_format_align_justify_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_format_list_bulleted_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_format_list_bulleted_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_format_list_bulleted_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_format_list_bulleted_white_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_format_list_checks_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_format_list_checks_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_image_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_image_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_information_outline_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_information_outline_grey600_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_insert_drive_file_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_insert_drive_file_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_laptop_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_laptop_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_lock_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_lock_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_logo.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_loyalty_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_loyalty_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_loyalty_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_loyalty_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_mic_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_mic_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_photo_camera_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_photo_camera_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_pin_drop_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_pin_drop_black_18dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_pin_drop_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_pin_drop_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_redo_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_redo_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_search_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_search_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_select_all_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_select_all_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_select_all_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_select_all_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_settings_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_settings_black_36dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_share_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_share_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_shortcut.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_sort_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_sort_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_stat_literal_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_stat_literal_icon.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_stat_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_stat_notification.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_unarchive_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_unarchive_grey600_48dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_unarchive_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_unarchive_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_undelete_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_undelete_white_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_undo_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_undo_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable-xxxhdpi/ic_videocam_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable-xxxhdpi/ic_videocam_black_24dp.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable/category_count_bg.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?><!-- 2 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | ~ 4 | ~ This program is free software: you can redistribute it and/or modify 5 | ~ it under the terms of the GNU General Public License as published by 6 | ~ the Free Software Foundation, either version 3 of the License, or 7 | ~ (at your option) any later version. 8 | ~ 9 | ~ This program is distributed in the hope that it will be useful, 10 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | ~ GNU General Public License for more details. 13 | ~ 14 | ~ You should have received a copy of the GNU General Public License 15 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | --> 17 | 18 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 19 | android:shape="rectangle"> 20 | <solid android:color="@color/colorPrimary" /> 21 | <corners android:radius="10dp" /> 22 | </shape> 23 | -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable/fab_labels_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/drawable/fab_labels_background.9.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable/list_selector_focused.xml: -------------------------------------------------------------------------------- 1 | <!-- 2 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | ~ 4 | ~ This program is free software: you can redistribute it and/or modify 5 | ~ it under the terms of the GNU General Public License as published by 6 | ~ the Free Software Foundation, either version 3 of the License, or 7 | ~ (at your option) any later version. 8 | ~ 9 | ~ This program is distributed in the hope that it will be useful, 10 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | ~ GNU General Public License for more details. 13 | ~ 14 | ~ You should have received a copy of the GNU General Public License 15 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | --> 17 | 18 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 19 | android:shape="rectangle"> 20 | 21 | <!-- view background color --> 22 | <solid android:color="@color/kitkat_gray_light"></solid> 23 | 24 | </shape> 25 | -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable/list_selector_pressed.xml: -------------------------------------------------------------------------------- 1 | <!-- 2 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | ~ 4 | ~ This program is free software: you can redistribute it and/or modify 5 | ~ it under the terms of the GNU General Public License as published by 6 | ~ the Free Software Foundation, either version 3 of the License, or 7 | ~ (at your option) any later version. 8 | ~ 9 | ~ This program is distributed in the hope that it will be useful, 10 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | ~ GNU General Public License for more details. 13 | ~ 14 | ~ You should have received a copy of the GNU General Public License 15 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | --> 17 | 18 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 19 | android:shape="rectangle"> 20 | 21 | <!-- view background color --> 22 | <solid android:color="@color/kitkat_gray_light"></solid> 23 | 24 | </shape> 25 | -------------------------------------------------------------------------------- /omniNotes/src/main/res/drawable/scrollbar_thumb_drawable.xml: -------------------------------------------------------------------------------- 1 | <!-- 2 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | ~ 4 | ~ This program is free software: you can redistribute it and/or modify 5 | ~ it under the terms of the GNU General Public License as published by 6 | ~ the Free Software Foundation, either version 3 of the License, or 7 | ~ (at your option) any later version. 8 | ~ 9 | ~ This program is distributed in the hope that it will be useful, 10 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | ~ GNU General Public License for more details. 13 | ~ 14 | ~ You should have received a copy of the GNU General Public License 15 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | --> 17 | 18 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 19 | <item android:drawable="@drawable/scrollbar_thumb" android:state_pressed="true" /> 20 | 21 | <item android:drawable="@drawable/scrollbar_thumb" /> 22 | </selector> -------------------------------------------------------------------------------- /omniNotes/src/main/res/layout/webview.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?><!-- 2 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | ~ 4 | ~ This program is free software: you can redistribute it and/or modify 5 | ~ it under the terms of the GNU General Public License as published by 6 | ~ the Free Software Foundation, either version 3 of the License, or 7 | ~ (at your option) any later version. 8 | ~ 9 | ~ This program is distributed in the hope that it will be useful, 10 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | ~ GNU General Public License for more details. 13 | ~ 14 | ~ You should have received a copy of the GNU General Public License 15 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | --> 17 | 18 | <WebView xmlns:android="http://schemas.android.com/apk/res/android" 19 | android:id="@+id/webview" 20 | android:layout_width="match_parent" 21 | android:layout_height="match_parent" /> -------------------------------------------------------------------------------- /omniNotes/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <background android:drawable="@color/ic_launcher_background"/> 4 | <foreground android:drawable="@drawable/ic_launcher_foreground"/> 5 | <monochrome> 6 | <inset android:inset="25%" android:drawable="@drawable/logo_monochrome"/> 7 | </monochrome> 8 | </adaptive-icon> -------------------------------------------------------------------------------- /omniNotes/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/raw/files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/raw/files.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/raw/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/raw/play.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/raw/vcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoiosue/Omni-Notes/a5b2ae231e35dae38a5c4274dc27672a88ddc0d5/omniNotes/src/main/res/raw/vcard.png -------------------------------------------------------------------------------- /omniNotes/src/main/res/values-bg-rBG/arrays.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <!-- 3 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 4 | ~ 5 | ~ This program is free software: you can redistribute it and/or modify 6 | ~ it under the terms of the GNU General Public License as published by 7 | ~ the Free Software Foundation, either version 3 of the License, or 8 | ~ (at your option) any later version. 9 | ~ 10 | ~ This program is distributed in the hope that it will be useful, 11 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | ~ GNU General Public License for more details. 14 | ~ 15 | ~ You should have received a copy of the GNU General Public License 16 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 17 | --> 18 | <resources></resources> 19 | -------------------------------------------------------------------------------- /omniNotes/src/main/res/values-bg-rBG/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <!-- 3 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 4 | ~ 5 | ~ This program is free software: you can redistribute it and/or modify 6 | ~ it under the terms of the GNU General Public License as published by 7 | ~ the Free Software Foundation, either version 3 of the License, or 8 | ~ (at your option) any later version. 9 | ~ 10 | ~ This program is distributed in the hope that it will be useful, 11 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | ~ GNU General Public License for more details. 14 | ~ 15 | ~ You should have received a copy of the GNU General Public License 16 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 17 | --> 18 | <resources> 19 | <!-- Activities --> 20 | <!-- Settings --> 21 | <!-- Stats --> 22 | <!-- Instructions --> 23 | <!-- Accessibility --> 24 | <!-- Various --> 25 | </resources> 26 | -------------------------------------------------------------------------------- /omniNotes/src/main/res/values-fil-rPH/arrays.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <!-- 3 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 4 | ~ 5 | ~ This program is free software: you can redistribute it and/or modify 6 | ~ it under the terms of the GNU General Public License as published by 7 | ~ the Free Software Foundation, either version 3 of the License, or 8 | ~ (at your option) any later version. 9 | ~ 10 | ~ This program is distributed in the hope that it will be useful, 11 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | ~ GNU General Public License for more details. 14 | ~ 15 | ~ You should have received a copy of the GNU General Public License 16 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 17 | --> 18 | <resources></resources> 19 | -------------------------------------------------------------------------------- /omniNotes/src/main/res/values-fil-rPH/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <!-- 3 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 4 | ~ 5 | ~ This program is free software: you can redistribute it and/or modify 6 | ~ it under the terms of the GNU General Public License as published by 7 | ~ the Free Software Foundation, either version 3 of the License, or 8 | ~ (at your option) any later version. 9 | ~ 10 | ~ This program is distributed in the hope that it will be useful, 11 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | ~ GNU General Public License for more details. 14 | ~ 15 | ~ You should have received a copy of the GNU General Public License 16 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 17 | --> 18 | <resources> 19 | <!-- Activities --> 20 | <!-- Settings --> 21 | <!-- Stats --> 22 | <!-- Instructions --> 23 | <!-- Accessibility --> 24 | <!-- Various --> 25 | </resources> 26 | -------------------------------------------------------------------------------- /omniNotes/src/main/res/values-hdpi/dimens.xml: -------------------------------------------------------------------------------- 1 | <!-- 2 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | ~ 4 | ~ This program is free software: you can redistribute it and/or modify 5 | ~ it under the terms of the GNU General Public License as published by 6 | ~ the Free Software Foundation, either version 3 of the License, or 7 | ~ (at your option) any later version. 8 | ~ 9 | ~ This program is distributed in the hope that it will be useful, 10 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | ~ GNU General Public License for more details. 13 | ~ 14 | ~ You should have received a copy of the GNU General Public License 15 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | --> 17 | <resources> 18 | 19 | <dimen name="navigation_drawer_width">280dp</dimen> 20 | 21 | </resources> 22 | -------------------------------------------------------------------------------- /omniNotes/src/main/res/values-land-v19/bools.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?><!-- 2 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | ~ 4 | ~ This program is free software: you can redistribute it and/or modify 5 | ~ it under the terms of the GNU General Public License as published by 6 | ~ the Free Software Foundation, either version 3 of the License, or 7 | ~ (at your option) any later version. 8 | ~ 9 | ~ This program is distributed in the hope that it will be useful, 10 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | ~ GNU General Public License for more details. 13 | ~ 14 | ~ You should have received a copy of the GNU General Public License 15 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | --> 17 | 18 | <resources> 19 | 20 | <bool name="transparent_nav">false</bool> 21 | 22 | </resources> 23 | -------------------------------------------------------------------------------- /omniNotes/src/main/res/values-land/dimens.xml: -------------------------------------------------------------------------------- 1 | <!-- 2 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | ~ 4 | ~ This program is free software: you can redistribute it and/or modify 5 | ~ it under the terms of the GNU General Public License as published by 6 | ~ the Free Software Foundation, either version 3 of the License, or 7 | ~ (at your option) any later version. 8 | ~ 9 | ~ This program is distributed in the hope that it will be useful, 10 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | ~ GNU General Public License for more details. 13 | ~ 14 | ~ You should have received a copy of the GNU General Public License 15 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | --> 17 | <resources> 18 | 19 | <dimen name="navigation_drawer_image_height">100dp</dimen> 20 | 21 | </resources> 22 | -------------------------------------------------------------------------------- /omniNotes/src/main/res/values-sw360dp/dimens.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?><!-- 2 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | ~ 4 | ~ This program is free software: you can redistribute it and/or modify 5 | ~ it under the terms of the GNU General Public License as published by 6 | ~ the Free Software Foundation, either version 3 of the License, or 7 | ~ (at your option) any later version. 8 | ~ 9 | ~ This program is distributed in the hope that it will be useful, 10 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | ~ GNU General Public License for more details. 13 | ~ 14 | ~ You should have received a copy of the GNU General Public License 15 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | --> 17 | 18 | <resources> 19 | <dimen name="navigation_drawer_width">304dp</dimen> 20 | </resources> 21 | -------------------------------------------------------------------------------- /omniNotes/src/main/res/values-sw384dp/dimens.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?><!-- 2 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | ~ 4 | ~ This program is free software: you can redistribute it and/or modify 5 | ~ it under the terms of the GNU General Public License as published by 6 | ~ the Free Software Foundation, either version 3 of the License, or 7 | ~ (at your option) any later version. 8 | ~ 9 | ~ This program is distributed in the hope that it will be useful, 10 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | ~ GNU General Public License for more details. 13 | ~ 14 | ~ You should have received a copy of the GNU General Public License 15 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | --> 17 | 18 | <resources> 19 | <dimen name="navigation_drawer_width">320dp</dimen> 20 | </resources> 21 | -------------------------------------------------------------------------------- /omniNotes/src/main/res/values-sw600dp/integers.xml: -------------------------------------------------------------------------------- 1 | <!-- 2 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | ~ 4 | ~ This program is free software: you can redistribute it and/or modify 5 | ~ it under the terms of the GNU General Public License as published by 6 | ~ the Free Software Foundation, either version 3 of the License, or 7 | ~ (at your option) any later version. 8 | ~ 9 | ~ This program is distributed in the hope that it will be useful, 10 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | ~ GNU General Public License for more details. 13 | ~ 14 | ~ You should have received a copy of the GNU General Public License 15 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | --> 17 | 18 | <resources> 19 | <integer name="textview_max_lines">2</integer> 20 | <integer name="textview_max_lines_expanded">3</integer> 21 | </resources> 22 | -------------------------------------------------------------------------------- /omniNotes/src/main/res/values-v19/bools.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?><!-- 2 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | ~ 4 | ~ This program is free software: you can redistribute it and/or modify 5 | ~ it under the terms of the GNU General Public License as published by 6 | ~ the Free Software Foundation, either version 3 of the License, or 7 | ~ (at your option) any later version. 8 | ~ 9 | ~ This program is distributed in the hope that it will be useful, 10 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | ~ GNU General Public License for more details. 13 | ~ 14 | ~ You should have received a copy of the GNU General Public License 15 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | --> 17 | 18 | <resources> 19 | 20 | <bool name="transparent_nav">true</bool> 21 | 22 | </resources> 23 | -------------------------------------------------------------------------------- /omniNotes/src/main/res/values-v19/dimens.xml: -------------------------------------------------------------------------------- 1 | <!-- 2 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | ~ 4 | ~ This program is free software: you can redistribute it and/or modify 5 | ~ it under the terms of the GNU General Public License as published by 6 | ~ the Free Software Foundation, either version 3 of the License, or 7 | ~ (at your option) any later version. 8 | ~ 9 | ~ This program is distributed in the hope that it will be useful, 10 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | ~ GNU General Public License for more details. 13 | ~ 14 | ~ You should have received a copy of the GNU General Public License 15 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | --> 17 | <resources> 18 | 19 | <dimen name="padding_top_kitkat">25dp</dimen> 20 | <dimen name="padding_bottom_kitkat">40dp</dimen> 21 | <dimen name="undobar_margin_bottom">35dp</dimen> 22 | 23 | </resources> 24 | -------------------------------------------------------------------------------- /omniNotes/src/main/res/values-xhdpi/dimens.xml: -------------------------------------------------------------------------------- 1 | <!-- 2 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | ~ 4 | ~ This program is free software: you can redistribute it and/or modify 5 | ~ it under the terms of the GNU General Public License as published by 6 | ~ the Free Software Foundation, either version 3 of the License, or 7 | ~ (at your option) any later version. 8 | ~ 9 | ~ This program is distributed in the hope that it will be useful, 10 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | ~ GNU General Public License for more details. 13 | ~ 14 | ~ You should have received a copy of the GNU General Public License 15 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | --> 17 | <resources> 18 | 19 | <dimen name="navigation_drawer_width">310dp</dimen> 20 | 21 | </resources> 22 | -------------------------------------------------------------------------------- /omniNotes/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources> 3 | <color name="ic_launcher_background">#3F51B5</color> 4 | </resources> -------------------------------------------------------------------------------- /omniNotes/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?><!-- 2 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | ~ 4 | ~ This program is free software: you can redistribute it and/or modify 5 | ~ it under the terms of the GNU General Public License as published by 6 | ~ the Free Software Foundation, either version 3 of the License, or 7 | ~ (at your option) any later version. 8 | ~ 9 | ~ This program is distributed in the hope that it will be useful, 10 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | ~ GNU General Public License for more details. 13 | ~ 14 | ~ You should have received a copy of the GNU General Public License 15 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | --> 17 | 18 | <resources> 19 | <item name="item_click_support" type="id" /> 20 | </resources> -------------------------------------------------------------------------------- /omniNotes/src/main/res/xml/file_provider_paths.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?><!-- 2 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | ~ 4 | ~ This program is free software: you can redistribute it and/or modify 5 | ~ it under the terms of the GNU General Public License as published by 6 | ~ the Free Software Foundation, either version 3 of the License, or 7 | ~ (at your option) any later version. 8 | ~ 9 | ~ This program is distributed in the hope that it will be useful, 10 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | ~ GNU General Public License for more details. 13 | ~ 14 | ~ You should have received a copy of the GNU General Public License 15 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | --> 17 | 18 | <paths> 19 | <external-path 20 | name="external_files" 21 | path="." /> 22 | </paths> -------------------------------------------------------------------------------- /omniNotes/src/main/res/xml/searchable.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?><!-- 2 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | ~ 4 | ~ This program is free software: you can redistribute it and/or modify 5 | ~ it under the terms of the GNU General Public License as published by 6 | ~ the Free Software Foundation, either version 3 of the License, or 7 | ~ (at your option) any later version. 8 | ~ 9 | ~ This program is distributed in the hope that it will be useful, 10 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | ~ GNU General Public License for more details. 13 | ~ 14 | ~ You should have received a copy of the GNU General Public License 15 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | --> 17 | <searchable xmlns:android="http://schemas.android.com/apk/res/android" 18 | android:hint="@string/search_hint" 19 | android:label="@string/app_name" 20 | android:voiceSearchMode="showVoiceSearchButton|launchRecognizer" /> 21 | -------------------------------------------------------------------------------- /omniNotes/src/play/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | 3 | <!-- 4 | ~ Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 5 | ~ 6 | ~ This program is free software: you can redistribute it and/or modify 7 | ~ it under the terms of the GNU General Public License as published by 8 | ~ the Free Software Foundation, either version 3 of the License, or 9 | ~ (at your option) any later version. 10 | ~ 11 | ~ This program is distributed in the hope that it will be useful, 12 | ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | ~ GNU General Public License for more details. 15 | ~ 16 | ~ You should have received a copy of the GNU General Public License 17 | ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 18 | --> 19 | <resources> 20 | 21 | <string name="app_name">Omni Notes</string> 22 | <string name="app_package">it.feio.android.omninotes</string> 23 | <string name="version_postfix" /> 24 | 25 | </resources> 26 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | # 4 | # This program is free software: you can redistribute it and/or modify 5 | # it under the terms of the GNU General Public License as published by 6 | # the Free Software Foundation, either version 3 of the License, or 7 | # (at your option) any later version. 8 | # 9 | # This program is distributed in the hope that it will be useful, 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | # GNU General Public License for more details. 13 | # 14 | # You should have received a copy of the GNU General Public License 15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | # 17 | 18 | proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt 19 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2013-2024 Federico Iosue (federico@iosue.it) 3 | * 4 | * This program is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 | */ 17 | 18 | include ':omniNotes' 19 | --------------------------------------------------------------------------------