├── app ├── .gitignore └── src │ ├── main │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-hdpi │ │ │ ├── exit_to_app.png │ │ │ ├── ic_cast_black_18dp.png │ │ │ ├── ic_cast_black_24dp.png │ │ │ ├── ic_cast_black_36dp.png │ │ │ ├── ic_cast_black_48dp.png │ │ │ ├── ic_cast_white_18dp.png │ │ │ ├── ic_cast_white_24dp.png │ │ │ ├── ic_cast_white_36dp.png │ │ │ ├── ic_cast_white_48dp.png │ │ │ ├── ic_cat_black_18dp.png │ │ │ ├── ic_cat_black_24dp.png │ │ │ ├── ic_cat_black_36dp.png │ │ │ ├── ic_cat_black_48dp.png │ │ │ ├── ic_cat_white_18dp.png │ │ │ ├── ic_cat_white_24dp.png │ │ │ ├── ic_cat_white_36dp.png │ │ │ ├── ic_cat_white_48dp.png │ │ │ ├── ic_cast_grey600_18dp.png │ │ │ ├── ic_cast_grey600_24dp.png │ │ │ ├── ic_cast_grey600_36dp.png │ │ │ ├── ic_cast_grey600_48dp.png │ │ │ ├── ic_cat_grey600_18dp.png │ │ │ ├── ic_cat_grey600_24dp.png │ │ │ ├── ic_cat_grey600_36dp.png │ │ │ ├── ic_cat_grey600_48dp.png │ │ │ ├── ic_tablet_black_18dp.png │ │ │ ├── ic_tablet_black_24dp.png │ │ │ ├── ic_tablet_black_36dp.png │ │ │ ├── ic_tablet_black_48dp.png │ │ │ ├── ic_tablet_white_18dp.png │ │ │ ├── ic_tablet_white_24dp.png │ │ │ ├── ic_tablet_white_36dp.png │ │ │ ├── ic_tablet_white_48dp.png │ │ │ ├── ic_autorenew_black_18dp.png │ │ │ ├── ic_autorenew_black_24dp.png │ │ │ ├── ic_autorenew_black_36dp.png │ │ │ ├── ic_autorenew_black_48dp.png │ │ │ ├── ic_autorenew_white_18dp.png │ │ │ ├── ic_autorenew_white_24dp.png │ │ │ ├── ic_autorenew_white_36dp.png │ │ │ ├── ic_autorenew_white_48dp.png │ │ │ ├── ic_history_black_18dp.png │ │ │ ├── ic_history_black_24dp.png │ │ │ ├── ic_history_black_36dp.png │ │ │ ├── ic_history_black_48dp.png │ │ │ ├── ic_history_grey600_18dp.png │ │ │ ├── ic_history_grey600_24dp.png │ │ │ ├── ic_history_grey600_36dp.png │ │ │ ├── ic_history_grey600_48dp.png │ │ │ ├── ic_history_white_18dp.png │ │ │ ├── ic_history_white_24dp.png │ │ │ ├── ic_history_white_36dp.png │ │ │ ├── ic_history_white_48dp.png │ │ │ ├── ic_refresh_black_18dp.png │ │ │ ├── ic_refresh_black_24dp.png │ │ │ ├── ic_refresh_black_36dp.png │ │ │ ├── ic_refresh_black_48dp.png │ │ │ ├── ic_refresh_grey600_18dp.png │ │ │ ├── ic_refresh_grey600_24dp.png │ │ │ ├── ic_refresh_grey600_36dp.png │ │ │ ├── ic_refresh_grey600_48dp.png │ │ │ ├── ic_refresh_white_18dp.png │ │ │ ├── ic_refresh_white_24dp.png │ │ │ ├── ic_refresh_white_36dp.png │ │ │ ├── ic_refresh_white_48dp.png │ │ │ ├── ic_settings_black_18dp.png │ │ │ ├── ic_settings_black_24dp.png │ │ │ ├── ic_settings_black_36dp.png │ │ │ ├── ic_settings_black_48dp.png │ │ │ ├── ic_settings_white_18dp.png │ │ │ ├── ic_settings_white_24dp.png │ │ │ ├── ic_settings_white_36dp.png │ │ │ ├── ic_settings_white_48dp.png │ │ │ ├── ic_tablet_grey600_18dp.png │ │ │ ├── ic_tablet_grey600_24dp.png │ │ │ ├── ic_tablet_grey600_36dp.png │ │ │ ├── ic_tablet_grey600_48dp.png │ │ │ ├── ic_autorenew_grey600_18dp.png │ │ │ ├── ic_autorenew_grey600_24dp.png │ │ │ ├── ic_autorenew_grey600_36dp.png │ │ │ ├── ic_autorenew_grey600_48dp.png │ │ │ ├── ic_exit_to_app_black_18dp.png │ │ │ ├── ic_exit_to_app_black_24dp.png │ │ │ ├── ic_exit_to_app_black_36dp.png │ │ │ ├── ic_exit_to_app_black_48dp.png │ │ │ ├── ic_exit_to_app_white_18dp.png │ │ │ ├── ic_exit_to_app_white_24dp.png │ │ │ ├── ic_exit_to_app_white_36dp.png │ │ │ ├── ic_exit_to_app_white_48dp.png │ │ │ ├── ic_file_chart_black_18dp.png │ │ │ ├── ic_file_chart_black_24dp.png │ │ │ ├── ic_file_chart_black_36dp.png │ │ │ ├── ic_file_chart_black_48dp.png │ │ │ ├── ic_file_chart_white_18dp.png │ │ │ ├── ic_file_chart_white_24dp.png │ │ │ ├── ic_file_chart_white_36dp.png │ │ │ ├── ic_file_chart_white_48dp.png │ │ │ ├── ic_settings_grey600_18dp.png │ │ │ ├── ic_settings_grey600_24dp.png │ │ │ ├── ic_settings_grey600_36dp.png │ │ │ ├── ic_settings_grey600_48dp.png │ │ │ ├── ic_exit_to_app_grey600_18dp.png │ │ │ ├── ic_exit_to_app_grey600_24dp.png │ │ │ ├── ic_exit_to_app_grey600_36dp.png │ │ │ ├── ic_exit_to_app_grey600_48dp.png │ │ │ ├── ic_file_chart_grey600_18dp.png │ │ │ ├── ic_file_chart_grey600_24dp.png │ │ │ ├── ic_file_chart_grey600_36dp.png │ │ │ └── ic_file_chart_grey600_48dp.png │ │ ├── drawable-mdpi │ │ │ ├── exit_to_app.png │ │ │ ├── ic_cast_black_18dp.png │ │ │ ├── ic_cast_black_24dp.png │ │ │ ├── ic_cast_black_36dp.png │ │ │ ├── ic_cast_black_48dp.png │ │ │ ├── ic_cast_white_18dp.png │ │ │ ├── ic_cast_white_24dp.png │ │ │ ├── ic_cast_white_36dp.png │ │ │ ├── ic_cast_white_48dp.png │ │ │ ├── ic_cat_black_18dp.png │ │ │ ├── ic_cat_black_24dp.png │ │ │ ├── ic_cat_black_36dp.png │ │ │ ├── ic_cat_black_48dp.png │ │ │ ├── ic_cat_white_18dp.png │ │ │ ├── ic_cat_white_24dp.png │ │ │ ├── ic_cat_white_36dp.png │ │ │ ├── ic_cat_white_48dp.png │ │ │ ├── ic_cast_grey600_18dp.png │ │ │ ├── ic_cast_grey600_24dp.png │ │ │ ├── ic_cast_grey600_36dp.png │ │ │ ├── ic_cast_grey600_48dp.png │ │ │ ├── ic_cat_grey600_18dp.png │ │ │ ├── ic_cat_grey600_24dp.png │ │ │ ├── ic_cat_grey600_36dp.png │ │ │ ├── ic_cat_grey600_48dp.png │ │ │ ├── ic_tablet_black_18dp.png │ │ │ ├── ic_tablet_black_24dp.png │ │ │ ├── ic_tablet_black_36dp.png │ │ │ ├── ic_tablet_black_48dp.png │ │ │ ├── ic_tablet_white_18dp.png │ │ │ ├── ic_tablet_white_24dp.png │ │ │ ├── ic_tablet_white_36dp.png │ │ │ ├── ic_tablet_white_48dp.png │ │ │ ├── ic_autorenew_black_18dp.png │ │ │ ├── ic_autorenew_black_24dp.png │ │ │ ├── ic_autorenew_black_36dp.png │ │ │ ├── ic_autorenew_black_48dp.png │ │ │ ├── ic_autorenew_white_18dp.png │ │ │ ├── ic_autorenew_white_24dp.png │ │ │ ├── ic_autorenew_white_36dp.png │ │ │ ├── ic_autorenew_white_48dp.png │ │ │ ├── ic_history_black_18dp.png │ │ │ ├── ic_history_black_24dp.png │ │ │ ├── ic_history_black_36dp.png │ │ │ ├── ic_history_black_48dp.png │ │ │ ├── ic_history_grey600_18dp.png │ │ │ ├── ic_history_grey600_24dp.png │ │ │ ├── ic_history_grey600_36dp.png │ │ │ ├── ic_history_grey600_48dp.png │ │ │ ├── ic_history_white_18dp.png │ │ │ ├── ic_history_white_24dp.png │ │ │ ├── ic_history_white_36dp.png │ │ │ ├── ic_history_white_48dp.png │ │ │ ├── ic_refresh_black_18dp.png │ │ │ ├── ic_refresh_black_24dp.png │ │ │ ├── ic_refresh_black_36dp.png │ │ │ ├── ic_refresh_black_48dp.png │ │ │ ├── ic_refresh_grey600_18dp.png │ │ │ ├── ic_refresh_grey600_24dp.png │ │ │ ├── ic_refresh_grey600_36dp.png │ │ │ ├── ic_refresh_grey600_48dp.png │ │ │ ├── ic_refresh_white_18dp.png │ │ │ ├── ic_refresh_white_24dp.png │ │ │ ├── ic_refresh_white_36dp.png │ │ │ ├── ic_refresh_white_48dp.png │ │ │ ├── ic_settings_black_18dp.png │ │ │ ├── ic_settings_black_24dp.png │ │ │ ├── ic_settings_black_36dp.png │ │ │ ├── ic_settings_black_48dp.png │ │ │ ├── ic_settings_white_18dp.png │ │ │ ├── ic_settings_white_24dp.png │ │ │ ├── ic_settings_white_36dp.png │ │ │ ├── ic_settings_white_48dp.png │ │ │ ├── ic_tablet_grey600_18dp.png │ │ │ ├── ic_tablet_grey600_24dp.png │ │ │ ├── ic_tablet_grey600_36dp.png │ │ │ ├── ic_tablet_grey600_48dp.png │ │ │ ├── ic_autorenew_grey600_18dp.png │ │ │ ├── ic_autorenew_grey600_24dp.png │ │ │ ├── ic_autorenew_grey600_36dp.png │ │ │ ├── ic_autorenew_grey600_48dp.png │ │ │ ├── ic_exit_to_app_black_18dp.png │ │ │ ├── ic_exit_to_app_black_24dp.png │ │ │ ├── ic_exit_to_app_black_36dp.png │ │ │ ├── ic_exit_to_app_black_48dp.png │ │ │ ├── ic_exit_to_app_white_18dp.png │ │ │ ├── ic_exit_to_app_white_24dp.png │ │ │ ├── ic_exit_to_app_white_36dp.png │ │ │ ├── ic_exit_to_app_white_48dp.png │ │ │ ├── ic_file_chart_black_18dp.png │ │ │ ├── ic_file_chart_black_24dp.png │ │ │ ├── ic_file_chart_black_36dp.png │ │ │ ├── ic_file_chart_black_48dp.png │ │ │ ├── ic_file_chart_white_18dp.png │ │ │ ├── ic_file_chart_white_24dp.png │ │ │ ├── ic_file_chart_white_36dp.png │ │ │ ├── ic_file_chart_white_48dp.png │ │ │ ├── ic_settings_grey600_18dp.png │ │ │ ├── ic_settings_grey600_24dp.png │ │ │ ├── ic_settings_grey600_36dp.png │ │ │ ├── ic_settings_grey600_48dp.png │ │ │ ├── ic_exit_to_app_grey600_18dp.png │ │ │ ├── ic_exit_to_app_grey600_24dp.png │ │ │ ├── ic_exit_to_app_grey600_36dp.png │ │ │ ├── ic_exit_to_app_grey600_48dp.png │ │ │ ├── ic_file_chart_grey600_18dp.png │ │ │ ├── ic_file_chart_grey600_24dp.png │ │ │ ├── ic_file_chart_grey600_36dp.png │ │ │ └── ic_file_chart_grey600_48dp.png │ │ ├── drawable-xhdpi │ │ │ ├── exit_to_app.png │ │ │ ├── ic_cat_black_18dp.png │ │ │ ├── ic_cat_black_24dp.png │ │ │ ├── ic_cat_black_36dp.png │ │ │ ├── ic_cat_black_48dp.png │ │ │ ├── ic_cat_white_18dp.png │ │ │ ├── ic_cat_white_24dp.png │ │ │ ├── ic_cat_white_36dp.png │ │ │ ├── ic_cat_white_48dp.png │ │ │ ├── ic_cast_black_18dp.png │ │ │ ├── ic_cast_black_24dp.png │ │ │ ├── ic_cast_black_36dp.png │ │ │ ├── ic_cast_black_48dp.png │ │ │ ├── ic_cast_white_18dp.png │ │ │ ├── ic_cast_white_24dp.png │ │ │ ├── ic_cast_white_36dp.png │ │ │ ├── ic_cast_white_48dp.png │ │ │ ├── ic_cat_grey600_18dp.png │ │ │ ├── ic_cat_grey600_24dp.png │ │ │ ├── ic_cat_grey600_36dp.png │ │ │ ├── ic_cat_grey600_48dp.png │ │ │ ├── ic_cast_grey600_18dp.png │ │ │ ├── ic_cast_grey600_24dp.png │ │ │ ├── ic_cast_grey600_36dp.png │ │ │ ├── ic_cast_grey600_48dp.png │ │ │ ├── ic_history_black_18dp.png │ │ │ ├── ic_history_black_24dp.png │ │ │ ├── ic_history_black_36dp.png │ │ │ ├── ic_history_black_48dp.png │ │ │ ├── ic_history_white_18dp.png │ │ │ ├── ic_history_white_24dp.png │ │ │ ├── ic_history_white_36dp.png │ │ │ ├── ic_history_white_48dp.png │ │ │ ├── ic_refresh_black_18dp.png │ │ │ ├── ic_refresh_black_24dp.png │ │ │ ├── ic_refresh_black_36dp.png │ │ │ ├── ic_refresh_black_48dp.png │ │ │ ├── ic_refresh_white_18dp.png │ │ │ ├── ic_refresh_white_24dp.png │ │ │ ├── ic_refresh_white_36dp.png │ │ │ ├── ic_refresh_white_48dp.png │ │ │ ├── ic_settings_black_18dp.png │ │ │ ├── ic_settings_black_24dp.png │ │ │ ├── ic_settings_black_36dp.png │ │ │ ├── ic_settings_black_48dp.png │ │ │ ├── ic_settings_white_18dp.png │ │ │ ├── ic_settings_white_24dp.png │ │ │ ├── ic_settings_white_36dp.png │ │ │ ├── ic_settings_white_48dp.png │ │ │ ├── ic_tablet_black_18dp.png │ │ │ ├── ic_tablet_black_24dp.png │ │ │ ├── ic_tablet_black_36dp.png │ │ │ ├── ic_tablet_black_48dp.png │ │ │ ├── ic_tablet_grey600_18dp.png │ │ │ ├── ic_tablet_grey600_24dp.png │ │ │ ├── ic_tablet_grey600_36dp.png │ │ │ ├── ic_tablet_grey600_48dp.png │ │ │ ├── ic_tablet_white_18dp.png │ │ │ ├── ic_tablet_white_24dp.png │ │ │ ├── ic_tablet_white_36dp.png │ │ │ ├── ic_tablet_white_48dp.png │ │ │ ├── ic_autorenew_black_18dp.png │ │ │ ├── ic_autorenew_black_24dp.png │ │ │ ├── ic_autorenew_black_36dp.png │ │ │ ├── ic_autorenew_black_48dp.png │ │ │ ├── ic_autorenew_white_18dp.png │ │ │ ├── ic_autorenew_white_24dp.png │ │ │ ├── ic_autorenew_white_36dp.png │ │ │ ├── ic_autorenew_white_48dp.png │ │ │ ├── ic_file_chart_black_18dp.png │ │ │ ├── ic_file_chart_black_24dp.png │ │ │ ├── ic_file_chart_black_36dp.png │ │ │ ├── ic_file_chart_black_48dp.png │ │ │ ├── ic_file_chart_white_18dp.png │ │ │ ├── ic_file_chart_white_24dp.png │ │ │ ├── ic_file_chart_white_36dp.png │ │ │ ├── ic_file_chart_white_48dp.png │ │ │ ├── ic_history_grey600_18dp.png │ │ │ ├── ic_history_grey600_24dp.png │ │ │ ├── ic_history_grey600_36dp.png │ │ │ ├── ic_history_grey600_48dp.png │ │ │ ├── ic_refresh_grey600_18dp.png │ │ │ ├── ic_refresh_grey600_24dp.png │ │ │ ├── ic_refresh_grey600_36dp.png │ │ │ ├── ic_refresh_grey600_48dp.png │ │ │ ├── ic_settings_grey600_18dp.png │ │ │ ├── ic_settings_grey600_24dp.png │ │ │ ├── ic_settings_grey600_36dp.png │ │ │ ├── ic_settings_grey600_48dp.png │ │ │ ├── ic_autorenew_grey600_18dp.png │ │ │ ├── ic_autorenew_grey600_24dp.png │ │ │ ├── ic_autorenew_grey600_36dp.png │ │ │ ├── ic_autorenew_grey600_48dp.png │ │ │ ├── ic_exit_to_app_black_18dp.png │ │ │ ├── ic_exit_to_app_black_24dp.png │ │ │ ├── ic_exit_to_app_black_36dp.png │ │ │ ├── ic_exit_to_app_black_48dp.png │ │ │ ├── ic_exit_to_app_grey600_18dp.png │ │ │ ├── ic_exit_to_app_grey600_24dp.png │ │ │ ├── ic_exit_to_app_grey600_36dp.png │ │ │ ├── ic_exit_to_app_grey600_48dp.png │ │ │ ├── ic_exit_to_app_white_18dp.png │ │ │ ├── ic_exit_to_app_white_24dp.png │ │ │ ├── ic_exit_to_app_white_36dp.png │ │ │ ├── ic_exit_to_app_white_48dp.png │ │ │ ├── ic_file_chart_grey600_18dp.png │ │ │ ├── ic_file_chart_grey600_24dp.png │ │ │ ├── ic_file_chart_grey600_36dp.png │ │ │ └── ic_file_chart_grey600_48dp.png │ │ ├── drawable-xxhdpi │ │ │ ├── aaps_icon.png │ │ │ ├── exit_to_app.png │ │ │ ├── ic_cast_black_18dp.png │ │ │ ├── ic_cast_black_24dp.png │ │ │ ├── ic_cast_black_36dp.png │ │ │ ├── ic_cast_black_48dp.png │ │ │ ├── ic_cast_white_18dp.png │ │ │ ├── ic_cast_white_24dp.png │ │ │ ├── ic_cast_white_36dp.png │ │ │ ├── ic_cast_white_48dp.png │ │ │ ├── ic_cat_black_18dp.png │ │ │ ├── ic_cat_black_24dp.png │ │ │ ├── ic_cat_black_36dp.png │ │ │ ├── ic_cat_black_48dp.png │ │ │ ├── ic_cat_white_18dp.png │ │ │ ├── ic_cat_white_24dp.png │ │ │ ├── ic_cat_white_36dp.png │ │ │ ├── ic_cat_white_48dp.png │ │ │ ├── ic_cast_grey600_18dp.png │ │ │ ├── ic_cast_grey600_24dp.png │ │ │ ├── ic_cast_grey600_36dp.png │ │ │ ├── ic_cast_grey600_48dp.png │ │ │ ├── ic_cat_grey600_18dp.png │ │ │ ├── ic_cat_grey600_24dp.png │ │ │ ├── ic_cat_grey600_36dp.png │ │ │ ├── ic_cat_grey600_48dp.png │ │ │ ├── ic_history_black_18dp.png │ │ │ ├── ic_history_black_24dp.png │ │ │ ├── ic_history_black_36dp.png │ │ │ ├── ic_history_black_48dp.png │ │ │ ├── ic_history_white_18dp.png │ │ │ ├── ic_history_white_24dp.png │ │ │ ├── ic_history_white_36dp.png │ │ │ ├── ic_history_white_48dp.png │ │ │ ├── ic_refresh_black_18dp.png │ │ │ ├── ic_refresh_black_24dp.png │ │ │ ├── ic_refresh_black_36dp.png │ │ │ ├── ic_refresh_black_48dp.png │ │ │ ├── ic_refresh_white_18dp.png │ │ │ ├── ic_refresh_white_24dp.png │ │ │ ├── ic_refresh_white_36dp.png │ │ │ ├── ic_refresh_white_48dp.png │ │ │ ├── ic_tablet_black_18dp.png │ │ │ ├── ic_tablet_black_24dp.png │ │ │ ├── ic_tablet_black_36dp.png │ │ │ ├── ic_tablet_black_48dp.png │ │ │ ├── ic_tablet_white_18dp.png │ │ │ ├── ic_tablet_white_24dp.png │ │ │ ├── ic_tablet_white_36dp.png │ │ │ ├── ic_tablet_white_48dp.png │ │ │ ├── ic_autorenew_black_18dp.png │ │ │ ├── ic_autorenew_black_24dp.png │ │ │ ├── ic_autorenew_black_36dp.png │ │ │ ├── ic_autorenew_black_48dp.png │ │ │ ├── ic_autorenew_white_18dp.png │ │ │ ├── ic_autorenew_white_24dp.png │ │ │ ├── ic_autorenew_white_36dp.png │ │ │ ├── ic_autorenew_white_48dp.png │ │ │ ├── ic_history_grey600_18dp.png │ │ │ ├── ic_history_grey600_24dp.png │ │ │ ├── ic_history_grey600_36dp.png │ │ │ ├── ic_history_grey600_48dp.png │ │ │ ├── ic_refresh_grey600_18dp.png │ │ │ ├── ic_refresh_grey600_24dp.png │ │ │ ├── ic_refresh_grey600_36dp.png │ │ │ ├── ic_refresh_grey600_48dp.png │ │ │ ├── ic_settings_black_18dp.png │ │ │ ├── ic_settings_black_24dp.png │ │ │ ├── ic_settings_black_36dp.png │ │ │ ├── ic_settings_black_48dp.png │ │ │ ├── ic_settings_white_18dp.png │ │ │ ├── ic_settings_white_24dp.png │ │ │ ├── ic_settings_white_36dp.png │ │ │ ├── ic_settings_white_48dp.png │ │ │ ├── ic_tablet_grey600_18dp.png │ │ │ ├── ic_tablet_grey600_24dp.png │ │ │ ├── ic_tablet_grey600_36dp.png │ │ │ ├── ic_tablet_grey600_48dp.png │ │ │ ├── ic_autorenew_grey600_18dp.png │ │ │ ├── ic_autorenew_grey600_24dp.png │ │ │ ├── ic_autorenew_grey600_36dp.png │ │ │ ├── ic_autorenew_grey600_48dp.png │ │ │ ├── ic_exit_to_app_black_18dp.png │ │ │ ├── ic_exit_to_app_black_24dp.png │ │ │ ├── ic_exit_to_app_black_36dp.png │ │ │ ├── ic_exit_to_app_black_48dp.png │ │ │ ├── ic_exit_to_app_white_18dp.png │ │ │ ├── ic_exit_to_app_white_24dp.png │ │ │ ├── ic_exit_to_app_white_36dp.png │ │ │ ├── ic_exit_to_app_white_48dp.png │ │ │ ├── ic_file_chart_black_18dp.png │ │ │ ├── ic_file_chart_black_24dp.png │ │ │ ├── ic_file_chart_black_36dp.png │ │ │ ├── ic_file_chart_black_48dp.png │ │ │ ├── ic_file_chart_grey600_18dp.png │ │ │ ├── ic_file_chart_grey600_24dp.png │ │ │ ├── ic_file_chart_grey600_36dp.png │ │ │ ├── ic_file_chart_grey600_48dp.png │ │ │ ├── ic_file_chart_white_18dp.png │ │ │ ├── ic_file_chart_white_24dp.png │ │ │ ├── ic_file_chart_white_36dp.png │ │ │ ├── ic_file_chart_white_48dp.png │ │ │ ├── ic_settings_grey600_18dp.png │ │ │ ├── ic_settings_grey600_24dp.png │ │ │ ├── ic_settings_grey600_36dp.png │ │ │ ├── ic_settings_grey600_48dp.png │ │ │ ├── ic_exit_to_app_grey600_18dp.png │ │ │ ├── ic_exit_to_app_grey600_24dp.png │ │ │ ├── ic_exit_to_app_grey600_36dp.png │ │ │ └── ic_exit_to_app_grey600_48dp.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_cat_black_18dp.png │ │ │ ├── ic_cat_black_24dp.png │ │ │ ├── ic_cat_black_36dp.png │ │ │ ├── ic_cat_black_48dp.png │ │ │ ├── ic_cat_white_18dp.png │ │ │ ├── ic_cat_white_24dp.png │ │ │ ├── ic_cat_white_36dp.png │ │ │ ├── ic_cat_white_48dp.png │ │ │ ├── ic_cast_black_18dp.png │ │ │ ├── ic_cast_black_24dp.png │ │ │ ├── ic_cast_black_36dp.png │ │ │ ├── ic_cast_black_48dp.png │ │ │ ├── ic_cast_grey600_18dp.png │ │ │ ├── ic_cast_grey600_24dp.png │ │ │ ├── ic_cast_grey600_36dp.png │ │ │ ├── ic_cast_grey600_48dp.png │ │ │ ├── ic_cast_white_18dp.png │ │ │ ├── ic_cast_white_24dp.png │ │ │ ├── ic_cast_white_36dp.png │ │ │ ├── ic_cast_white_48dp.png │ │ │ ├── ic_cat_grey600_18dp.png │ │ │ ├── ic_cat_grey600_24dp.png │ │ │ ├── ic_cat_grey600_36dp.png │ │ │ ├── ic_cat_grey600_48dp.png │ │ │ ├── ic_tablet_black_18dp.png │ │ │ ├── ic_tablet_black_24dp.png │ │ │ ├── ic_tablet_black_36dp.png │ │ │ ├── ic_tablet_black_48dp.png │ │ │ ├── ic_tablet_white_18dp.png │ │ │ ├── ic_tablet_white_24dp.png │ │ │ ├── ic_tablet_white_36dp.png │ │ │ ├── ic_tablet_white_48dp.png │ │ │ ├── ic_history_black_18dp.png │ │ │ ├── ic_history_black_24dp.png │ │ │ ├── ic_history_black_36dp.png │ │ │ ├── ic_history_black_48dp.png │ │ │ ├── ic_history_white_18dp.png │ │ │ ├── ic_history_white_24dp.png │ │ │ ├── ic_history_white_36dp.png │ │ │ ├── ic_history_white_48dp.png │ │ │ ├── ic_refresh_black_18dp.png │ │ │ ├── ic_refresh_black_24dp.png │ │ │ ├── ic_refresh_black_36dp.png │ │ │ ├── ic_refresh_black_48dp.png │ │ │ ├── ic_refresh_white_18dp.png │ │ │ ├── ic_refresh_white_24dp.png │ │ │ ├── ic_refresh_white_36dp.png │ │ │ ├── ic_refresh_white_48dp.png │ │ │ ├── ic_settings_black_18dp.png │ │ │ ├── ic_settings_black_24dp.png │ │ │ ├── ic_settings_black_36dp.png │ │ │ ├── ic_settings_black_48dp.png │ │ │ ├── ic_settings_white_18dp.png │ │ │ ├── ic_settings_white_24dp.png │ │ │ ├── ic_settings_white_36dp.png │ │ │ ├── ic_settings_white_48dp.png │ │ │ ├── ic_tablet_grey600_18dp.png │ │ │ ├── ic_tablet_grey600_24dp.png │ │ │ ├── ic_tablet_grey600_36dp.png │ │ │ ├── ic_tablet_grey600_48dp.png │ │ │ ├── ic_autorenew_black_18dp.png │ │ │ ├── ic_autorenew_black_24dp.png │ │ │ ├── ic_autorenew_black_36dp.png │ │ │ ├── ic_autorenew_black_48dp.png │ │ │ ├── ic_autorenew_grey600_18dp.png │ │ │ ├── ic_autorenew_grey600_24dp.png │ │ │ ├── ic_autorenew_grey600_36dp.png │ │ │ ├── ic_autorenew_grey600_48dp.png │ │ │ ├── ic_autorenew_white_18dp.png │ │ │ ├── ic_autorenew_white_24dp.png │ │ │ ├── ic_autorenew_white_36dp.png │ │ │ ├── ic_autorenew_white_48dp.png │ │ │ ├── ic_exit_to_app_black_18dp.png │ │ │ ├── ic_exit_to_app_black_24dp.png │ │ │ ├── ic_exit_to_app_black_36dp.png │ │ │ ├── ic_exit_to_app_black_48dp.png │ │ │ ├── ic_exit_to_app_white_18dp.png │ │ │ ├── ic_exit_to_app_white_24dp.png │ │ │ ├── ic_exit_to_app_white_36dp.png │ │ │ ├── ic_exit_to_app_white_48dp.png │ │ │ ├── ic_file_chart_black_18dp.png │ │ │ ├── ic_file_chart_black_24dp.png │ │ │ ├── ic_file_chart_black_36dp.png │ │ │ ├── ic_file_chart_black_48dp.png │ │ │ ├── ic_file_chart_white_18dp.png │ │ │ ├── ic_file_chart_white_24dp.png │ │ │ ├── ic_file_chart_white_36dp.png │ │ │ ├── ic_file_chart_white_48dp.png │ │ │ ├── ic_history_grey600_18dp.png │ │ │ ├── ic_history_grey600_24dp.png │ │ │ ├── ic_history_grey600_36dp.png │ │ │ ├── ic_history_grey600_48dp.png │ │ │ ├── ic_refresh_grey600_18dp.png │ │ │ ├── ic_refresh_grey600_24dp.png │ │ │ ├── ic_refresh_grey600_36dp.png │ │ │ ├── ic_refresh_grey600_48dp.png │ │ │ ├── ic_settings_grey600_18dp.png │ │ │ ├── ic_settings_grey600_24dp.png │ │ │ ├── ic_settings_grey600_36dp.png │ │ │ ├── ic_settings_grey600_48dp.png │ │ │ ├── ic_exit_to_app_grey600_18dp.png │ │ │ ├── ic_exit_to_app_grey600_24dp.png │ │ │ ├── ic_exit_to_app_grey600_36dp.png │ │ │ ├── ic_exit_to_app_grey600_48dp.png │ │ │ ├── ic_file_chart_grey600_18dp.png │ │ │ ├── ic_file_chart_grey600_24dp.png │ │ │ ├── ic_file_chart_grey600_36dp.png │ │ │ └── ic_file_chart_grey600_48dp.png │ │ ├── menu │ │ │ ├── menu_main.xml │ │ │ ├── menu_bluetooth_scan.xml │ │ │ └── menu_rileylink_ble_scan.xml │ │ ├── drawable │ │ │ ├── insulin_treatment_round.xml │ │ │ ├── insulin_basal_square.xml │ │ │ ├── tablet.xml │ │ │ ├── alert_circle.xml │ │ │ ├── information.xml │ │ │ ├── ic_info_black_24dp.xml │ │ │ ├── arrow_right_bold_circle.xml │ │ │ ├── file_chart.xml │ │ │ ├── checkbox_marked_circle.xml │ │ │ ├── cast.xml │ │ │ ├── clock.xml │ │ │ ├── exit_to_app.xml │ │ │ ├── refresh.xml │ │ │ ├── ic_notifications_black_24dp.xml │ │ │ ├── autorenew.xml │ │ │ ├── ic_sync_black_24dp.xml │ │ │ └── history.xml │ │ ├── values-v21 │ │ │ └── styles.xml │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ ├── values │ │ │ ├── dimens.xml │ │ │ └── colors.xml │ │ ├── layout │ │ │ ├── historypage_detail.xml │ │ │ ├── servicemessageview_detail.xml │ │ │ └── activity_show_aaps.xml │ │ └── xml │ │ │ └── pref_rileylink.xml │ └── java │ │ ├── info │ │ └── nightscout │ │ │ └── androidaps │ │ │ ├── data │ │ │ ├── Profile.java │ │ │ └── ProfileStore.java │ │ │ ├── plugins │ │ │ └── pump │ │ │ │ ├── common │ │ │ │ ├── defs │ │ │ │ │ ├── PumpTempBasalType.java │ │ │ │ │ └── PumpStatusType.java │ │ │ │ ├── dialog │ │ │ │ │ └── RefreshableInterface.java │ │ │ │ ├── hw │ │ │ │ │ └── rileylink │ │ │ │ │ │ ├── ble │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── RLMessage.java │ │ │ │ │ │ │ ├── RLMessageType.java │ │ │ │ │ │ │ └── encoding │ │ │ │ │ │ │ │ └── Encoding4b6b.java │ │ │ │ │ │ └── defs │ │ │ │ │ │ │ ├── RLMessageType.java │ │ │ │ │ │ │ └── RXFilterMode.java │ │ │ │ │ │ ├── defs │ │ │ │ │ │ └── CommandValueDefinitionType.java │ │ │ │ │ │ ├── service │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ └── ServiceTransportType.java │ │ │ │ │ │ └── tasks │ │ │ │ │ │ │ └── PumpTask.java │ │ │ │ │ │ └── data │ │ │ │ │ │ └── CommandValueDefinition.java │ │ │ │ └── utils │ │ │ │ │ └── ThreadUtil.java │ │ │ │ └── medtronic │ │ │ │ ├── defs │ │ │ │ ├── BasalProfileStatus.java │ │ │ │ ├── BatteryType.java │ │ │ │ └── MedtronicConverterType.java │ │ │ │ ├── comm │ │ │ │ ├── history │ │ │ │ │ ├── MedtronicHistoryDecoderInterface.java │ │ │ │ │ └── MedtronicHistoryEntryInterface.java │ │ │ │ ├── message │ │ │ │ │ └── PumpAckMessageBody.java │ │ │ │ └── data │ │ │ │ │ └── history_old │ │ │ │ │ └── record │ │ │ │ │ └── ResumePumpEvent.java │ │ │ │ └── data │ │ │ │ └── dto │ │ │ │ └── ClockDTO.java │ │ │ └── logging │ │ │ └── BundleLogger.java │ │ └── com │ │ └── gxwtech │ │ └── roundtrip2 │ │ ├── RoundtripService │ │ ├── Tasks │ │ │ ├── ReadTBRTask.java │ │ │ ├── SetTBRTask.java │ │ │ └── SetBolusTask.java │ │ └── medtronic │ │ │ └── PumpData │ │ │ ├── BasalProfileTypeEnum.java │ │ │ ├── HtmlElement.java │ │ │ ├── HtmlCodeTagEnd.java │ │ │ ├── HtmlByte.java │ │ │ ├── HtmlElementGeneric.java │ │ │ └── HtmlHistoryPageStart.java │ │ ├── ServiceData │ │ └── ServiceMessageUpdate.java │ │ ├── CommunicationService │ │ └── Objects │ │ │ └── RealmManager.java │ │ └── AutoStart.java │ ├── test │ └── java │ │ └── com │ │ └── gxwtech │ │ └── roundtrip2 │ │ └── ExampleUnitTest.java │ └── androidTest │ └── java │ └── com │ └── gxwtech │ └── roundtrip2 │ └── ApplicationTest.java ├── settings.gradle ├── .gitignore ├── .idea ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── vcs.xml ├── modules.xml └── runConfigurations.xml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── historyDebugging ├── PumpHistoryPage-0 ├── PumpHistoryPage-1 ├── PumpHistoryPage-10 ├── PumpHistoryPage-11 ├── PumpHistoryPage-12 ├── PumpHistoryPage-13 ├── PumpHistoryPage-2 ├── PumpHistoryPage-3 ├── PumpHistoryPage-4 ├── PumpHistoryPage-5 ├── PumpHistoryPage-6 ├── PumpHistoryPage-7 ├── PumpHistoryPage-8 ├── PumpHistoryPage-9 ├── RT2PumpHistory.sqlite ├── RT2PumpHistory-2.sqlite ├── RT2PumpHistory-3.sqlite ├── RT2PumpHistory-4.sqlite ├── RT2PumpHistory-5.sqlite ├── RT2PumpHistory-2016-06-24-18-05.sqlite └── add-indexer.sh ├── docs └── HistoryTesting.txt ├── local.properties └── TO-DO.txt /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | .idea/* 4 | .DS_Store 5 | /build 6 | /captures 7 | **/*.iml 8 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /historyDebugging/PumpHistoryPage-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/historyDebugging/PumpHistoryPage-0 -------------------------------------------------------------------------------- /historyDebugging/PumpHistoryPage-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/historyDebugging/PumpHistoryPage-1 -------------------------------------------------------------------------------- /historyDebugging/PumpHistoryPage-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/historyDebugging/PumpHistoryPage-10 -------------------------------------------------------------------------------- /historyDebugging/PumpHistoryPage-11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/historyDebugging/PumpHistoryPage-11 -------------------------------------------------------------------------------- /historyDebugging/PumpHistoryPage-12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/historyDebugging/PumpHistoryPage-12 -------------------------------------------------------------------------------- /historyDebugging/PumpHistoryPage-13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/historyDebugging/PumpHistoryPage-13 -------------------------------------------------------------------------------- /historyDebugging/PumpHistoryPage-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/historyDebugging/PumpHistoryPage-2 -------------------------------------------------------------------------------- /historyDebugging/PumpHistoryPage-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/historyDebugging/PumpHistoryPage-3 -------------------------------------------------------------------------------- /historyDebugging/PumpHistoryPage-4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/historyDebugging/PumpHistoryPage-4 -------------------------------------------------------------------------------- /historyDebugging/PumpHistoryPage-5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/historyDebugging/PumpHistoryPage-5 -------------------------------------------------------------------------------- /historyDebugging/PumpHistoryPage-6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/historyDebugging/PumpHistoryPage-6 -------------------------------------------------------------------------------- /historyDebugging/PumpHistoryPage-7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/historyDebugging/PumpHistoryPage-7 -------------------------------------------------------------------------------- /historyDebugging/PumpHistoryPage-8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/historyDebugging/PumpHistoryPage-8 -------------------------------------------------------------------------------- /historyDebugging/PumpHistoryPage-9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/historyDebugging/PumpHistoryPage-9 -------------------------------------------------------------------------------- /historyDebugging/RT2PumpHistory.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/historyDebugging/RT2PumpHistory.sqlite -------------------------------------------------------------------------------- /historyDebugging/RT2PumpHistory-2.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/historyDebugging/RT2PumpHistory-2.sqlite -------------------------------------------------------------------------------- /historyDebugging/RT2PumpHistory-3.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/historyDebugging/RT2PumpHistory-3.sqlite -------------------------------------------------------------------------------- /historyDebugging/RT2PumpHistory-4.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/historyDebugging/RT2PumpHistory-4.sqlite -------------------------------------------------------------------------------- /historyDebugging/RT2PumpHistory-5.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/historyDebugging/RT2PumpHistory-5.sqlite -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/exit_to_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/exit_to_app.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/exit_to_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/exit_to_app.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/exit_to_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/exit_to_app.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/aaps_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/aaps_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/exit_to_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/exit_to_app.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cast_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cast_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cast_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cast_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cast_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cast_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cast_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cast_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cast_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cast_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cast_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cast_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cast_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cast_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cast_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cast_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cat_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cat_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cat_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cat_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cat_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cat_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cat_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cat_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cat_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cat_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cat_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cat_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cat_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cat_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cat_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cat_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cast_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cast_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cast_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cast_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cast_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cast_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cast_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cast_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cast_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cast_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cast_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cast_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cast_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cast_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cast_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cast_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cat_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cat_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cat_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cat_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cat_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cat_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cat_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cat_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cat_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cat_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cat_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cat_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cat_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cat_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cat_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cat_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cat_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cat_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cat_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cat_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cat_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cat_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cat_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cat_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cat_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cat_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cat_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cat_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cat_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cat_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cat_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cat_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cast_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cast_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cast_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cast_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cast_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cast_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cast_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cast_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cat_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cat_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cat_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cat_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cat_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cat_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cat_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_cat_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_tablet_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_tablet_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_tablet_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_tablet_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_tablet_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_tablet_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_tablet_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_tablet_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_tablet_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_tablet_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_tablet_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_tablet_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_tablet_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_tablet_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_tablet_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_tablet_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cast_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cast_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cast_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cast_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cast_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cast_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cast_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cast_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cat_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cat_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cat_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cat_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cat_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cat_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cat_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_cat_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_tablet_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_tablet_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_tablet_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_tablet_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_tablet_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_tablet_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_tablet_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_tablet_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_tablet_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_tablet_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_tablet_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_tablet_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_tablet_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_tablet_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_tablet_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_tablet_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cast_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cast_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cast_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cast_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cast_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cast_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cast_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cast_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cast_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cast_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cast_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cast_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cast_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cast_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cast_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cast_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cat_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cat_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cat_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cat_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cat_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cat_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cat_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cat_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cast_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cast_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cast_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cast_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cast_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cast_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cast_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cast_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cast_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cast_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cast_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cast_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cast_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cast_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cast_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cast_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cat_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cat_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cat_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cat_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cat_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cat_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cat_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cat_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cat_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cat_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cat_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cat_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cat_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cat_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cat_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cat_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cat_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cat_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cat_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cat_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cat_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cat_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cat_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cat_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cat_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cat_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cat_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cat_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cat_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cat_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cat_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cat_white_48dp.png -------------------------------------------------------------------------------- /historyDebugging/RT2PumpHistory-2016-06-24-18-05.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/historyDebugging/RT2PumpHistory-2016-06-24-18-05.sqlite -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_autorenew_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_autorenew_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_autorenew_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_autorenew_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_autorenew_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_autorenew_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_autorenew_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_autorenew_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_autorenew_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_autorenew_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_autorenew_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_autorenew_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_autorenew_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_autorenew_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_autorenew_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_autorenew_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_history_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_history_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_history_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_history_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_history_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_history_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_history_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_history_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_history_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_history_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_history_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_history_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_history_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_history_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_history_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_history_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_history_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_history_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_history_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_history_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_history_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_history_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_history_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_history_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_settings_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_settings_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_settings_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_settings_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_settings_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_settings_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_settings_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_settings_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_settings_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_settings_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_settings_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_settings_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_settings_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_settings_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_settings_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_settings_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_tablet_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_tablet_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_tablet_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_tablet_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_tablet_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_tablet_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_tablet_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_tablet_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_autorenew_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_autorenew_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_autorenew_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_autorenew_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_autorenew_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_autorenew_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_autorenew_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_autorenew_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_autorenew_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_autorenew_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_autorenew_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_autorenew_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_autorenew_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_autorenew_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_autorenew_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_autorenew_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_history_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_history_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_history_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_history_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_history_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_history_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_history_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_history_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_history_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_history_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_history_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_history_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_history_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_history_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_history_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_history_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_history_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_history_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_history_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_history_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_history_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_history_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_history_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_history_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_settings_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_settings_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_settings_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_settings_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_settings_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_settings_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_settings_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_settings_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_tablet_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_tablet_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_tablet_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_tablet_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_tablet_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_tablet_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_tablet_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_tablet_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cast_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cast_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cast_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cast_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cast_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cast_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cast_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_cast_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_history_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_history_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_history_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_history_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_history_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_history_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_history_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_history_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_history_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_history_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_history_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_history_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_history_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_history_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_history_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_history_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_settings_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_settings_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_settings_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_settings_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_settings_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_settings_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_settings_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_settings_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_settings_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_settings_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_settings_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_settings_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_settings_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_settings_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_settings_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_settings_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_tablet_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_tablet_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_tablet_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_tablet_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_tablet_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_tablet_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_tablet_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_tablet_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_tablet_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_tablet_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_tablet_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_tablet_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_tablet_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_tablet_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_tablet_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_tablet_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_tablet_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_tablet_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_tablet_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_tablet_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_tablet_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_tablet_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_tablet_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_tablet_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cast_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cast_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cast_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cast_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cast_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cast_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cast_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cast_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cat_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cat_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cat_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cat_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cat_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cat_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cat_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_cat_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_history_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_history_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_history_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_history_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_history_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_history_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_history_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_history_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_history_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_history_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_history_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_history_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_history_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_history_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_history_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_history_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_tablet_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_tablet_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_tablet_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_tablet_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_tablet_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_tablet_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_tablet_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_tablet_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_tablet_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_tablet_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_tablet_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_tablet_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_tablet_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_tablet_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_tablet_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_tablet_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cast_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cast_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cast_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cast_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cast_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cast_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cast_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cast_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cast_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cast_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cast_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cast_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cast_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cast_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cast_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cast_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cast_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cast_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cast_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cast_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cast_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cast_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cast_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cast_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cat_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cat_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cat_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cat_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cat_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cat_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cat_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cat_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_tablet_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_tablet_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_tablet_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_tablet_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_tablet_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_tablet_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_tablet_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_tablet_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_tablet_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_tablet_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_tablet_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_tablet_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_tablet_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_tablet_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_tablet_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_tablet_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_autorenew_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_autorenew_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_autorenew_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_autorenew_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_autorenew_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_autorenew_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_autorenew_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_autorenew_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_exit_to_app_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_exit_to_app_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_exit_to_app_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_exit_to_app_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_exit_to_app_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_exit_to_app_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_exit_to_app_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_exit_to_app_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_exit_to_app_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_exit_to_app_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_exit_to_app_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_exit_to_app_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_exit_to_app_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_exit_to_app_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_exit_to_app_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_exit_to_app_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_file_chart_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_file_chart_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_file_chart_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_file_chart_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_file_chart_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_file_chart_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_file_chart_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_file_chart_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_file_chart_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_file_chart_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_file_chart_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_file_chart_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_file_chart_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_file_chart_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_file_chart_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_file_chart_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_settings_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_settings_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_settings_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_settings_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_settings_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_settings_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_settings_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_settings_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_autorenew_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_autorenew_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_autorenew_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_autorenew_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_autorenew_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_autorenew_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_autorenew_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_autorenew_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_exit_to_app_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_exit_to_app_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_exit_to_app_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_exit_to_app_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_exit_to_app_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_exit_to_app_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_exit_to_app_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_exit_to_app_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_exit_to_app_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_exit_to_app_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_exit_to_app_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_exit_to_app_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_exit_to_app_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_exit_to_app_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_exit_to_app_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_exit_to_app_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_file_chart_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_file_chart_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_file_chart_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_file_chart_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_file_chart_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_file_chart_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_file_chart_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_file_chart_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_file_chart_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_file_chart_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_file_chart_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_file_chart_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_file_chart_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_file_chart_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_file_chart_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_file_chart_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_settings_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_settings_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_settings_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_settings_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_autorenew_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_autorenew_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_autorenew_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_autorenew_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_autorenew_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_autorenew_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_autorenew_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_autorenew_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_autorenew_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_autorenew_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_autorenew_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_autorenew_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_autorenew_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_autorenew_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_autorenew_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_autorenew_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_file_chart_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_file_chart_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_file_chart_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_file_chart_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_file_chart_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_file_chart_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_file_chart_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_file_chart_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_file_chart_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_file_chart_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_file_chart_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_file_chart_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_file_chart_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_file_chart_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_file_chart_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_file_chart_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_history_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_history_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_history_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_history_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_history_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_history_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_history_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_history_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_settings_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_settings_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_settings_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_settings_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_settings_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_settings_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_settings_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_settings_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_autorenew_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_autorenew_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_autorenew_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_autorenew_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_autorenew_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_autorenew_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_autorenew_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_autorenew_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_autorenew_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_autorenew_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_autorenew_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_autorenew_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_autorenew_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_autorenew_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_autorenew_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_autorenew_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_history_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_history_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_history_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_history_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_history_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_history_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_history_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_history_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_settings_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_settings_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_settings_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_settings_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_settings_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_settings_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_settings_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_settings_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_settings_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_settings_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_settings_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_settings_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_settings_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_settings_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_settings_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_settings_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_tablet_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_tablet_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_tablet_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_tablet_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_tablet_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_tablet_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_tablet_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_tablet_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_history_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_history_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_history_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_history_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_history_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_history_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_history_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_history_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_history_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_history_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_history_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_history_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_history_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_history_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_history_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_history_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_settings_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_settings_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_settings_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_settings_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_settings_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_settings_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_settings_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_settings_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_settings_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_settings_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_settings_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_settings_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_settings_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_settings_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_settings_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_settings_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_tablet_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_tablet_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_tablet_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_tablet_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_tablet_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_tablet_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_tablet_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_tablet_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_exit_to_app_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_exit_to_app_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_exit_to_app_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_exit_to_app_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_exit_to_app_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_exit_to_app_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_exit_to_app_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_exit_to_app_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_file_chart_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_file_chart_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_file_chart_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_file_chart_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_file_chart_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_file_chart_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_file_chart_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-hdpi/ic_file_chart_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_exit_to_app_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_exit_to_app_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_exit_to_app_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_exit_to_app_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_exit_to_app_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_exit_to_app_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_exit_to_app_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_exit_to_app_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_file_chart_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_file_chart_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_file_chart_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_file_chart_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_file_chart_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_file_chart_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_file_chart_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-mdpi/ic_file_chart_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_autorenew_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_autorenew_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_autorenew_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_autorenew_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_autorenew_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_autorenew_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_autorenew_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_autorenew_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_exit_to_app_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_exit_to_app_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_exit_to_app_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_exit_to_app_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_exit_to_app_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_exit_to_app_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_exit_to_app_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_exit_to_app_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_exit_to_app_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_exit_to_app_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_exit_to_app_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_exit_to_app_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_exit_to_app_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_exit_to_app_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_exit_to_app_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_exit_to_app_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_exit_to_app_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_exit_to_app_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_exit_to_app_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_exit_to_app_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_exit_to_app_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_exit_to_app_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_exit_to_app_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_exit_to_app_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_file_chart_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_file_chart_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_file_chart_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_file_chart_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_file_chart_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_file_chart_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_file_chart_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xhdpi/ic_file_chart_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_autorenew_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_autorenew_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_autorenew_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_autorenew_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_autorenew_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_autorenew_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_autorenew_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_autorenew_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_exit_to_app_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_exit_to_app_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_exit_to_app_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_exit_to_app_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_exit_to_app_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_exit_to_app_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_exit_to_app_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_exit_to_app_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_exit_to_app_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_exit_to_app_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_exit_to_app_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_exit_to_app_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_exit_to_app_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_exit_to_app_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_exit_to_app_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_exit_to_app_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_file_chart_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_file_chart_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_file_chart_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_file_chart_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_file_chart_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_file_chart_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_file_chart_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_file_chart_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_file_chart_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_file_chart_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_file_chart_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_file_chart_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_file_chart_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_file_chart_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_file_chart_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_file_chart_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_file_chart_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_file_chart_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_file_chart_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_file_chart_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_file_chart_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_file_chart_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_file_chart_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_file_chart_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_settings_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_settings_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_settings_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_settings_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_settings_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_settings_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_settings_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_settings_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_autorenew_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_autorenew_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_autorenew_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_autorenew_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_autorenew_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_autorenew_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_autorenew_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_autorenew_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_autorenew_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_autorenew_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_autorenew_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_autorenew_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_autorenew_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_autorenew_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_autorenew_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_autorenew_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_autorenew_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_autorenew_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_autorenew_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_autorenew_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_autorenew_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_autorenew_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_autorenew_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_autorenew_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_file_chart_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_file_chart_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_file_chart_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_file_chart_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_file_chart_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_file_chart_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_file_chart_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_file_chart_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_file_chart_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_file_chart_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_file_chart_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_file_chart_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_file_chart_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_file_chart_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_file_chart_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_file_chart_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_history_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_history_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_history_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_history_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_history_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_history_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_history_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_history_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_settings_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_settings_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_settings_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_settings_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_settings_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_settings_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_settings_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_settings_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_exit_to_app_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_exit_to_app_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_exit_to_app_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_exit_to_app_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_exit_to_app_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_exit_to_app_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_exit_to_app_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxhdpi/ic_exit_to_app_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_exit_to_app_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_file_chart_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_file_chart_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_file_chart_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_file_chart_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_file_chart_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_file_chart_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_file_chart_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rifkyprayoga/RileyLinkAAPS/HEAD/app/src/main/res/drawable-xxxhdpi/ic_file_chart_grey600_48dp.png -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/data/Profile.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.data; 2 | 3 | /** 4 | * Created by andy on 24/05/2018. 5 | */ 6 | 7 | public class Profile { 8 | } 9 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/java/com/gxwtech/roundtrip2/RoundtripService/Tasks/ReadTBRTask.java: -------------------------------------------------------------------------------- 1 | package com.gxwtech.roundtrip2.RoundtripService.Tasks; 2 | 3 | /** 4 | * Created by andy on 5/30/18. 5 | */ 6 | 7 | public class ReadTBRTask { 8 | } 9 | -------------------------------------------------------------------------------- /app/src/main/java/com/gxwtech/roundtrip2/RoundtripService/Tasks/SetTBRTask.java: -------------------------------------------------------------------------------- 1 | package com.gxwtech.roundtrip2.RoundtripService.Tasks; 2 | 3 | /** 4 | * Created by andy on 5/30/18. 5 | */ 6 | 7 | public class SetTBRTask { 8 | } 9 | -------------------------------------------------------------------------------- /docs/HistoryTesting.txt: -------------------------------------------------------------------------------- 1 | History Testing 2 | =============== 3 | 4 | 512 ? 5 | 6 | 515 ? 7 | 8 | 522 9 | 578398 100% OK: 1-10 Failed: 0 10 | bewest bad_data 11 | 12 | 523 13 | 342725 14 | -------------------------------------------------------------------------------- /app/src/main/java/com/gxwtech/roundtrip2/RoundtripService/Tasks/SetBolusTask.java: -------------------------------------------------------------------------------- 1 | package com.gxwtech.roundtrip2.RoundtripService.Tasks; 2 | 3 | /** 4 | * Created by andy on 5/30/18. 5 | */ 6 | 7 | public class SetBolusTask { 8 | } 9 | -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/java/com/gxwtech/roundtrip2/RoundtripService/medtronic/PumpData/BasalProfileTypeEnum.java: -------------------------------------------------------------------------------- 1 | package com.gxwtech.roundtrip2.RoundtripService.medtronic.PumpData; 2 | 3 | /** 4 | * Created by geoff on 6/1/15. 5 | */ 6 | public enum BasalProfileTypeEnum { 7 | STD,A,B; 8 | } 9 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Oct 22 14:18:09 IST 2018 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip 7 | -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/plugins/pump/common/defs/PumpTempBasalType.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.plugins.pump.common.defs; 2 | 3 | /** 4 | * Created by andy on 02/05/2018. 5 | */ 6 | 7 | public enum PumpTempBasalType { 8 | Percent, // 9 | Absolute, 10 | } 11 | -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/plugins/pump/common/dialog/RefreshableInterface.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.plugins.pump.common.dialog; 2 | 3 | /** 4 | * Created by andy on 5/19/18. 5 | */ 6 | 7 | public interface RefreshableInterface { 8 | 9 | void refreshData(); 10 | 11 | } 12 | -------------------------------------------------------------------------------- /app/src/main/java/com/gxwtech/roundtrip2/RoundtripService/medtronic/PumpData/HtmlElement.java: -------------------------------------------------------------------------------- 1 | package com.gxwtech.roundtrip2.RoundtripService.medtronic.PumpData; 2 | 3 | /** 4 | * Created by geoff on 6/24/16. 5 | */ 6 | abstract public class HtmlElement { 7 | public HtmlElement() {} 8 | abstract public String toString(); 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/plugins/pump/common/hw/rileylink/ble/data/RLMessage.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.plugins.pump.common.hw.rileylink.ble.data; 2 | 3 | /** 4 | * Created by andy on 5/6/18. 5 | */ 6 | public interface RLMessage { 7 | 8 | byte[] getTxData(); 9 | 10 | 11 | boolean isValid(); 12 | 13 | } 14 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/insulin_treatment_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/plugins/pump/medtronic/defs/BasalProfileStatus.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.plugins.pump.medtronic.defs; 2 | 3 | /** 4 | * Created by andy on 1/20/19. 5 | */ 6 | 7 | public enum BasalProfileStatus { 8 | 9 | NotInitialized, // 10 | ProfileOK, // 11 | ProfileChanged, // 12 | ; 13 | 14 | } 15 | -------------------------------------------------------------------------------- /app/src/main/java/com/gxwtech/roundtrip2/RoundtripService/medtronic/PumpData/HtmlCodeTagEnd.java: -------------------------------------------------------------------------------- 1 | package com.gxwtech.roundtrip2.RoundtripService.medtronic.PumpData; 2 | 3 | /** 4 | * Created by geoff on 6/24/16. 5 | */ 6 | public class HtmlCodeTagEnd extends HtmlElement { 7 | public HtmlCodeTagEnd() {} 8 | public String toString() { return ""; } 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | -------------------------------------------------------------------------------- /historyDebugging/add-indexer.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | DB=$1 3 | [ "x$DB" == "x" ] && echo "need database" && exit 4 | 5 | sqlite3 $DB 'alter table entries add indexer TEXT;' 6 | sqlite3 $DB 'select id,pagenum,offset from entries;' | awk -F \| '{ printf "update entries set indexer=\"%02d%04d\" where id=%d;\n", $2, $3, $1; }' > make-indexer-commands.txt 7 | sqlite3 $DB -init make-indexer-commands.txt '.quit;' 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/insulin_basal_square.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/tablet.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/plugins/pump/common/hw/rileylink/defs/CommandValueDefinitionType.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.plugins.pump.common.hw.rileylink.defs; 2 | 3 | /** 4 | * Created by andy on 4/5/19. 5 | */ 6 | 7 | public interface CommandValueDefinitionType { 8 | 9 | String getName(); 10 | 11 | 12 | String getDescription(); 13 | 14 | 15 | String commandAction(); 16 | 17 | } 18 | -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/plugins/pump/common/hw/rileylink/service/data/ServiceTransportType.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.plugins.pump.common.hw.rileylink.service.data; 2 | 3 | /** 4 | * Created by andy on 31/05/18. 5 | */ 6 | 7 | public enum ServiceTransportType { 8 | 9 | Undefined, // 10 | ServiceNotification, // 11 | 12 | ServiceCommand, // 13 | ServiceResult; 14 | 15 | } 16 | -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/plugins/pump/common/hw/rileylink/ble/data/RLMessageType.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.plugins.pump.common.hw.rileylink.ble.data; 2 | 3 | /** 4 | * Created by andy on 5/6/18. 5 | */ 6 | 7 | public enum RLMessageType { 8 | PowerOn, // for powering on the pump (wakeup) 9 | ReadSimpleData, // for checking if pump is readable (for Medtronic we can use GetModel) 10 | ; 11 | } 12 | -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/plugins/pump/common/hw/rileylink/ble/defs/RLMessageType.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.plugins.pump.common.hw.rileylink.ble.defs; 2 | 3 | /** 4 | * Created by andy on 5/6/18. 5 | */ 6 | 7 | public enum RLMessageType { 8 | PowerOn, // for powering on the pump (wakeup) 9 | ReadSimpleData, // for checking if pump is readable (for Medtronic we can use GetModel) 10 | ; 11 | } 12 | -------------------------------------------------------------------------------- /app/src/test/java/com/gxwtech/roundtrip2/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.gxwtech.roundtrip2; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.assertEquals; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /app/src/main/java/com/gxwtech/roundtrip2/RoundtripService/medtronic/PumpData/HtmlByte.java: -------------------------------------------------------------------------------- 1 | package com.gxwtech.roundtrip2.RoundtripService.medtronic.PumpData; 2 | 3 | /** 4 | * Created by geoff on 6/24/16. 5 | */ 6 | public class HtmlByte extends HtmlElement { 7 | private byte data = 0; 8 | public HtmlByte() {} 9 | public HtmlByte(byte b) { data = b; } 10 | public String toString() {return String.format("%02x",data);} 11 | } 12 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/alert_circle.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/information.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_info_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_bluetooth_scan.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 16dp 6 | 200dp 7 | 200dp 8 | 16dp 9 | 10 | -------------------------------------------------------------------------------- /app/src/androidTest/java/com/gxwtech/roundtrip2/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.gxwtech.roundtrip2; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_rileylink_ble_scan.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/arrow_right_bold_circle.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/plugins/pump/common/hw/rileylink/ble/defs/RXFilterMode.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.plugins.pump.common.hw.rileylink.ble.defs; 2 | 3 | /** 4 | * Created by andy on 21/05/2018. 5 | */ 6 | 7 | public enum RXFilterMode { 8 | 9 | Wide(0x50), // 10 | Narrow(0x90) // 11 | ; 12 | 13 | public byte value; 14 | 15 | 16 | RXFilterMode(int value) { 17 | this.value = (byte)value; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/plugins/pump/medtronic/comm/history/MedtronicHistoryDecoderInterface.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.plugins.pump.medtronic.comm.history; 2 | 3 | import java.util.List; 4 | 5 | /** 6 | * Created by andy on 3/10/19. 7 | */ 8 | 9 | public interface MedtronicHistoryDecoderInterface { 10 | 11 | RecordDecodeStatus decodeRecord(T record); 12 | 13 | 14 | List createRecords(List dataClear); 15 | 16 | } 17 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/file_chart.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/checkbox_marked_circle.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | #F44336 7 | #0D47A1 8 | #0091EA 9 | #00C853 10 | #FFAB00 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/layout/historypage_detail.xml: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /app/src/main/java/com/gxwtech/roundtrip2/RoundtripService/medtronic/PumpData/HtmlElementGeneric.java: -------------------------------------------------------------------------------- 1 | package com.gxwtech.roundtrip2.RoundtripService.medtronic.PumpData; 2 | 3 | /** 4 | * Created by geoff on 6/24/16. 5 | */ 6 | public class HtmlElementGeneric extends HtmlElement { 7 | String s = ""; 8 | public HtmlElementGeneric() {} 9 | public HtmlElementGeneric(String s) { 10 | this.s = s; 11 | } 12 | public String toString() { 13 | return s; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/plugins/pump/common/hw/rileylink/data/CommandValueDefinition.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.plugins.pump.common.hw.rileylink.data; 2 | 3 | import info.nightscout.androidaps.plugins.pump.common.hw.rileylink.defs.CommandValueDefinitionType; 4 | 5 | /** 6 | * Created by andy on 4/5/19. 7 | */ 8 | 9 | public class CommandValueDefinition { 10 | 11 | public CommandValueDefinitionType definitionType; 12 | public String value; 13 | 14 | } 15 | -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/plugins/pump/medtronic/comm/history/MedtronicHistoryEntryInterface.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.plugins.pump.medtronic.comm.history; 2 | 3 | import java.util.List; 4 | 5 | /** 6 | * Created by andy on 7/24/18. 7 | */ 8 | public interface MedtronicHistoryEntryInterface { 9 | 10 | String getEntryTypeName(); 11 | 12 | 13 | void setData(List listRawData, boolean doNotProcess); 14 | 15 | 16 | int getDateLength(); 17 | 18 | } 19 | -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/plugins/pump/medtronic/comm/message/PumpAckMessageBody.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.plugins.pump.medtronic.comm.message; 2 | 3 | /** 4 | * Created by geoff on 5/29/16. 5 | */ 6 | public class PumpAckMessageBody extends CarelinkShortMessageBody { 7 | 8 | public PumpAckMessageBody() { 9 | init(new byte[] { 0 }); 10 | } 11 | 12 | 13 | public PumpAckMessageBody(byte[] bodyData) { 14 | init(bodyData); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- 1 | ## This file is automatically generated by Android Studio. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must *NOT* be checked into Version Control Systems, 5 | # as it contains information specific to your local configuration. 6 | # 7 | # Location of the SDK. This is only used by Gradle. 8 | # For customization when using a Version Control System, please read the 9 | # header note. 10 | #Sat Jul 21 19:15:04 IST 2018 11 | sdk.dir=/opt/android-sdk 12 | -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/plugins/pump/medtronic/data/dto/ClockDTO.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.plugins.pump.medtronic.data.dto; 2 | 3 | import org.joda.time.LocalDateTime; 4 | 5 | /** 6 | * Created by andy on 2/27/19. 7 | */ 8 | 9 | public class ClockDTO { 10 | 11 | public LocalDateTime localDeviceTime; 12 | 13 | public LocalDateTime pumpTime; 14 | 15 | // public Duration timeDifference; 16 | 17 | public int timeDifference; // s (pump -> local) 18 | } 19 | -------------------------------------------------------------------------------- /app/src/main/res/xml/pref_rileylink.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/cast.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/clock.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/exit_to_app.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/layout/servicemessageview_detail.xml: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /app/src/main/java/com/gxwtech/roundtrip2/ServiceData/ServiceMessageUpdate.java: -------------------------------------------------------------------------------- 1 | package com.gxwtech.roundtrip2.ServiceData; 2 | 3 | import info.nightscout.androidaps.plugins.pump.common.hw.rileylink.service.data.ServiceMessage; 4 | 5 | /** 6 | * Created by geoff on 7/4/16. 7 | */ 8 | public class ServiceMessageUpdate extends ServiceMessage { 9 | public ServiceMessageUpdate() { 10 | } 11 | 12 | 13 | public void init() { 14 | map.putString("ServiceMessageType", "ServiceUpdateMessage"); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/refresh.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_notifications_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/java/com/gxwtech/roundtrip2/RoundtripService/medtronic/PumpData/HtmlHistoryPageStart.java: -------------------------------------------------------------------------------- 1 | package com.gxwtech.roundtrip2.RoundtripService.medtronic.PumpData; 2 | 3 | /** 4 | * Created by geoff on 6/24/16. 5 | */ 6 | public class HtmlHistoryPageStart extends HtmlElement { 7 | int pagenum = 0; 8 | public HtmlHistoryPageStart() {} 9 | public HtmlHistoryPageStart(int num) { 10 | pagenum = num; 11 | } 12 | public String toString() { 13 | return "

History Page " + pagenum + "

\n"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/plugins/pump/common/hw/rileylink/ble/data/encoding/Encoding4b6b.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.plugins.pump.common.hw.rileylink.ble.data.encoding; 2 | 3 | import info.nightscout.androidaps.plugins.pump.common.hw.rileylink.ble.RileyLinkCommunicationException; 4 | 5 | /** 6 | * Created by andy on 11/24/18. 7 | */ 8 | 9 | public interface Encoding4b6b { 10 | 11 | byte[] encode4b6b(byte[] data); 12 | 13 | 14 | byte[] decode4b6b(byte[] data) throws RileyLinkCommunicationException; 15 | 16 | } 17 | -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/plugins/pump/medtronic/defs/BatteryType.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.plugins.pump.medtronic.defs; 2 | 3 | /** 4 | * Created by andy on 6/4/18. 5 | */ 6 | 7 | public enum BatteryType { 8 | 9 | Alkaline(1.20f, 1.47f), // 10 | Lithium(1.32f, 1.58f); 11 | 12 | public float lowVoltage; 13 | public float highVoltage; 14 | 15 | 16 | BatteryType(float lowVoltage, float highVoltage) { 17 | this.lowVoltage = lowVoltage; 18 | this.highVoltage = highVoltage; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/autorenew.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/plugins/pump/common/defs/PumpStatusType.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.plugins.pump.common.defs; 2 | 3 | /** 4 | * Created by andy on 5/12/18. 5 | */ 6 | 7 | public enum PumpStatusType { 8 | Running("normal"), // 9 | Suspended("suspended") // 10 | ; 11 | 12 | private String statusString; 13 | 14 | 15 | PumpStatusType(String statusString) { 16 | this.statusString = statusString; 17 | } 18 | 19 | 20 | public String getStatus() { 21 | return statusString; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/plugins/pump/common/hw/rileylink/service/tasks/PumpTask.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.plugins.pump.common.hw.rileylink.service.tasks; 2 | 3 | import info.nightscout.androidaps.plugins.pump.common.hw.rileylink.service.data.ServiceTransport; 4 | 5 | /** 6 | * Created by geoff on 7/10/16. 7 | */ 8 | public class PumpTask extends ServiceTask { 9 | 10 | public PumpTask() { 11 | super(); 12 | } 13 | 14 | 15 | public PumpTask(ServiceTransport transport) { 16 | super(transport); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_sync_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /TO-DO.txt: -------------------------------------------------------------------------------- 1 | TO-DO 2 | ===== 3 | 4 | + Set Model to RL 5 | - If serial changes reset Model 6 | - AAPS: Serial changes from Configuration (prevent same serial changes problem) 7 | - AAPS: Add RL Status to page, update on RL status change also error 8 | 9 | - Fix History parsing 10 | - Remove old HP files 11 | - Refactor Page to use GGC History parsing or something? 12 | 13 | - RileyLink found check enable 14 | 15 | 16 | 17 | - get bolus status 18 | 19 | - get suspended status 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | DONE 36 | ==== -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_show_aaps.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/data/ProfileStore.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.data; 2 | 3 | import android.support.annotation.Nullable; 4 | import android.support.v4.util.ArrayMap; 5 | 6 | import org.json.JSONException; 7 | import org.json.JSONObject; 8 | import org.slf4j.Logger; 9 | import org.slf4j.LoggerFactory; 10 | 11 | import java.util.ArrayList; 12 | import java.util.Iterator; 13 | 14 | import info.nightscout.androidaps.Constants; 15 | 16 | /** 17 | * Created by mike on 01.06.2017. 18 | */ 19 | 20 | public class ProfileStore { 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/plugins/pump/medtronic/defs/MedtronicConverterType.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.plugins.pump.medtronic.defs; 2 | 3 | /** 4 | * Taken from GNU Gluco Control diabetes management software (ggc.sourceforge.net) 5 | *

6 | * Author: Andy {andy@atech-software.com} 7 | */ 8 | 9 | public enum MedtronicConverterType { 10 | Pump511Converter, // 11 | Pump512Converter, // 12 | Pump515Converter, // 13 | Pump523Converter, // 14 | 15 | CGMS522Converter, // 16 | CGMS523Converter, // 17 | 18 | ; 19 | 20 | } 21 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/history.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/logging/BundleLogger.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.logging; 2 | 3 | import android.os.Bundle; 4 | 5 | /** 6 | * Created by mike on 14.08.2017. 7 | */ 8 | 9 | public class BundleLogger { 10 | public static String log(Bundle bundle) { 11 | if (bundle == null) { 12 | return null; 13 | } 14 | String string = "Bundle{"; 15 | for (String key : bundle.keySet()) { 16 | string += " " + key + " => " + bundle.get(key) + ";"; 17 | } 18 | string += " }Bundle"; 19 | return string; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/plugins/pump/common/utils/ThreadUtil.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.plugins.pump.common.utils; 2 | 3 | /** 4 | * Created by geoff on 5/27/16. 5 | */ 6 | public class ThreadUtil { 7 | 8 | public static long getThreadId() { 9 | return Thread.currentThread().getId(); 10 | } 11 | 12 | 13 | public static String getThreadName() { 14 | return Thread.currentThread().getName(); 15 | } 16 | 17 | 18 | public static String sig() { 19 | Thread t = Thread.currentThread(); 20 | return t.getName() + "[" + t.getId() + "]"; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/src/main/java/com/gxwtech/roundtrip2/CommunicationService/Objects/RealmManager.java: -------------------------------------------------------------------------------- 1 | package com.gxwtech.roundtrip2.CommunicationService.Objects; 2 | 3 | import io.realm.Realm; 4 | 5 | /** 6 | * Created by Tim on 11/08/2016. 7 | */ 8 | public class RealmManager { 9 | private Realm realm; 10 | 11 | public RealmManager(){ 12 | realm = Realm.getDefaultInstance(); 13 | } 14 | 15 | public void closeRealm(){ 16 | realm.close(); 17 | } 18 | 19 | public Realm getRealm(){ 20 | if (realm.isClosed() || realm.isEmpty()) realm = Realm.getDefaultInstance(); 21 | return realm; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/com/gxwtech/roundtrip2/AutoStart.java: -------------------------------------------------------------------------------- 1 | package com.gxwtech.roundtrip2; 2 | 3 | import android.content.BroadcastReceiver; 4 | import android.content.Context; 5 | import android.content.Intent; 6 | 7 | import com.gxwtech.roundtrip2.CommunicationService.CommunicationService; 8 | 9 | /** 10 | * Created by Tim on 07/06/2016. 11 | * Receives BOOT_COMPLETED Intent and starts service 12 | */ 13 | public class AutoStart extends BroadcastReceiver { 14 | 15 | @Override 16 | public void onReceive(Context context, Intent intent) { 17 | 18 | context.startService(new Intent(context, CommunicationService.class)); 19 | 20 | } 21 | } -------------------------------------------------------------------------------- /app/src/main/java/info/nightscout/androidaps/plugins/pump/medtronic/comm/data/history_old/record/ResumePumpEvent.java: -------------------------------------------------------------------------------- 1 | package info.nightscout.androidaps.plugins.pump.medtronic.comm.data.history_old.record; 2 | 3 | import info.nightscout.androidaps.plugins.pump.medtronic.comm.data.history_old.TimeStampedRecord; 4 | 5 | public class ResumePumpEvent extends TimeStampedRecord { 6 | 7 | public ResumePumpEvent() { 8 | } 9 | 10 | 11 | @Override 12 | public String getShortTypeName() { 13 | return "Resume"; 14 | } 15 | 16 | 17 | @Override 18 | public boolean isAAPSRelevant() { 19 | return false; 20 | } 21 | } 22 | --------------------------------------------------------------------------------