├── .gitattributes ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── FAQ.md ├── LICENSE ├── README.md ├── art └── google_play.png ├── icons ├── ic_launcher-web.png └── ic_launcher.zip ├── project ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle │ ├── build.properties │ ├── build_commit_public_key.py │ ├── fetch_translations.py │ ├── proguard-rules.txt │ ├── src │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ │ └── fonts │ │ │ │ │ ├── roboto_condensed.ttf │ │ │ │ │ ├── roboto_light.ttf │ │ │ │ │ ├── roboto_medium.ttf │ │ │ │ │ ├── roboto_regular.ttf │ │ │ │ │ └── roboto_thin.ttf │ │ │ ├── java │ │ │ │ ├── com │ │ │ │ │ ├── achep │ │ │ │ │ │ ├── acdisplay │ │ │ │ │ │ │ ├── App.java │ │ │ │ │ │ │ ├── Atomic.java │ │ │ │ │ │ │ ├── Config.java │ │ │ │ │ │ │ ├── DialogHelper.java │ │ │ │ │ │ │ ├── Timeout.java │ │ │ │ │ │ │ ├── blacklist │ │ │ │ │ │ │ │ ├── AppConfig.java │ │ │ │ │ │ │ │ ├── Blacklist.java │ │ │ │ │ │ │ │ └── options │ │ │ │ │ │ │ │ │ ├── HideOption.java │ │ │ │ │ │ │ │ │ ├── NonClearableOption.java │ │ │ │ │ │ │ │ │ └── Option.java │ │ │ │ │ │ │ ├── graphics │ │ │ │ │ │ │ │ └── IconFactory.java │ │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ │ │ └── INotificatiable.java │ │ │ │ │ │ │ ├── notifications │ │ │ │ │ │ │ │ ├── Action.java │ │ │ │ │ │ │ │ ├── Extractor.java │ │ │ │ │ │ │ │ ├── Formatter.java │ │ │ │ │ │ │ │ ├── NotificationList.java │ │ │ │ │ │ │ │ ├── NotificationListChange.java │ │ │ │ │ │ │ │ ├── NotificationListener.java │ │ │ │ │ │ │ │ ├── NotificationListenerJellyBeanMR2.java │ │ │ │ │ │ │ │ ├── NotificationListenerLollipop.java │ │ │ │ │ │ │ │ ├── NotificationPresenter.java │ │ │ │ │ │ │ │ ├── NotificationUtils.java │ │ │ │ │ │ │ │ ├── OpenNotification.java │ │ │ │ │ │ │ │ ├── OpenNotificationJellyBean.java │ │ │ │ │ │ │ │ ├── OpenNotificationJellyBeanMR2.java │ │ │ │ │ │ │ │ ├── OpenNotificationKitKatWatch.java │ │ │ │ │ │ │ │ ├── OpenNotificationLollipop.java │ │ │ │ │ │ │ │ └── RemoteInputUtils.java │ │ │ │ │ │ │ ├── permissions │ │ │ │ │ │ │ │ ├── AccessManager.java │ │ │ │ │ │ │ │ ├── PermissionAccessibility.java │ │ │ │ │ │ │ │ └── PermissionNotificationListener.java │ │ │ │ │ │ │ ├── plugins │ │ │ │ │ │ │ │ └── powertoggles │ │ │ │ │ │ │ │ │ └── ToggleReceiver.java │ │ │ │ │ │ │ ├── providers │ │ │ │ │ │ │ │ ├── LogAttachmentProvider.java │ │ │ │ │ │ │ │ └── ToggleWidgetProvider.java │ │ │ │ │ │ │ ├── receiver │ │ │ │ │ │ │ │ ├── LocalReceiverActivity.java │ │ │ │ │ │ │ │ └── ReceiverPublic.java │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ ├── AccessibilityService.java │ │ │ │ │ │ │ │ └── MediaService.java │ │ │ │ │ │ │ ├── ui │ │ │ │ │ │ │ │ ├── activities │ │ │ │ │ │ │ │ │ ├── BlacklistActivity.java │ │ │ │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ │ │ │ └── SubBlacklistActivity.java │ │ │ │ │ │ │ │ ├── animations │ │ │ │ │ │ │ │ │ └── ProgressBarAnimation.java │ │ │ │ │ │ │ │ ├── fragments │ │ │ │ │ │ │ │ │ ├── BlacklistAppFragment.java │ │ │ │ │ │ │ │ │ └── settings │ │ │ │ │ │ │ │ │ │ └── KeyguardSettings.java │ │ │ │ │ │ │ │ ├── preferences │ │ │ │ │ │ │ │ │ └── TimeoutPreference.java │ │ │ │ │ │ │ │ └── widgets │ │ │ │ │ │ │ │ │ ├── ProgressBar.java │ │ │ │ │ │ │ │ │ └── notification │ │ │ │ │ │ │ │ │ ├── NotificationIcon.java │ │ │ │ │ │ │ │ │ └── NotificationWidget.java │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ ├── BitmapUtils.java │ │ │ │ │ │ │ │ └── PendingIntentUtils.java │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ ├── Build.java │ │ │ │ │ │ │ ├── Device.java │ │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ │ ├── AsyncTask.java │ │ │ │ │ │ │ │ └── WeakHandler.java │ │ │ │ │ │ │ ├── billing │ │ │ │ │ │ │ │ ├── Bitcoin.java │ │ │ │ │ │ │ │ ├── CheckoutInternal.java │ │ │ │ │ │ │ │ └── PayPal.java │ │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ │ ├── ConfigBase.java │ │ │ │ │ │ │ │ └── SharedList.java │ │ │ │ │ │ │ ├── dashboard │ │ │ │ │ │ │ │ ├── DashboardCategory.java │ │ │ │ │ │ │ │ └── DashboardTile.java │ │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ │ │ ├── ICheckable.java │ │ │ │ │ │ │ │ ├── ICoin.java │ │ │ │ │ │ │ │ ├── IOnLowMemory.java │ │ │ │ │ │ │ │ ├── IPermission.java │ │ │ │ │ │ │ │ ├── ISubscriptable.java │ │ │ │ │ │ │ │ └── ITimeout.java │ │ │ │ │ │ │ ├── permissions │ │ │ │ │ │ │ │ ├── Permission.java │ │ │ │ │ │ │ │ └── PermissionGroup.java │ │ │ │ │ │ │ ├── providers │ │ │ │ │ │ │ │ └── LogsProviderBase.java │ │ │ │ │ │ │ ├── tests │ │ │ │ │ │ │ │ ├── Check.java │ │ │ │ │ │ │ │ └── CheckImpl.java │ │ │ │ │ │ │ ├── ui │ │ │ │ │ │ │ │ ├── DialogBuilder.java │ │ │ │ │ │ │ │ ├── SwitchBarPermissible.java │ │ │ │ │ │ │ │ ├── activities │ │ │ │ │ │ │ │ │ ├── ActivityBase.java │ │ │ │ │ │ │ │ │ ├── SettingsActivity.java │ │ │ │ │ │ │ │ │ └── SubSettings.java │ │ │ │ │ │ │ │ ├── adapters │ │ │ │ │ │ │ │ │ ├── BetterArrayAdapter.java │ │ │ │ │ │ │ │ │ └── PermissionAdapter.java │ │ │ │ │ │ │ │ ├── animations │ │ │ │ │ │ │ │ │ └── AnimationListenerAdapter.java │ │ │ │ │ │ │ │ ├── drawables │ │ │ │ │ │ │ │ │ ├── PlayPauseDrawable.java │ │ │ │ │ │ │ │ │ ├── RippleDrawable2.java │ │ │ │ │ │ │ │ │ └── TransformationDrawable.java │ │ │ │ │ │ │ │ ├── fragments │ │ │ │ │ │ │ │ │ ├── DashboardFragment.java │ │ │ │ │ │ │ │ │ ├── PreferenceFragment.java │ │ │ │ │ │ │ │ │ ├── PreferenceFragmentBase.java │ │ │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ │ │ │ ├── AboutDialog.java │ │ │ │ │ │ │ │ │ │ ├── DialogFragment.java │ │ │ │ │ │ │ │ │ │ ├── DonateDialog.java │ │ │ │ │ │ │ │ │ │ ├── FeedbackDialog.java │ │ │ │ │ │ │ │ │ │ ├── HelpDialog.java │ │ │ │ │ │ │ │ │ │ └── PermissionsDialog.java │ │ │ │ │ │ │ │ ├── preferences │ │ │ │ │ │ │ │ │ └── Enabler.java │ │ │ │ │ │ │ │ └── widgets │ │ │ │ │ │ │ │ │ ├── DashboardLayout.java │ │ │ │ │ │ │ │ │ ├── DashboardTileView.java │ │ │ │ │ │ │ │ │ ├── HeaderGridView.java │ │ │ │ │ │ │ │ │ ├── SwitchBar.java │ │ │ │ │ │ │ │ │ └── TextView.java │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ ├── CoinUtils.java │ │ │ │ │ │ │ │ ├── CsUtils.java │ │ │ │ │ │ │ │ ├── DateUtils.java │ │ │ │ │ │ │ │ ├── FileUtils.java │ │ │ │ │ │ │ │ ├── FloatProperty.java │ │ │ │ │ │ │ │ ├── IntentUtils.java │ │ │ │ │ │ │ │ ├── LogUtils.java │ │ │ │ │ │ │ │ ├── MathUtils.java │ │ │ │ │ │ │ │ ├── NetworkUtils.java │ │ │ │ │ │ │ │ ├── NullUtils.java │ │ │ │ │ │ │ │ ├── Operator.java │ │ │ │ │ │ │ │ ├── PackageUtils.java │ │ │ │ │ │ │ │ ├── PreferenceManagerUtils.java │ │ │ │ │ │ │ │ ├── RawReader.java │ │ │ │ │ │ │ │ ├── RippleUtils.java │ │ │ │ │ │ │ │ ├── ToastUtils.java │ │ │ │ │ │ │ │ ├── ViewUtils.java │ │ │ │ │ │ │ │ ├── logcat │ │ │ │ │ │ │ │ └── Logcat.java │ │ │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ │ ├── PowerSaveDetector.java │ │ │ │ │ │ │ │ └── PowerUtils.java │ │ │ │ │ │ │ │ ├── smiley │ │ │ │ │ │ │ │ └── SmileyParser.java │ │ │ │ │ │ │ │ ├── xml │ │ │ │ │ │ │ │ ├── FastXmlSerializer.java │ │ │ │ │ │ │ │ └── XmlUtils.java │ │ │ │ │ │ │ │ └── zen │ │ │ │ │ │ │ │ ├── ZenConsts.java │ │ │ │ │ │ │ │ └── ZenUtils.java │ │ │ │ │ │ └── headsup │ │ │ │ │ │ │ ├── HeadsUpBase.java │ │ │ │ │ │ │ ├── HeadsUpNotificationView.java │ │ │ │ │ │ │ ├── HeadsUpView.java │ │ │ │ │ │ │ ├── SwipeHelper.java │ │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ │ └── Gefingerpoken.java │ │ │ │ │ └── painless │ │ │ │ │ │ └── pc │ │ │ │ │ │ └── PowerTogglesPlugin.java │ │ │ │ ├── dreamers │ │ │ │ │ └── graphics │ │ │ │ │ │ ├── Ripple.java │ │ │ │ │ │ ├── RippleBackground.java │ │ │ │ │ │ ├── RippleDrawable.java │ │ │ │ │ │ └── TouchTracker.java │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── commons │ │ │ │ │ └── lang │ │ │ │ │ └── builder │ │ │ │ │ ├── EqualsBuilder.java │ │ │ │ │ └── HashCodeBuilder.java │ │ │ └── res │ │ │ │ ├── anim │ │ │ │ ├── heads_up_enter.xml │ │ │ │ └── heads_up_exit.xml │ │ │ │ ├── color │ │ │ │ ├── ripple_dark.xml │ │ │ │ └── ripple_light.xml │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── emo_im_angel.png │ │ │ │ ├── emo_im_cool.png │ │ │ │ ├── emo_im_crying.png │ │ │ │ ├── emo_im_embarrassed.png │ │ │ │ ├── emo_im_foot_in_mouth.png │ │ │ │ ├── emo_im_happy.png │ │ │ │ ├── emo_im_heart.png │ │ │ │ ├── emo_im_kissing.png │ │ │ │ ├── emo_im_laughing.png │ │ │ │ ├── emo_im_lips_are_sealed.png │ │ │ │ ├── emo_im_mad.png │ │ │ │ ├── emo_im_money_mouth.png │ │ │ │ ├── emo_im_pokerface.png │ │ │ │ ├── emo_im_sad.png │ │ │ │ ├── emo_im_smirk.png │ │ │ │ ├── emo_im_surprised.png │ │ │ │ ├── emo_im_tongue_sticking_out.png │ │ │ │ ├── emo_im_undecided.png │ │ │ │ ├── emo_im_winking.png │ │ │ │ ├── emo_im_wtf.png │ │ │ │ ├── emo_im_yelling.png │ │ │ │ ├── ic_action_about_white.png │ │ │ │ ├── ic_action_bitcoin.png │ │ │ │ ├── ic_action_donate_white.png │ │ │ │ ├── ic_action_done_white.png │ │ │ │ ├── ic_action_feedback_white.png │ │ │ │ ├── ic_action_help_white.png │ │ │ │ ├── ic_action_paypal.png │ │ │ │ ├── ic_action_warning_amber.png │ │ │ │ ├── ic_action_warning_white.png │ │ │ │ ├── ic_dialog_compat_white.png │ │ │ │ ├── ic_dialog_icon_size_white.png │ │ │ │ ├── ic_dialog_inactive_time_white.png │ │ │ │ ├── ic_dialog_timeout_white.png │ │ │ │ ├── ic_settings_active_mode_white.png │ │ │ │ ├── ic_settings_apps_white.png │ │ │ │ ├── ic_settings_development_white.png │ │ │ │ ├── ic_settings_gui_white.png │ │ │ │ ├── ic_settings_hide_notifies.png │ │ │ │ ├── ic_settings_keyguard_white.png │ │ │ │ ├── ic_settings_more_white.png │ │ │ │ ├── ic_settings_non_clearable_notifies.png │ │ │ │ ├── ic_settings_notifications_white.png │ │ │ │ ├── ic_settings_sleep_mode.png │ │ │ │ ├── ic_warning.png │ │ │ │ ├── stat_headsup.png │ │ │ │ ├── stat_lock.png │ │ │ │ └── stat_notify.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── emo_im_angel.png │ │ │ │ ├── emo_im_cool.png │ │ │ │ ├── emo_im_crying.png │ │ │ │ ├── emo_im_embarrassed.png │ │ │ │ ├── emo_im_foot_in_mouth.png │ │ │ │ ├── emo_im_happy.png │ │ │ │ ├── emo_im_heart.png │ │ │ │ ├── emo_im_kissing.png │ │ │ │ ├── emo_im_laughing.png │ │ │ │ ├── emo_im_lips_are_sealed.png │ │ │ │ ├── emo_im_mad.png │ │ │ │ ├── emo_im_money_mouth.png │ │ │ │ ├── emo_im_pokerface.png │ │ │ │ ├── emo_im_sad.png │ │ │ │ ├── emo_im_smirk.png │ │ │ │ ├── emo_im_surprised.png │ │ │ │ ├── emo_im_tongue_sticking_out.png │ │ │ │ ├── emo_im_undecided.png │ │ │ │ ├── emo_im_winking.png │ │ │ │ ├── emo_im_wtf.png │ │ │ │ ├── emo_im_yelling.png │ │ │ │ ├── ic_action_about_white.png │ │ │ │ ├── ic_action_bitcoin.png │ │ │ │ ├── ic_action_donate_white.png │ │ │ │ ├── ic_action_done_white.png │ │ │ │ ├── ic_action_feedback_white.png │ │ │ │ ├── ic_action_help_white.png │ │ │ │ ├── ic_action_paypal.png │ │ │ │ ├── ic_action_warning_amber.png │ │ │ │ ├── ic_action_warning_white.png │ │ │ │ ├── ic_dialog_compat_white.png │ │ │ │ ├── ic_dialog_icon_size_white.png │ │ │ │ ├── ic_dialog_inactive_time_white.png │ │ │ │ ├── ic_dialog_timeout_white.png │ │ │ │ ├── ic_settings_active_mode_white.png │ │ │ │ ├── ic_settings_apps_white.png │ │ │ │ ├── ic_settings_development_white.png │ │ │ │ ├── ic_settings_gui_white.png │ │ │ │ ├── ic_settings_hide_notifies.png │ │ │ │ ├── ic_settings_keyguard_white.png │ │ │ │ ├── ic_settings_more_white.png │ │ │ │ ├── ic_settings_non_clearable_notifies.png │ │ │ │ ├── ic_settings_notifications_white.png │ │ │ │ ├── ic_settings_sleep_mode.png │ │ │ │ ├── ic_warning.png │ │ │ │ ├── stat_headsup.png │ │ │ │ ├── stat_lock.png │ │ │ │ └── stat_notify.png │ │ │ │ ├── drawable-v21 │ │ │ │ ├── bg_dashboard_tile.xml │ │ │ │ └── ripple.xml │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── bg_dashboard_category_compat_dark.9.png │ │ │ │ ├── bg_window_overlay_dark.9.png │ │ │ │ ├── emo_im_angel.png │ │ │ │ ├── emo_im_cool.png │ │ │ │ ├── emo_im_crying.png │ │ │ │ ├── emo_im_embarrassed.png │ │ │ │ ├── emo_im_foot_in_mouth.png │ │ │ │ ├── emo_im_happy.png │ │ │ │ ├── emo_im_heart.png │ │ │ │ ├── emo_im_kissing.png │ │ │ │ ├── emo_im_laughing.png │ │ │ │ ├── emo_im_lips_are_sealed.png │ │ │ │ ├── emo_im_mad.png │ │ │ │ ├── emo_im_money_mouth.png │ │ │ │ ├── emo_im_pokerface.png │ │ │ │ ├── emo_im_sad.png │ │ │ │ ├── emo_im_smirk.png │ │ │ │ ├── emo_im_surprised.png │ │ │ │ ├── emo_im_tongue_sticking_out.png │ │ │ │ ├── emo_im_undecided.png │ │ │ │ ├── emo_im_winking.png │ │ │ │ ├── emo_im_wtf.png │ │ │ │ ├── emo_im_yelling.png │ │ │ │ ├── ic_action_about_white.png │ │ │ │ ├── ic_action_bitcoin.png │ │ │ │ ├── ic_action_donate_white.png │ │ │ │ ├── ic_action_done_white.png │ │ │ │ ├── ic_action_feedback_white.png │ │ │ │ ├── ic_action_help_white.png │ │ │ │ ├── ic_action_paypal.png │ │ │ │ ├── ic_action_warning_amber.png │ │ │ │ ├── ic_action_warning_white.png │ │ │ │ ├── ic_dialog_compat_white.png │ │ │ │ ├── ic_dialog_icon_size_white.png │ │ │ │ ├── ic_dialog_inactive_time_white.png │ │ │ │ ├── ic_dialog_timeout_white.png │ │ │ │ ├── ic_settings_active_mode_white.png │ │ │ │ ├── ic_settings_apps_white.png │ │ │ │ ├── ic_settings_development_white.png │ │ │ │ ├── ic_settings_gui_white.png │ │ │ │ ├── ic_settings_hide_notifies.png │ │ │ │ ├── ic_settings_keyguard_white.png │ │ │ │ ├── ic_settings_more_white.png │ │ │ │ ├── ic_settings_non_clearable_notifies.png │ │ │ │ ├── ic_settings_notifications_white.png │ │ │ │ ├── ic_settings_sleep_mode.png │ │ │ │ ├── ic_warning.png │ │ │ │ ├── stat_headsup.png │ │ │ │ ├── stat_lock.png │ │ │ │ └── stat_notify.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── bg_dashboard_category_compat_dark.9.png │ │ │ │ ├── bg_heads_up_notification_dark.9.png │ │ │ │ ├── bg_heads_up_notification_light.9.png │ │ │ │ ├── bg_window_overlay_dark.9.png │ │ │ │ ├── emo_im_angel.png │ │ │ │ ├── emo_im_cool.png │ │ │ │ ├── emo_im_crying.png │ │ │ │ ├── emo_im_embarrassed.png │ │ │ │ ├── emo_im_foot_in_mouth.png │ │ │ │ ├── emo_im_happy.png │ │ │ │ ├── emo_im_heart.png │ │ │ │ ├── emo_im_kissing.png │ │ │ │ ├── emo_im_laughing.png │ │ │ │ ├── emo_im_lips_are_sealed.png │ │ │ │ ├── emo_im_mad.png │ │ │ │ ├── emo_im_money_mouth.png │ │ │ │ ├── emo_im_pokerface.png │ │ │ │ ├── emo_im_sad.png │ │ │ │ ├── emo_im_smirk.png │ │ │ │ ├── emo_im_surprised.png │ │ │ │ ├── emo_im_tongue_sticking_out.png │ │ │ │ ├── emo_im_undecided.png │ │ │ │ ├── emo_im_winking.png │ │ │ │ ├── emo_im_wtf.png │ │ │ │ ├── emo_im_yelling.png │ │ │ │ ├── ic_action_about_white.png │ │ │ │ ├── ic_action_bitcoin.png │ │ │ │ ├── ic_action_donate_white.png │ │ │ │ ├── ic_action_done_white.png │ │ │ │ ├── ic_action_feedback_white.png │ │ │ │ ├── ic_action_help_white.png │ │ │ │ ├── ic_action_paypal.png │ │ │ │ ├── ic_action_warning_amber.png │ │ │ │ ├── ic_action_warning_white.png │ │ │ │ ├── ic_dialog_compat_white.png │ │ │ │ ├── ic_dialog_icon_size_white.png │ │ │ │ ├── ic_dialog_inactive_time_white.png │ │ │ │ ├── ic_dialog_timeout_white.png │ │ │ │ ├── ic_settings_active_mode_white.png │ │ │ │ ├── ic_settings_apps_white.png │ │ │ │ ├── ic_settings_development_white.png │ │ │ │ ├── ic_settings_gui_white.png │ │ │ │ ├── ic_settings_hide_notifies.png │ │ │ │ ├── ic_settings_keyguard_white.png │ │ │ │ ├── ic_settings_more_white.png │ │ │ │ ├── ic_settings_non_clearable_notifies.png │ │ │ │ ├── ic_settings_notifications_white.png │ │ │ │ ├── ic_settings_sleep_mode.png │ │ │ │ ├── ic_toggle_headsup.png │ │ │ │ ├── ic_warning.png │ │ │ │ ├── stat_headsup.png │ │ │ │ ├── stat_lock.png │ │ │ │ └── stat_notify.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── bg_dashboard_category_compat_dark.9.png │ │ │ │ ├── bg_window_overlay_dark.9.png │ │ │ │ ├── ic_action_about_white.png │ │ │ │ ├── ic_action_donate_white.png │ │ │ │ ├── ic_action_done_white.png │ │ │ │ ├── ic_action_feedback_white.png │ │ │ │ ├── ic_action_help_white.png │ │ │ │ ├── ic_action_warning_amber.png │ │ │ │ ├── ic_action_warning_white.png │ │ │ │ ├── ic_dialog_compat_white.png │ │ │ │ ├── ic_dialog_icon_size_white.png │ │ │ │ ├── ic_dialog_inactive_time_white.png │ │ │ │ ├── ic_dialog_timeout_white.png │ │ │ │ ├── ic_media_skip_next_white.png │ │ │ │ ├── ic_settings_active_mode_white.png │ │ │ │ ├── ic_settings_apps_white.png │ │ │ │ ├── ic_settings_development_white.png │ │ │ │ ├── ic_settings_gui_white.png │ │ │ │ ├── ic_settings_keyguard_white.png │ │ │ │ ├── ic_settings_more_white.png │ │ │ │ ├── ic_settings_notifications_white.png │ │ │ │ ├── ic_toggle_headsup.png │ │ │ │ └── stat_headsup.png │ │ │ │ ├── drawable │ │ │ │ ├── bg_decay_progress.xml │ │ │ │ ├── bg_heads_up_icon_dark.xml │ │ │ │ ├── bg_heads_up_icon_light.xml │ │ │ │ ├── bg_shade.xml │ │ │ │ └── bg_shade_flipped.xml │ │ │ │ ├── layout-land │ │ │ │ └── dashboard_tile.xml │ │ │ │ ├── layout-sw600dp │ │ │ │ ├── dashboard_tile.xml │ │ │ │ └── heads_up.xml │ │ │ │ ├── layout │ │ │ │ ├── appwidget_toggle_layout.xml │ │ │ │ ├── dashboard.xml │ │ │ │ ├── dashboard_category.xml │ │ │ │ ├── dashboard_tile.xml │ │ │ │ ├── dialog_content.xml │ │ │ │ ├── dialog_donate.xml │ │ │ │ ├── dialog_donate_placeholder.xml │ │ │ │ ├── dialog_main_body.xml │ │ │ │ ├── dialog_main_skeleton.xml │ │ │ │ ├── dialog_message.xml │ │ │ │ ├── dialog_message_loading.xml │ │ │ │ ├── dialog_permissions.xml │ │ │ │ ├── dialog_preference_colorpicker.xml │ │ │ │ ├── feedback_component_read_help.xml │ │ │ │ ├── feedback_dialog.xml │ │ │ │ ├── fragment_blacklist_app_config.xml │ │ │ │ ├── heads_up.xml │ │ │ │ ├── heads_up_notification.xml │ │ │ │ ├── heads_up_notification_action.xml │ │ │ │ ├── heads_up_notification_message.xml │ │ │ │ ├── item_blah.xml │ │ │ │ ├── layout_item_title_summary.xml │ │ │ │ ├── main.xml │ │ │ │ ├── notification.xml │ │ │ │ ├── notification_action.xml │ │ │ │ ├── notification_message.xml │ │ │ │ ├── preference_blacklist_app_config.xml │ │ │ │ ├── preference_dialog_timeout.xml │ │ │ │ ├── preference_header_item.xml │ │ │ │ ├── preference_list_fragment.xml │ │ │ │ ├── settings_main_dashboard.xml │ │ │ │ ├── sku.xml │ │ │ │ └── widget_switchbar.xml │ │ │ │ ├── menu │ │ │ │ ├── blacklist.xml │ │ │ │ └── main.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-ru │ │ │ │ └── faq.html │ │ │ │ ├── raw │ │ │ │ └── faq.html │ │ │ │ ├── values-land │ │ │ │ ├── dimens.xml │ │ │ │ └── integers.xml │ │ │ │ ├── values-ru │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-sw320dp │ │ │ │ └── dimens.xml │ │ │ │ ├── values-sw600dp │ │ │ │ ├── dimens.xml │ │ │ │ └── integers.xml │ │ │ │ ├── values-sw720dp-land │ │ │ │ └── dimens.xml │ │ │ │ ├── values-sw720dp │ │ │ │ ├── dimens.xml │ │ │ │ └── integers.xml │ │ │ │ ├── values-v17 │ │ │ │ ├── dimens.xml │ │ │ │ └── styles.xml │ │ │ │ ├── values-v19 │ │ │ │ ├── dimens.xml │ │ │ │ └── themes.xml │ │ │ │ ├── values-v21 │ │ │ │ ├── config_defaults.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── drawables.xml │ │ │ │ └── themes.xml │ │ │ │ ├── values-w720dp │ │ │ │ └── dimens.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ ├── values │ │ │ │ ├── arrays.xml │ │ │ │ ├── attrs.xml │ │ │ │ ├── colors.xml │ │ │ │ ├── config.xml │ │ │ │ ├── config_defaults.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── drawables.xml │ │ │ │ ├── ids.xml │ │ │ │ ├── integers.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ ├── strings_settings.xml │ │ │ │ ├── styles.xml │ │ │ │ ├── themes.xml │ │ │ │ └── themes_headsup.xml │ │ │ │ └── xml │ │ │ │ ├── extras_accessibility_config.xml │ │ │ │ ├── extras_appwidget_toggle_config.xml │ │ │ │ └── settings_fragment.xml │ │ ├── releaseFlavor │ │ │ └── res │ │ │ │ ├── raw-af │ │ │ │ └── faq.html │ │ │ │ ├── raw-ar │ │ │ │ └── faq.html │ │ │ │ ├── raw-ca │ │ │ │ └── faq.html │ │ │ │ ├── raw-cs │ │ │ │ └── faq.html │ │ │ │ ├── raw-da │ │ │ │ └── faq.html │ │ │ │ ├── raw-de │ │ │ │ └── faq.html │ │ │ │ ├── raw-el │ │ │ │ └── faq.html │ │ │ │ ├── raw-en │ │ │ │ └── faq.html │ │ │ │ ├── raw-es-rES │ │ │ │ └── faq.html │ │ │ │ ├── raw-fi │ │ │ │ └── faq.html │ │ │ │ ├── raw-fr │ │ │ │ └── faq.html │ │ │ │ ├── raw-he │ │ │ │ └── faq.html │ │ │ │ ├── raw-hu │ │ │ │ └── faq.html │ │ │ │ ├── raw-it │ │ │ │ └── faq.html │ │ │ │ ├── raw-ja │ │ │ │ └── faq.html │ │ │ │ ├── raw-ko │ │ │ │ └── faq.html │ │ │ │ ├── raw-nl │ │ │ │ └── faq.html │ │ │ │ ├── raw-no │ │ │ │ └── faq.html │ │ │ │ ├── raw-pl │ │ │ │ └── faq.html │ │ │ │ ├── raw-pt-rBR │ │ │ │ └── faq.html │ │ │ │ ├── raw-pt-rPT │ │ │ │ └── faq.html │ │ │ │ ├── raw-ro │ │ │ │ └── faq.html │ │ │ │ ├── raw-ru │ │ │ │ └── faq.html │ │ │ │ ├── raw-sr │ │ │ │ └── faq.html │ │ │ │ ├── raw-sv-rSE │ │ │ │ └── faq.html │ │ │ │ ├── raw-tr │ │ │ │ └── faq.html │ │ │ │ ├── raw-uk │ │ │ │ └── faq.html │ │ │ │ ├── raw-vi │ │ │ │ └── faq.html │ │ │ │ ├── raw-zh-rCN │ │ │ │ └── faq.html │ │ │ │ ├── raw-zh-rTW │ │ │ │ └── faq.html │ │ │ │ ├── values-af │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-ar │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-ca │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-cs │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-da │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-de │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-el │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-en │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-es-rES │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-fi │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-fr │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-he │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-hu │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-it │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-ja │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-ko │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-nl │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-no │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-pl │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-pt-rBR │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-pt-rPT │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-ro │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-ru │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-sr │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-sv-rSE │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-tr │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-uk │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-vi │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ ├── values-zh-rCN │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ │ │ └── values-zh-rTW │ │ │ │ ├── arrays.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── strings_blacklist.xml │ │ │ │ ├── strings_dialogs.xml │ │ │ │ └── strings_settings.xml │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── achep │ │ │ └── acdisplay │ │ │ └── AcDisplayRobolectricTest.java │ └── test-key.keystore ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle └── screenshots ├── screenshot1.png └── screenshot2.png /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: android 2 | jdk: oraclejdk7 3 | env: 4 | matrix: 5 | - ANDROID_TARGET=android-21 ANDROID_ABI=armeabi-v7a HEADSUP_USE_TEST_KEY=true 6 | 7 | android: 8 | components: 9 | - build-tools-21.1.2 10 | - android-21 11 | 12 | before_script: 13 | # Move to project folder before build 14 | - cd project/ 15 | 16 | # Create and start emulator 17 | # - echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI 18 | # - emulator -avd test -no-skin -no-audio -no-window & 19 | # - adb wait-for-device 20 | # - adb shell input keyevent 82 & 21 | 22 | script: ./gradlew clean test 23 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Contributing 2 | ============ 3 | 4 | If you’re looking for ways to contribute, please [peruse open issues](https://github.com/AChep/HeadsUp/issues?milestone=&q=is%3Aopen). 5 | 6 | How to Submit a Pull Request 7 | ---------------------------- 8 | 9 | 1. Click the “Fork” button to create your personal fork of the HeadsUp repository. 10 | 11 | 2. Create a new branch for your new feature. For example: `git checkout -b my-awesome-feature`. A dedicated branch for your pull request means you can develop multiple features at the same time, and ensures that your pull request is stable even if you later decide to develop an unrelated feature. 12 | 13 | 3. Submit your pull request, and good luck! 14 | -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- 1 | HeadsUp User FAQ 2 | ============= 3 | 4 | [community]:https://plus.google.com/u/0/communities/109603115264950891558 5 | [repo]:https://github.com/AChep/HeadsUp 6 | [releases]:https://github.com/AChep/HeadsUp/releases 7 | [irc]:http://webchat.freenode.net?channels=acdisplay 8 | [translate]:https://crowdin.com/project/headsup 9 | [PayPal]:http://goo.gl/UrecGo -------------------------------------------------------------------------------- /art/google_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/art/google_play.png -------------------------------------------------------------------------------- /icons/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/icons/ic_launcher-web.png -------------------------------------------------------------------------------- /icons/ic_launcher.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/icons/ic_launcher.zip -------------------------------------------------------------------------------- /project/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /project/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /project/app/build.properties: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2014 AChep@xda 2 | # 3 | # This thing is published under the terms of the GNU GPL v2.0 license. 4 | # See http://www.gnu.org/licenses/gpl-2.0.html 5 | 6 | # TODO: Move the environment variables here. 7 | google_play_public_code=whatever 8 | sign_store_file=password 9 | sign_key_alias=keystore.file -------------------------------------------------------------------------------- /project/app/build_commit_public_key.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2014 AChep@xda 2 | # 3 | # This script is published under the terms of the GNU GPL v2.0 license. 4 | # See http://www.gnu.org/licenses/gpl-2.0.html 5 | 6 | # Python 3 is required 7 | 8 | from colorama import init, Fore 9 | 10 | import os 11 | import sys 12 | 13 | # Initialize colorama 14 | init() 15 | 16 | def print_info(text): 17 | print(Fore.CYAN + text + Fore.RESET) 18 | 19 | # Script need only three arguments: 20 | # 1. Dir to replace in. 21 | # 2. Encrypted public key. 22 | # 3. Encrypted public key's salt. 23 | assert(len(sys.argv) == 3) 24 | 25 | for path, dirs, files in os.walk(os.path.abspath(str(sys.argv[0]))): 26 | for filename in files: 27 | filepath = os.path.join(path, filename) 28 | with open(filepath) as f: 29 | s = f.read() 30 | n = s.replace('\%BUILD_SCRIPT\%:ENCRYPTED_PUBLIC_KEY', str(sys.argv[1])) 31 | n = n.replace('\%BUILD_SCRIPT\%:ENCRYPTED_PUBLIC_KEY_SALT', str(sys.argv[2])) 32 | if n != s: 33 | with open(filepath, "w") as f: 34 | print_info('Rewriting ' + filepath + ' ...') 35 | f.write(s) 36 | 37 | print('Success!') 38 | -------------------------------------------------------------------------------- /project/app/src/main/assets/fonts/roboto_condensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/assets/fonts/roboto_condensed.ttf -------------------------------------------------------------------------------- /project/app/src/main/assets/fonts/roboto_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/assets/fonts/roboto_light.ttf -------------------------------------------------------------------------------- /project/app/src/main/assets/fonts/roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/assets/fonts/roboto_medium.ttf -------------------------------------------------------------------------------- /project/app/src/main/assets/fonts/roboto_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/assets/fonts/roboto_regular.ttf -------------------------------------------------------------------------------- /project/app/src/main/assets/fonts/roboto_thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/assets/fonts/roboto_thin.ttf -------------------------------------------------------------------------------- /project/app/src/main/java/com/achep/acdisplay/interfaces/INotificatiable.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2014 AChep@xda 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public License 6 | * as published by the Free Software Foundation; either version 2 7 | * of the License, or (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, write to the Free Software 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 17 | * MA 02110-1301, USA. 18 | */ 19 | package com.achep.acdisplay.interfaces; 20 | 21 | import android.support.annotation.Nullable; 22 | 23 | import com.achep.acdisplay.notifications.OpenNotification; 24 | 25 | /** 26 | * Created by Artem on 02.02.14. 27 | */ 28 | public interface INotificatiable { 29 | 30 | public void setNotification(@Nullable OpenNotification notification); 31 | 32 | @Nullable 33 | public OpenNotification getNotification(); 34 | 35 | } 36 | -------------------------------------------------------------------------------- /project/app/src/main/java/com/achep/acdisplay/notifications/NotificationListChange.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2014 AChep@xda 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public License 6 | * as published by the Free Software Foundation; either version 2 7 | * of the License, or (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, write to the Free Software 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 17 | * MA 02110-1301, USA. 18 | */ 19 | package com.achep.acdisplay.notifications; 20 | 21 | /** 22 | * Created by Artem Chepurnoy on 08.11.2014. 23 | */ 24 | final class NotificationListChange { 25 | 26 | public final int event; 27 | public final OpenNotification notification; 28 | 29 | public NotificationListChange(int event, OpenNotification notification) { 30 | this.event = event; 31 | this.notification = notification; 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /project/app/src/main/java/com/achep/acdisplay/plugins/powertoggles/ToggleReceiver.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2014 AChep@xda 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public License 6 | * as published by the Free Software Foundation; either version 2 7 | * of the License, or (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, write to the Free Software 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 17 | * MA 02110-1301, USA. 18 | */ 19 | package com.achep.acdisplay.plugins.powertoggles; 20 | 21 | import android.content.Context; 22 | 23 | import com.achep.acdisplay.Config; 24 | import com.painless.pc.PowerTogglesPlugin; 25 | 26 | /** 27 | * AcDisplay toggle plugin for PowerToggles 28 | * 29 | * @author Artem Chepurnoy 30 | */ 31 | public class ToggleReceiver extends PowerTogglesPlugin { 32 | 33 | @Override 34 | protected void changeState(Context context, boolean newState) { 35 | Config.getInstance().setEnabled(context, newState, null); 36 | sendStateUpdate(context, Config.getInstance().isEnabled()); 37 | } 38 | 39 | } -------------------------------------------------------------------------------- /project/app/src/main/java/com/achep/acdisplay/providers/LogAttachmentProvider.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2014 AChep@xda 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public License 6 | * as published by the Free Software Foundation; either version 2 7 | * of the License, or (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, write to the Free Software 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 17 | * MA 02110-1301, USA. 18 | */ 19 | package com.achep.acdisplay.providers; 20 | 21 | import com.achep.base.providers.LogsProviderBase; 22 | 23 | /** 24 | * Created by achep on 16.06.14. 25 | */ 26 | public class LogAttachmentProvider extends LogsProviderBase { 27 | 28 | public static final String AUTHORITY = "com.achep.headsup.logs"; 29 | 30 | } 31 | -------------------------------------------------------------------------------- /project/app/src/main/java/com/achep/acdisplay/utils/PendingIntentUtils.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2014 AChep@xda 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public License 6 | * as published by the Free Software Foundation; either version 2 7 | * of the License, or (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, write to the Free Software 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 17 | * MA 02110-1301, USA. 18 | */ 19 | package com.achep.acdisplay.utils; 20 | 21 | import android.app.PendingIntent; 22 | import android.support.annotation.Nullable; 23 | 24 | /** 25 | * Created by Artem on 02.01.14. 26 | */ 27 | public class PendingIntentUtils { 28 | 29 | public static boolean sendPendingIntent(@Nullable PendingIntent contentIntent) { 30 | if (contentIntent != null) 31 | try { 32 | contentIntent.send(); 33 | return true; 34 | } catch (PendingIntent.CanceledException e) { /* unused */ } 35 | return false; 36 | } 37 | 38 | } 39 | -------------------------------------------------------------------------------- /project/app/src/main/java/com/achep/base/interfaces/ICheckable.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2015 AChep@xda 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public License 6 | * as published by the Free Software Foundation; either version 2 7 | * of the License, or (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, write to the Free Software 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 17 | * MA 02110-1301, USA. 18 | */ 19 | package com.achep.base.interfaces; 20 | 21 | import android.support.annotation.Nullable; 22 | import android.widget.Checkable; 23 | import android.widget.CompoundButton; 24 | 25 | /** 26 | * @author Artem Chepurnoy 27 | */ 28 | public interface ICheckable extends Checkable { 29 | 30 | void setOnCheckedChangeListener(@Nullable CompoundButton.OnCheckedChangeListener listener); 31 | 32 | } 33 | -------------------------------------------------------------------------------- /project/app/src/main/java/com/achep/base/interfaces/IPermission.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2015 AChep@xda 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public License 6 | * as published by the Free Software Foundation; either version 2 7 | * of the License, or (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, write to the Free Software 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 17 | * MA 02110-1301, USA. 18 | */ 19 | package com.achep.base.interfaces; 20 | 21 | /** 22 | * Created by Artem Chepurnoy on 27.01.2015. 23 | */ 24 | public interface IPermission { 25 | 26 | /** 27 | * @return {@code true} if the permission is active and you may use its power right now, 28 | * {@code false} otherwise. 29 | */ 30 | public abstract boolean isActive(); 31 | 32 | } 33 | -------------------------------------------------------------------------------- /project/app/src/main/java/com/achep/base/interfaces/ISubscriptable.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2015 AChep@xda 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public License 6 | * as published by the Free Software Foundation; either version 2 7 | * of the License, or (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, write to the Free Software 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 17 | * MA 02110-1301, USA. 18 | */ 19 | package com.achep.base.interfaces; 20 | 21 | import android.support.annotation.NonNull; 22 | 23 | /** 24 | * Created by Artem Chepurnoy on 10.01.2015. 25 | * 26 | * @author Artem Chepurnoy 27 | */ 28 | public interface ISubscriptable { 29 | 30 | /** 31 | * Register a listener to something. Don't forget to 32 | * {@link #unregisterListener(Object) unregister} it later! 33 | * 34 | * @see #unregisterListener(Object) 35 | */ 36 | void registerListener(@NonNull T listener); 37 | 38 | /** 39 | * @see #registerListener(Object) 40 | */ 41 | void unregisterListener(@NonNull T listener); 42 | 43 | } 44 | -------------------------------------------------------------------------------- /project/app/src/main/java/com/achep/base/interfaces/ITimeout.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2015 AChep@xda 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public License 6 | * as published by the Free Software Foundation; either version 2 7 | * of the License, or (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, write to the Free Software 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 17 | * MA 02110-1301, USA. 18 | */ 19 | package com.achep.base.interfaces; 20 | 21 | /** 22 | * Created by Artem Chepurnoy on 08.01.2015. 23 | */ 24 | public interface ITimeout { 25 | } 26 | -------------------------------------------------------------------------------- /project/app/src/main/java/com/achep/base/ui/fragments/dialogs/DialogFragment.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2014 AChep@xda 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public License 6 | * as published by the Free Software Foundation; either version 2 7 | * of the License, or (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, write to the Free Software 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 17 | * MA 02110-1301, USA. 18 | */ 19 | package com.achep.base.ui.fragments.dialogs; 20 | 21 | /** 22 | * Created by Artem Chepurnoy on 25.10.2014. 23 | */ 24 | public abstract class DialogFragment extends android.support.v4.app.DialogFragment { 25 | } -------------------------------------------------------------------------------- /project/app/src/main/java/com/achep/base/utils/MathUtils.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2014 AChep@xda 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public License 6 | * as published by the Free Software Foundation; either version 2 7 | * of the License, or (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, write to the Free Software 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 17 | * MA 02110-1301, USA. 18 | */ 19 | package com.achep.base.utils; 20 | 21 | /** 22 | * Created by Artem on 03.01.14. 23 | */ 24 | public class MathUtils { 25 | 26 | public static float range(float a, float min, float max) { 27 | return a < min ? min : a > max ? max : a; 28 | } 29 | 30 | public static int bool(boolean a) { 31 | return a ? 1 : 0; 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /project/app/src/main/java/com/achep/base/utils/Operator.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2014 AChep@xda 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public License 6 | * as published by the Free Software Foundation; either version 2 7 | * of the License, or (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, write to the Free Software 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 17 | * MA 02110-1301, USA. 18 | */ 19 | package com.achep.base.utils; 20 | 21 | /** 22 | * Additional functions which I'd like to see as 23 | * operators. 24 | * 25 | * @author Artem Chepurnoy 26 | */ 27 | public class Operator { 28 | 29 | /** 30 | * @return {@code (v AND target) == target} 31 | */ 32 | public static boolean bitAnd(int v, int target) { 33 | return (v & target) == target; 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /project/app/src/main/java/com/achep/base/utils/PackageUtils.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2014 AChep@xda 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public License 6 | * as published by the Free Software Foundation; either version 2 7 | * of the License, or (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, write to the Free Software 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 17 | * MA 02110-1301, USA. 18 | */ 19 | package com.achep.base.utils; 20 | 21 | import android.content.Context; 22 | import android.support.annotation.NonNull; 23 | 24 | /** 25 | * Created by achep on 12.05.14 for AcDisplay. 26 | * 27 | * @author Artem Chepurnoy 28 | */ 29 | public class PackageUtils { 30 | 31 | public static String getName(@NonNull Context context) { 32 | return context.getApplicationInfo().packageName; 33 | } 34 | 35 | } 36 | -------------------------------------------------------------------------------- /project/app/src/main/java/com/achep/headsup/interfaces/Gefingerpoken.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2012 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.achep.headsup.interfaces; 18 | 19 | import android.view.MotionEvent; 20 | 21 | // ACHTUNG! 22 | public interface Gefingerpoken { 23 | boolean onInterceptTouchEvent(MotionEvent ev); 24 | 25 | boolean onTouchEvent(MotionEvent ev); 26 | } -------------------------------------------------------------------------------- /project/app/src/main/res/anim/heads_up_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 24 | 25 | 28 | 29 | -------------------------------------------------------------------------------- /project/app/src/main/res/anim/heads_up_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 24 | 25 | 31 | 32 | 35 | 36 | -------------------------------------------------------------------------------- /project/app/src/main/res/color/ripple_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /project/app/src/main/res/color/ripple_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/emo_im_angel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/emo_im_angel.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/emo_im_cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/emo_im_cool.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/emo_im_crying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/emo_im_crying.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/emo_im_embarrassed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/emo_im_embarrassed.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/emo_im_foot_in_mouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/emo_im_foot_in_mouth.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/emo_im_happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/emo_im_happy.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/emo_im_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/emo_im_heart.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/emo_im_kissing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/emo_im_kissing.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/emo_im_laughing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/emo_im_laughing.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/emo_im_lips_are_sealed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/emo_im_lips_are_sealed.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/emo_im_mad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/emo_im_mad.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/emo_im_money_mouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/emo_im_money_mouth.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/emo_im_pokerface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/emo_im_pokerface.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/emo_im_sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/emo_im_sad.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/emo_im_smirk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/emo_im_smirk.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/emo_im_surprised.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/emo_im_surprised.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/emo_im_tongue_sticking_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/emo_im_tongue_sticking_out.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/emo_im_undecided.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/emo_im_undecided.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/emo_im_winking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/emo_im_winking.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/emo_im_wtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/emo_im_wtf.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/emo_im_yelling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/emo_im_yelling.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_action_about_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_action_about_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_action_bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_action_bitcoin.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_action_donate_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_action_donate_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_action_done_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_action_done_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_action_feedback_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_action_feedback_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_action_help_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_action_help_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_action_paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_action_paypal.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_action_warning_amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_action_warning_amber.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_action_warning_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_action_warning_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_dialog_compat_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_dialog_compat_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_dialog_icon_size_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_dialog_icon_size_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_dialog_inactive_time_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_dialog_inactive_time_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_dialog_timeout_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_dialog_timeout_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_settings_active_mode_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_settings_active_mode_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_settings_apps_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_settings_apps_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_settings_development_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_settings_development_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_settings_gui_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_settings_gui_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_settings_hide_notifies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_settings_hide_notifies.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_settings_keyguard_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_settings_keyguard_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_settings_more_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_settings_more_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_settings_non_clearable_notifies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_settings_non_clearable_notifies.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_settings_notifications_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_settings_notifications_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_settings_sleep_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_settings_sleep_mode.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/ic_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/ic_warning.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/stat_headsup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/stat_headsup.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/stat_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/stat_lock.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-hdpi/stat_notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-hdpi/stat_notify.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/emo_im_angel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/emo_im_angel.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/emo_im_cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/emo_im_cool.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/emo_im_crying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/emo_im_crying.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/emo_im_embarrassed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/emo_im_embarrassed.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/emo_im_foot_in_mouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/emo_im_foot_in_mouth.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/emo_im_happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/emo_im_happy.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/emo_im_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/emo_im_heart.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/emo_im_kissing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/emo_im_kissing.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/emo_im_laughing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/emo_im_laughing.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/emo_im_lips_are_sealed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/emo_im_lips_are_sealed.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/emo_im_mad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/emo_im_mad.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/emo_im_money_mouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/emo_im_money_mouth.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/emo_im_pokerface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/emo_im_pokerface.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/emo_im_sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/emo_im_sad.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/emo_im_smirk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/emo_im_smirk.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/emo_im_surprised.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/emo_im_surprised.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/emo_im_tongue_sticking_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/emo_im_tongue_sticking_out.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/emo_im_undecided.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/emo_im_undecided.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/emo_im_winking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/emo_im_winking.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/emo_im_wtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/emo_im_wtf.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/emo_im_yelling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/emo_im_yelling.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_action_about_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_action_about_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_action_bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_action_bitcoin.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_action_donate_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_action_donate_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_action_done_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_action_done_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_action_feedback_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_action_feedback_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_action_help_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_action_help_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_action_paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_action_paypal.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_action_warning_amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_action_warning_amber.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_action_warning_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_action_warning_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_dialog_compat_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_dialog_compat_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_dialog_icon_size_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_dialog_icon_size_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_dialog_inactive_time_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_dialog_inactive_time_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_dialog_timeout_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_dialog_timeout_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_settings_active_mode_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_settings_active_mode_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_settings_apps_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_settings_apps_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_settings_development_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_settings_development_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_settings_gui_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_settings_gui_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_settings_hide_notifies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_settings_hide_notifies.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_settings_keyguard_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_settings_keyguard_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_settings_more_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_settings_more_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_settings_non_clearable_notifies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_settings_non_clearable_notifies.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_settings_notifications_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_settings_notifications_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_settings_sleep_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_settings_sleep_mode.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/ic_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/ic_warning.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/stat_headsup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/stat_headsup.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/stat_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/stat_lock.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-mdpi/stat_notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-mdpi/stat_notify.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-v21/bg_dashboard_tile.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 18 | 20 | 21 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-v21/ripple.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/bg_dashboard_category_compat_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/bg_dashboard_category_compat_dark.9.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/bg_window_overlay_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/bg_window_overlay_dark.9.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/emo_im_angel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/emo_im_angel.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/emo_im_cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/emo_im_cool.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/emo_im_crying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/emo_im_crying.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/emo_im_embarrassed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/emo_im_embarrassed.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/emo_im_foot_in_mouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/emo_im_foot_in_mouth.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/emo_im_happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/emo_im_happy.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/emo_im_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/emo_im_heart.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/emo_im_kissing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/emo_im_kissing.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/emo_im_laughing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/emo_im_laughing.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/emo_im_lips_are_sealed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/emo_im_lips_are_sealed.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/emo_im_mad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/emo_im_mad.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/emo_im_money_mouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/emo_im_money_mouth.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/emo_im_pokerface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/emo_im_pokerface.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/emo_im_sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/emo_im_sad.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/emo_im_smirk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/emo_im_smirk.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/emo_im_surprised.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/emo_im_surprised.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/emo_im_tongue_sticking_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/emo_im_tongue_sticking_out.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/emo_im_undecided.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/emo_im_undecided.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/emo_im_winking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/emo_im_winking.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/emo_im_wtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/emo_im_wtf.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/emo_im_yelling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/emo_im_yelling.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_action_about_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_action_about_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_action_bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_action_bitcoin.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_action_donate_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_action_donate_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_action_done_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_action_done_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_action_feedback_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_action_feedback_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_action_help_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_action_help_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_action_paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_action_paypal.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_action_warning_amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_action_warning_amber.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_action_warning_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_action_warning_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_dialog_compat_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_dialog_compat_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_dialog_icon_size_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_dialog_icon_size_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_dialog_inactive_time_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_dialog_inactive_time_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_dialog_timeout_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_dialog_timeout_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_settings_active_mode_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_settings_active_mode_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_settings_apps_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_settings_apps_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_settings_development_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_settings_development_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_settings_gui_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_settings_gui_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_settings_hide_notifies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_settings_hide_notifies.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_settings_keyguard_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_settings_keyguard_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_settings_more_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_settings_more_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_settings_non_clearable_notifies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_settings_non_clearable_notifies.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_settings_notifications_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_settings_notifications_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_settings_sleep_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_settings_sleep_mode.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/ic_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/ic_warning.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/stat_headsup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/stat_headsup.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/stat_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/stat_lock.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xhdpi/stat_notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xhdpi/stat_notify.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/bg_dashboard_category_compat_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/bg_dashboard_category_compat_dark.9.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/bg_heads_up_notification_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/bg_heads_up_notification_dark.9.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/bg_heads_up_notification_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/bg_heads_up_notification_light.9.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/bg_window_overlay_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/bg_window_overlay_dark.9.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/emo_im_angel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/emo_im_angel.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/emo_im_cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/emo_im_cool.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/emo_im_crying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/emo_im_crying.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/emo_im_embarrassed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/emo_im_embarrassed.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/emo_im_foot_in_mouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/emo_im_foot_in_mouth.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/emo_im_happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/emo_im_happy.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/emo_im_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/emo_im_heart.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/emo_im_kissing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/emo_im_kissing.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/emo_im_laughing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/emo_im_laughing.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/emo_im_lips_are_sealed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/emo_im_lips_are_sealed.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/emo_im_mad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/emo_im_mad.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/emo_im_money_mouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/emo_im_money_mouth.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/emo_im_pokerface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/emo_im_pokerface.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/emo_im_sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/emo_im_sad.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/emo_im_smirk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/emo_im_smirk.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/emo_im_surprised.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/emo_im_surprised.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/emo_im_tongue_sticking_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/emo_im_tongue_sticking_out.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/emo_im_undecided.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/emo_im_undecided.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/emo_im_winking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/emo_im_winking.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/emo_im_wtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/emo_im_wtf.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/emo_im_yelling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/emo_im_yelling.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_action_about_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_action_about_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_action_bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_action_bitcoin.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_action_donate_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_action_donate_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_action_done_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_action_done_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_action_feedback_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_action_feedback_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_action_help_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_action_help_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_action_paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_action_paypal.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_action_warning_amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_action_warning_amber.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_action_warning_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_action_warning_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_dialog_compat_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_dialog_compat_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_dialog_icon_size_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_dialog_icon_size_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_dialog_inactive_time_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_dialog_inactive_time_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_dialog_timeout_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_dialog_timeout_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_settings_active_mode_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_settings_active_mode_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_settings_apps_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_settings_apps_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_settings_development_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_settings_development_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_settings_gui_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_settings_gui_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_settings_hide_notifies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_settings_hide_notifies.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_settings_keyguard_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_settings_keyguard_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_settings_more_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_settings_more_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_settings_non_clearable_notifies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_settings_non_clearable_notifies.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_settings_notifications_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_settings_notifications_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_settings_sleep_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_settings_sleep_mode.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_toggle_headsup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_toggle_headsup.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/ic_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/ic_warning.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/stat_headsup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/stat_headsup.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/stat_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/stat_lock.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxhdpi/stat_notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxhdpi/stat_notify.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxxhdpi/bg_dashboard_category_compat_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxxhdpi/bg_dashboard_category_compat_dark.9.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxxhdpi/bg_window_overlay_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxxhdpi/bg_window_overlay_dark.9.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxxhdpi/ic_action_about_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxxhdpi/ic_action_about_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxxhdpi/ic_action_donate_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxxhdpi/ic_action_donate_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxxhdpi/ic_action_done_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxxhdpi/ic_action_done_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxxhdpi/ic_action_feedback_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxxhdpi/ic_action_feedback_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxxhdpi/ic_action_help_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxxhdpi/ic_action_help_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxxhdpi/ic_action_warning_amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxxhdpi/ic_action_warning_amber.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxxhdpi/ic_action_warning_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxxhdpi/ic_action_warning_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxxhdpi/ic_dialog_compat_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxxhdpi/ic_dialog_compat_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxxhdpi/ic_dialog_icon_size_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxxhdpi/ic_dialog_icon_size_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxxhdpi/ic_dialog_inactive_time_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxxhdpi/ic_dialog_inactive_time_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxxhdpi/ic_dialog_timeout_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxxhdpi/ic_dialog_timeout_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxxhdpi/ic_media_skip_next_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxxhdpi/ic_media_skip_next_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxxhdpi/ic_settings_active_mode_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxxhdpi/ic_settings_active_mode_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxxhdpi/ic_settings_apps_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxxhdpi/ic_settings_apps_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxxhdpi/ic_settings_development_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxxhdpi/ic_settings_development_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxxhdpi/ic_settings_gui_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxxhdpi/ic_settings_gui_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxxhdpi/ic_settings_keyguard_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxxhdpi/ic_settings_keyguard_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxxhdpi/ic_settings_more_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxxhdpi/ic_settings_more_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxxhdpi/ic_settings_notifications_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxxhdpi/ic_settings_notifications_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxxhdpi/ic_toggle_headsup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxxhdpi/ic_toggle_headsup.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-xxxhdpi/stat_headsup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AChep/HeadsUp/32c97b528b04e8434b5b84ea5e4cb7e73f4cd1af/project/app/src/main/res/drawable-xxxhdpi/stat_headsup.png -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/bg_decay_progress.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/bg_heads_up_icon_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/bg_heads_up_icon_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/bg_shade.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 27 | 28 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/bg_shade_flipped.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /project/app/src/main/res/layout-sw600dp/heads_up.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 24 | 25 | 33 | 34 | -------------------------------------------------------------------------------- /project/app/src/main/res/layout/dialog_content.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 26 | 27 | 32 | 33 | -------------------------------------------------------------------------------- /project/app/src/main/res/layout/dialog_donate.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | -------------------------------------------------------------------------------- /project/app/src/main/res/layout/dialog_main_body.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 23 | 27 | 28 | 32 | 33 | -------------------------------------------------------------------------------- /project/app/src/main/res/layout/dialog_permissions.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | -------------------------------------------------------------------------------- /project/app/src/main/res/layout/heads_up.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 24 | 25 | 33 | 34 | -------------------------------------------------------------------------------- /project/app/src/main/res/layout/heads_up_notification_action.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 |