├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bugreport.md │ ├── crashreport.md │ ├── feature_request.md │ └── featurerequest.md ├── .gitignore ├── LICENSE ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── SampleScripts │ ├── SampleData │ │ ├── proxmark3-dictionaries.lst │ │ └── sample-keys.lst │ ├── apdu-exchange.sh │ ├── chameleon-mini.sh │ ├── example-syntax.sh │ ├── example-syntax2.sh │ ├── ndef-formats.sh │ ├── nfc-anticol.sh │ ├── string-handling.sh │ └── unit-tests.sh │ ├── appIconsBase │ ├── chameleon_app_icon_round-playstore.png │ ├── chameleon_app_icon_round-playstore_paid_flavor.png │ └── chameleon_app_icon_round_paid-playstore.png │ ├── java │ └── com │ │ └── maxieds │ │ └── chameleonminilivedebugger │ │ ├── ActivityPermissions.java │ │ ├── AndroidFileChooser.java │ │ ├── AndroidLogger.java │ │ ├── AndroidSettingsStorage.java │ │ ├── ApduGUITools.java │ │ ├── ApduUtils.java │ │ ├── BluetoothBLEInterface.java │ │ ├── BluetoothBroadcastReceiver.java │ │ ├── BluetoothGattConnector.java │ │ ├── BluetoothUtils.java │ │ ├── ChameleonCommands.java │ │ ├── ChameleonConfigSlot.java │ │ ├── ChameleonIO.java │ │ ├── ChameleonLogUtils.java │ │ ├── ChameleonMiniLiveDebuggerActivity.java │ │ ├── ChameleonMiniLiveDebuggerApplication.java │ │ ├── ChameleonPeripherals.java │ │ ├── ChameleonSerialIOInterface.java │ │ ├── ChameleonSettings.java │ │ ├── CrashReportActivity.java │ │ ├── ExportTools.java │ │ ├── ExternalFileIO.java │ │ ├── GUILogUtils.java │ │ ├── LiveLoggerActivity.java │ │ ├── LogEntryBase.java │ │ ├── LogEntryMetadataRecord.java │ │ ├── LogEntryUI.java │ │ ├── MainActivityNavActions.java │ │ ├── ScriptingAPI │ │ ├── ChameleonIOHandler.java │ │ ├── ChameleonScriptErrorListener.java │ │ ├── ChameleonScriptLexer.g4 │ │ ├── ChameleonScriptParser.g4 │ │ ├── ChameleonScriptVisitorExtended.java │ │ ├── ChameleonScripting.java │ │ ├── ScriptingBreakPoint.java │ │ ├── ScriptingConfig.java │ │ ├── ScriptingExceptions.java │ │ ├── ScriptingFileIO.java │ │ ├── ScriptingFunctions.java │ │ ├── ScriptingGUIConsole.java │ │ ├── ScriptingGUIMain.java │ │ ├── ScriptingTypes.java │ │ └── ScriptingUtils.java │ │ ├── SerialIOReceiver.java │ │ ├── SerialUSBInterface.java │ │ ├── TabFragment.java │ │ ├── TabFragmentPagerAdapter.java │ │ ├── ThemesConfiguration.java │ │ ├── UIDCommands.java │ │ ├── UITabUtils.java │ │ └── Utils.java │ └── res │ ├── drawable-hdpi │ └── chameleonicon_about64_roundicon.webp │ ├── drawable-mdpi │ └── chameleonicon_about64_roundicon.webp │ ├── drawable-xhdpi │ └── chameleonicon_about64_roundicon.webp │ ├── drawable-xxhdpi │ └── chameleonicon_about64_roundicon.webp │ ├── drawable-xxxhdpi │ └── chameleonicon_about64_roundicon.webp │ ├── drawable │ ├── abc16.webp │ ├── activity_annotation24.webp │ ├── af24.webp │ ├── android_phone_logo24.webp │ ├── apdubullet16.webp │ ├── atqaicon24.webp │ ├── batteryicon24.webp │ ├── bidirectional_sniffing_icon24.webp │ ├── binary_shell_file_icon.webp │ ├── binaryfile2.webp │ ├── binarymobile24.webp │ ├── binarysearch24.webp │ ├── binfile24.webp │ ├── blankchip24.webp │ ├── bluetooth16.webp │ ├── bluetooth_icon24.webp │ ├── brainchip.webp │ ├── breakpoint_active_icon24.webp │ ├── breakpoint_disabled_icon24.webp │ ├── breakpoint_enabled_icon24.webp │ ├── breakpoint_gui_minus_remove16.webp │ ├── broadcastantenna24.webp │ ├── bug.webp │ ├── buttonmy24.webp │ ├── calibrate24.webp │ ├── card24v6.webp │ ├── card24v8.webp │ ├── card24v9.webp │ ├── cardicon24.webp │ ├── chameleon_app_icon_round_background.xml │ ├── chameleon_app_icon_round_paid_background.xml │ ├── chameleon_device_logo24.webp │ ├── chameleon_device_profile_annotation24.webp │ ├── chameleon_type_logo24.webp │ ├── chameleonicon32_atlanta.webp │ ├── chameleonicon32_desfire.webp │ ├── chameleonicon32_redmond.webp │ ├── chameleonicon32_winter.webp │ ├── chameleonicon_about64_roundicon.webp │ ├── chameleonlogo32_black.webp │ ├── chameleonlogo32_chicky.webp │ ├── chameleonlogo32_desert_sunshine.webp │ ├── chameleonlogo32_frosty.webp │ ├── chameleonlogo32_linuxgob.webp │ ├── chameleonlogo32_purple.webp │ ├── chameleonlogo32_rainbow.webp │ ├── chameleonlogo32_rainbow2.webp │ ├── chameleonlogo32_red.webp │ ├── chameleonlogo32_sunshine.webp │ ├── chameleonlogo32_teal.webp │ ├── checkbox16.webp │ ├── checkbox_event24.webp │ ├── chip24v1.webp │ ├── chip24v10.webp │ ├── chip24v11.webp │ ├── chip24v12.webp │ ├── chip24v13.webp │ ├── chip24v14.webp │ ├── chip24v15.webp │ ├── chip24v2.webp │ ├── chip24v3.webp │ ├── chip24v4.webp │ ├── chip24v5.webp │ ├── chip24v8.webp │ ├── chipbrain2.webp │ ├── circlebutton32.webp │ ├── clear_all_icon24.png │ ├── cleardown24.webp │ ├── clearicon24.webp │ ├── clearmy24.webp │ ├── clone.webp │ ├── clone24.webp │ ├── coding2.webp │ ├── connect_button_logo24.webp │ ├── connection_status_logo24.webp │ ├── console16.webp │ ├── convergence24.webp │ ├── copy24.webp │ ├── copy_stack_trace_icon24.png │ ├── copysquare16.webp │ ├── crash_report_activity_toolbar_icon_green.webp │ ├── crash_report_bug_icon24_green.webp │ ├── datestamp_icon24.png │ ├── desfire_df_folder24.webp │ ├── device_board_logo24.webp │ ├── dipswitch24.webp │ ├── disable_all_toggle_icon24.webp │ ├── disclaimer_stmt_icon24.webp │ ├── disconnect_button_logo24.webp │ ├── dooricon24.webp │ ├── dotdotdotbubble24.webp │ ├── download_file_icon24.webp │ ├── dump_mfu24.webp │ ├── dumpfile24.webp │ ├── dumpmfuchip24.webp │ ├── enable_all_toggle_icon24.webp │ ├── enterdata24.webp │ ├── erroricon24.webp │ ├── export24.webp │ ├── exportarrow16.webp │ ├── field16.webp │ ├── file_basename_icon24.webp │ ├── file_picker_icon24_bin.webp │ ├── file_picker_icon24_hidden.webp │ ├── file_picker_icon24_log.webp │ ├── file_picker_icon24_sh.webp │ ├── file_picker_icon24_txt.webp │ ├── filepicker_cancel_button_x_icon24.webp │ ├── filepicker_done_button_check_icon24.webp │ ├── filepicker_folder_icon32.webp │ ├── filepicker_generic_file_icon32.webp │ ├── filepicker_hidden_file_icon32.webp │ ├── filepicker_named_folder_camera_icon32.webp │ ├── filepicker_named_folder_downloads_icon32.webp │ ├── filepicker_named_folder_images_icon32.webp │ ├── filepicker_named_folder_media_icon32.webp │ ├── filepicker_named_folder_recents_icon32.webp │ ├── filepicker_named_folder_screenshots_icon32.webp │ ├── filepicker_named_folder_sdcard_icon32.webp │ ├── filepicker_named_folder_user_home_icon32.webp │ ├── filepicker_nav_back_button_icon32.webp │ ├── filepicker_toolbar_logo_icon.png │ ├── filesystem16.webp │ ├── fingerprintq24.webp │ ├── firmwareicon24.webp │ ├── hashmark16.webp │ ├── hide24.webp │ ├── highlight16.webp │ ├── home_annotation24.webp │ ├── idcard24.webp │ ├── idcard3.webp │ ├── incoming16v2.webp │ ├── incoming_arrow16.webp │ ├── info_icon24.webp │ ├── infobubble16.webp │ ├── iso24.webp │ ├── keyword24.webp │ ├── kill_script_icon24.webp │ ├── known16.webp │ ├── ledgreen24.webp │ ├── ledred24.webp │ ├── locate_scripts24.webp │ ├── location24.webp │ ├── log24.webp │ ├── logclear24.webp │ ├── logstore24.webp │ ├── mailicon16.webp │ ├── menucheck48.webp │ ├── mfdesfire_tag_label.webp │ ├── mfdesfire_terminal_cmd_icon24.webp │ ├── mifare_cla_mf_folder24.webp │ ├── modemplug16.webp │ ├── msgbubble24.webp │ ├── notes16.webp │ ├── num12316.webp │ ├── onfoot_annotation24.png │ ├── open_folder_icon24.webp │ ├── outgoing16v2.webp │ ├── outgoing_arrow16.webp │ ├── padlock24locked.webp │ ├── pause_script_icon24.webp │ ├── peripheral16.webp │ ├── phone24.webp │ ├── phonebubble24.webp │ ├── plus_append_icon24.webp │ ├── plus_duplicate_marker16.webp │ ├── powaction24.webp │ ├── preserve_all_icon24.webp │ ├── preserve_breakpoint_icon24.webp │ ├── programmer2.webp │ ├── qr.webp │ ├── querydefaults16.webp │ ├── question16.webp │ ├── randombytes24.webp │ ├── readonly16.webp │ ├── rectbutton32.webp │ ├── reset24.webp │ ├── restart_cmld_icon24.webp │ ├── restricted_length_icon24.webp │ ├── rssi24.webp │ ├── run_script_button_icon24.webp │ ├── run_script_icon24.png │ ├── sakicon24.webp │ ├── scripting_envvar_icon.webp │ ├── scripting_folder_icon.webp │ ├── scripting_output_icon_bkpt16.png │ ├── scripting_output_icon_cmdresp16_v1.png │ ├── scripting_output_icon_error16.png │ ├── scripting_output_icon_info16.png │ ├── scripting_output_icon_summary16_v1.png │ ├── scripting_runtime_settings_icon.webp │ ├── sdcard16.webp │ ├── searchapdu24.webp │ ├── searchbidir24.webp │ ├── searchicon16.webp │ ├── searchicon24.webp │ ├── searchparams16.webp │ ├── searchresults16.webp │ ├── send_new_issue_report_icon24.webp │ ├── sendarrow24v2.webp │ ├── serial_id_logo24.webp │ ├── serial_port_icon24.webp │ ├── set_breakpoint_icon24.png │ ├── settings16.webp │ ├── settingsgears24.webp │ ├── shareicon16.webp │ ├── signalbars1.png │ ├── signalbars2.png │ ├── signalbars3.png │ ├── signalbars4.png │ ├── signalbars5.webp │ ├── signalicon24.webp │ ├── slot_config_uid24.webp │ ├── slot_memory_size24.webp │ ├── slot_off.webp │ ├── slot_on.webp │ ├── squarebutton32.webp │ ├── stack_trace_header_icon.webp │ ├── statusdownload16.png │ ├── statusicon24.webp │ ├── statusnewmsg16.webp │ ├── statusupload16.png │ ├── statusxfer16.png │ ├── statusxferfailed16.webp │ ├── step_script_icon24.webp │ ├── store24.webp │ ├── systick24.webp │ ├── systick_annotation24.webp │ ├── tab_export_icon48.webp │ ├── tab_logging_icon48.webp │ ├── tab_scripting_icon48.webp │ ├── tab_settings_icon48.webp │ ├── tab_tools_icon48.webp │ ├── textfile24.webp │ ├── themecheck24.webp │ ├── thememarker24.webp │ ├── timeout_timer_icon24.png │ ├── todo26.webp │ ├── togglebox_icon24.webp │ ├── toolbar_icon16_codec_rx.webp │ ├── toolbar_info_icon16.webp │ ├── toolbar_paused_icon16.webp │ ├── toolbar_theme_settings_icon16.webp │ ├── trash_can_icon24.webp │ ├── twocircbutton32.webp │ ├── uididentifier16.webp │ ├── uidlast24.webp │ ├── uncheckicon24.webp │ ├── under_construction.webp │ ├── unlock24.webp │ ├── unlock24v2.webp │ ├── uploadbutton16.webp │ ├── uploaddownload24.webp │ ├── usb_icon24.webp │ ├── usbconnected16.webp │ ├── usbdisconnected16.webp │ ├── user24v1.webp │ ├── user24v2.webp │ ├── user24v3.webp │ ├── user24v4.webp │ ├── user24v5.webp │ ├── user24v6.webp │ ├── usericon24.webp │ ├── vending24.webp │ ├── versionmy24.webp │ ├── voltageicon24.webp │ ├── welcome_icon24.webp │ ├── wifibc24.webp │ ├── work_annotation24.webp │ ├── xfer16.webp │ └── xmltag24.webp │ ├── layout │ ├── activity_crash_report.xml │ ├── activity_live_logger.xml │ ├── apdu_search_item.xml │ ├── config_tab_connect.xml │ ├── config_tab_general_settings.xml │ ├── config_tab_logging.xml │ ├── config_tab_scripting.xml │ ├── export_tab_clone.xml │ ├── export_tab_upload_download.xml │ ├── log_entry_ui.xml │ ├── log_metadata_record.xml │ ├── log_tab_export_logs.xml │ ├── log_tab_logs.xml │ ├── log_tab_logtools.xml │ ├── log_tab_search.xml │ ├── scripting_console_record_cmdresp.xml │ ├── scripting_console_record_entry_base.xml │ ├── scripting_console_record_textinfomsg.xml │ ├── scripting_gui_breakpoint_entry.xml │ ├── scripting_tab_console_view.xml │ ├── scripting_tab_load_import.xml │ ├── slot_sublayout.xml │ ├── tab_menu_item_template.xml │ ├── tab_under_construction.xml │ ├── theme_config.xml │ ├── tools_tab_apdu.xml │ ├── tools_tab_commands.xml │ ├── tools_tab_peripherals.xml │ ├── tools_tab_slots.xml │ └── tools_tab_tag_config.xml │ ├── mipmap-anydpi-v26 │ ├── chameleon_app_icon_round.xml │ ├── chameleon_app_icon_round_paid.xml │ ├── chameleon_app_icon_round_paid_round.xml │ └── chameleon_app_icon_round_round.xml │ ├── mipmap-hdpi │ ├── chameleon_app_icon_round.png │ ├── chameleon_app_icon_round_foreground.png │ ├── chameleon_app_icon_round_paid.png │ ├── chameleon_app_icon_round_paid_foreground.png │ ├── chameleon_app_icon_round_paid_round.png │ └── chameleon_app_icon_round_round.png │ ├── mipmap-mdpi │ ├── chameleon_app_icon_round.png │ ├── chameleon_app_icon_round_foreground.png │ ├── chameleon_app_icon_round_paid.png │ ├── chameleon_app_icon_round_paid_foreground.png │ ├── chameleon_app_icon_round_paid_round.png │ └── chameleon_app_icon_round_round.png │ ├── mipmap-xhdpi │ ├── chameleon_app_icon_round.png │ ├── chameleon_app_icon_round_foreground.png │ ├── chameleon_app_icon_round_paid.png │ ├── chameleon_app_icon_round_paid_foreground.png │ ├── chameleon_app_icon_round_paid_round.png │ └── chameleon_app_icon_round_round.png │ ├── mipmap-xxhdpi │ ├── chameleon_app_icon_round.png │ ├── chameleon_app_icon_round_foreground.png │ ├── chameleon_app_icon_round_paid.png │ ├── chameleon_app_icon_round_paid_foreground.png │ ├── chameleon_app_icon_round_paid_round.png │ └── chameleon_app_icon_round_round.png │ ├── mipmap-xxxhdpi │ ├── chameleon_app_icon_round.png │ ├── chameleon_app_icon_round_foreground.png │ ├── chameleon_app_icon_round_paid.png │ ├── chameleon_app_icon_round_paid_foreground.png │ ├── chameleon_app_icon_round_paid_round.png │ └── chameleon_app_icon_round_round.png │ ├── raw │ ├── common_ins │ ├── desfire_ins │ ├── desfire_status │ ├── detailed_common_ins │ ├── em4233_example.dmp │ ├── mct_extended_keys.lst │ ├── mfc1k_random_content_fixed_keys │ ├── mfc4k_random_content_fixed_keys │ ├── mfdesfire.dmp │ ├── mifare_classic_1k │ ├── mifare_ultralight │ └── response_codes_status │ ├── values │ ├── attr.xml │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ ├── chameleon_bluetooth_device_filter.xml │ └── chameleon_usb_device_filter.xml ├── gradle.properties ├── gradle └── wrapper │ └── gradle-wrapper.properties ├── local.properties └── settings.gradle /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bugreport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/.github/ISSUE_TEMPLATE/bugreport.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/crashreport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/.github/ISSUE_TEMPLATE/crashreport.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/featurerequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/.github/ISSUE_TEMPLATE/featurerequest.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/LICENSE -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/SampleScripts/SampleData/proxmark3-dictionaries.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/SampleScripts/SampleData/proxmark3-dictionaries.lst -------------------------------------------------------------------------------- /app/src/main/SampleScripts/SampleData/sample-keys.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/SampleScripts/SampleData/sample-keys.lst -------------------------------------------------------------------------------- /app/src/main/SampleScripts/apdu-exchange.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/SampleScripts/chameleon-mini.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/SampleScripts/example-syntax.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/SampleScripts/example-syntax.sh -------------------------------------------------------------------------------- /app/src/main/SampleScripts/example-syntax2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/SampleScripts/example-syntax2.sh -------------------------------------------------------------------------------- /app/src/main/SampleScripts/ndef-formats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/SampleScripts/ndef-formats.sh -------------------------------------------------------------------------------- /app/src/main/SampleScripts/nfc-anticol.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/SampleScripts/nfc-anticol.sh -------------------------------------------------------------------------------- /app/src/main/SampleScripts/string-handling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/SampleScripts/string-handling.sh -------------------------------------------------------------------------------- /app/src/main/SampleScripts/unit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/SampleScripts/unit-tests.sh -------------------------------------------------------------------------------- /app/src/main/appIconsBase/chameleon_app_icon_round-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/appIconsBase/chameleon_app_icon_round-playstore.png -------------------------------------------------------------------------------- /app/src/main/appIconsBase/chameleon_app_icon_round-playstore_paid_flavor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/appIconsBase/chameleon_app_icon_round-playstore_paid_flavor.png -------------------------------------------------------------------------------- /app/src/main/appIconsBase/chameleon_app_icon_round_paid-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/appIconsBase/chameleon_app_icon_round_paid-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ActivityPermissions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ActivityPermissions.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/AndroidFileChooser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/AndroidFileChooser.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/AndroidLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/AndroidLogger.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/AndroidSettingsStorage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/AndroidSettingsStorage.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ApduGUITools.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ApduGUITools.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ApduUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ApduUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/BluetoothBLEInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/BluetoothBLEInterface.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/BluetoothBroadcastReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/BluetoothBroadcastReceiver.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/BluetoothGattConnector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/BluetoothGattConnector.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/BluetoothUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/BluetoothUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ChameleonCommands.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ChameleonCommands.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ChameleonConfigSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ChameleonConfigSlot.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ChameleonIO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ChameleonIO.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ChameleonLogUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ChameleonLogUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ChameleonMiniLiveDebuggerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ChameleonMiniLiveDebuggerActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ChameleonMiniLiveDebuggerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ChameleonMiniLiveDebuggerApplication.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ChameleonPeripherals.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ChameleonPeripherals.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ChameleonSerialIOInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ChameleonSerialIOInterface.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ChameleonSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ChameleonSettings.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/CrashReportActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/CrashReportActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ExportTools.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ExportTools.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ExternalFileIO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ExternalFileIO.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/GUILogUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/GUILogUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/LiveLoggerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/LiveLoggerActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/LogEntryBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/LogEntryBase.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/LogEntryMetadataRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/LogEntryMetadataRecord.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/LogEntryUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/LogEntryUI.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/MainActivityNavActions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/MainActivityNavActions.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ChameleonIOHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ChameleonIOHandler.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ChameleonScriptErrorListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ChameleonScriptErrorListener.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ChameleonScriptLexer.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ChameleonScriptLexer.g4 -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ChameleonScriptParser.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ChameleonScriptParser.g4 -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ChameleonScriptVisitorExtended.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ChameleonScriptVisitorExtended.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ChameleonScripting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ChameleonScripting.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ScriptingBreakPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ScriptingBreakPoint.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ScriptingConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ScriptingConfig.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ScriptingExceptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ScriptingExceptions.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ScriptingFileIO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ScriptingFileIO.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ScriptingFunctions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ScriptingFunctions.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ScriptingGUIConsole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ScriptingGUIConsole.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ScriptingGUIMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ScriptingGUIMain.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ScriptingTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ScriptingTypes.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ScriptingUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ScriptingAPI/ScriptingUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/SerialIOReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/SerialIOReceiver.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/SerialUSBInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/SerialUSBInterface.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/TabFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/TabFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/TabFragmentPagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/TabFragmentPagerAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/ThemesConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/ThemesConfiguration.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/UIDCommands.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/UIDCommands.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/UITabUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/UITabUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/maxieds/chameleonminilivedebugger/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/java/com/maxieds/chameleonminilivedebugger/Utils.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/chameleonicon_about64_roundicon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable-hdpi/chameleonicon_about64_roundicon.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/chameleonicon_about64_roundicon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable-mdpi/chameleonicon_about64_roundicon.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/chameleonicon_about64_roundicon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable-xhdpi/chameleonicon_about64_roundicon.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/chameleonicon_about64_roundicon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable-xxhdpi/chameleonicon_about64_roundicon.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/chameleonicon_about64_roundicon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable-xxxhdpi/chameleonicon_about64_roundicon.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/abc16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/abc16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/activity_annotation24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/activity_annotation24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/af24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/af24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/android_phone_logo24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/android_phone_logo24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/apdubullet16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/apdubullet16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/atqaicon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/atqaicon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/batteryicon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/batteryicon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/bidirectional_sniffing_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/bidirectional_sniffing_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/binary_shell_file_icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/binary_shell_file_icon.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/binaryfile2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/binaryfile2.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/binarymobile24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/binarymobile24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/binarysearch24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/binarysearch24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/binfile24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/binfile24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/blankchip24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/blankchip24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/bluetooth16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/bluetooth16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/bluetooth_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/bluetooth_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/brainchip.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/brainchip.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/breakpoint_active_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/breakpoint_active_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/breakpoint_disabled_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/breakpoint_disabled_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/breakpoint_enabled_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/breakpoint_enabled_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/breakpoint_gui_minus_remove16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/breakpoint_gui_minus_remove16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/broadcastantenna24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/broadcastantenna24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/bug.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/bug.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/buttonmy24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/buttonmy24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/calibrate24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/calibrate24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/card24v6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/card24v6.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/card24v8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/card24v8.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/card24v9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/card24v9.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/cardicon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/cardicon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chameleon_app_icon_round_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chameleon_app_icon_round_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/chameleon_app_icon_round_paid_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chameleon_app_icon_round_paid_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/chameleon_device_logo24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chameleon_device_logo24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chameleon_device_profile_annotation24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chameleon_device_profile_annotation24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chameleon_type_logo24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chameleon_type_logo24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chameleonicon32_atlanta.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chameleonicon32_atlanta.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chameleonicon32_desfire.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chameleonicon32_desfire.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chameleonicon32_redmond.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chameleonicon32_redmond.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chameleonicon32_winter.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chameleonicon32_winter.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chameleonicon_about64_roundicon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chameleonicon_about64_roundicon.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chameleonlogo32_black.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chameleonlogo32_black.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chameleonlogo32_chicky.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chameleonlogo32_chicky.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chameleonlogo32_desert_sunshine.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chameleonlogo32_desert_sunshine.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chameleonlogo32_frosty.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chameleonlogo32_frosty.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chameleonlogo32_linuxgob.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chameleonlogo32_linuxgob.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chameleonlogo32_purple.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chameleonlogo32_purple.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chameleonlogo32_rainbow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chameleonlogo32_rainbow.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chameleonlogo32_rainbow2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chameleonlogo32_rainbow2.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chameleonlogo32_red.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chameleonlogo32_red.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chameleonlogo32_sunshine.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chameleonlogo32_sunshine.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chameleonlogo32_teal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chameleonlogo32_teal.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/checkbox16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/checkbox16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/checkbox_event24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/checkbox_event24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chip24v1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chip24v1.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chip24v10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chip24v10.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chip24v11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chip24v11.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chip24v12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chip24v12.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chip24v13.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chip24v13.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chip24v14.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chip24v14.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chip24v15.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chip24v15.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chip24v2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chip24v2.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chip24v3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chip24v3.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chip24v4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chip24v4.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chip24v5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chip24v5.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chip24v8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chip24v8.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/chipbrain2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/chipbrain2.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/circlebutton32.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/circlebutton32.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/clear_all_icon24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/clear_all_icon24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/cleardown24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/cleardown24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/clearicon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/clearicon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/clearmy24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/clearmy24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/clone.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/clone.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/clone24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/clone24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/coding2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/coding2.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/connect_button_logo24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/connect_button_logo24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/connection_status_logo24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/connection_status_logo24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/console16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/console16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/convergence24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/convergence24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/copy24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/copy24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/copy_stack_trace_icon24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/copy_stack_trace_icon24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/copysquare16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/copysquare16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/crash_report_activity_toolbar_icon_green.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/crash_report_activity_toolbar_icon_green.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/crash_report_bug_icon24_green.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/crash_report_bug_icon24_green.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/datestamp_icon24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/datestamp_icon24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/desfire_df_folder24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/desfire_df_folder24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/device_board_logo24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/device_board_logo24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/dipswitch24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/dipswitch24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/disable_all_toggle_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/disable_all_toggle_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/disclaimer_stmt_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/disclaimer_stmt_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/disconnect_button_logo24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/disconnect_button_logo24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/dooricon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/dooricon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/dotdotdotbubble24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/dotdotdotbubble24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/download_file_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/download_file_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/dump_mfu24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/dump_mfu24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/dumpfile24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/dumpfile24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/dumpmfuchip24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/dumpmfuchip24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/enable_all_toggle_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/enable_all_toggle_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/enterdata24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/enterdata24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/erroricon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/erroricon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/export24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/export24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/exportarrow16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/exportarrow16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/field16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/field16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/file_basename_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/file_basename_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/file_picker_icon24_bin.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/file_picker_icon24_bin.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/file_picker_icon24_hidden.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/file_picker_icon24_hidden.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/file_picker_icon24_log.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/file_picker_icon24_log.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/file_picker_icon24_sh.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/file_picker_icon24_sh.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/file_picker_icon24_txt.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/file_picker_icon24_txt.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/filepicker_cancel_button_x_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/filepicker_cancel_button_x_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/filepicker_done_button_check_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/filepicker_done_button_check_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/filepicker_folder_icon32.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/filepicker_folder_icon32.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/filepicker_generic_file_icon32.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/filepicker_generic_file_icon32.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/filepicker_hidden_file_icon32.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/filepicker_hidden_file_icon32.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/filepicker_named_folder_camera_icon32.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/filepicker_named_folder_camera_icon32.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/filepicker_named_folder_downloads_icon32.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/filepicker_named_folder_downloads_icon32.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/filepicker_named_folder_images_icon32.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/filepicker_named_folder_images_icon32.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/filepicker_named_folder_media_icon32.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/filepicker_named_folder_media_icon32.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/filepicker_named_folder_recents_icon32.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/filepicker_named_folder_recents_icon32.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/filepicker_named_folder_screenshots_icon32.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/filepicker_named_folder_screenshots_icon32.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/filepicker_named_folder_sdcard_icon32.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/filepicker_named_folder_sdcard_icon32.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/filepicker_named_folder_user_home_icon32.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/filepicker_named_folder_user_home_icon32.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/filepicker_nav_back_button_icon32.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/filepicker_nav_back_button_icon32.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/filepicker_toolbar_logo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/filepicker_toolbar_logo_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/filesystem16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/filesystem16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/fingerprintq24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/fingerprintq24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/firmwareicon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/firmwareicon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/hashmark16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/hashmark16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/hide24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/hide24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/highlight16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/highlight16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/home_annotation24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/home_annotation24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/idcard24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/idcard24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/idcard3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/idcard3.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/incoming16v2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/incoming16v2.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/incoming_arrow16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/incoming_arrow16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/info_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/info_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/infobubble16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/infobubble16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/iso24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/iso24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/keyword24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/keyword24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/kill_script_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/kill_script_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/known16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/known16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/ledgreen24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/ledgreen24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/ledred24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/ledred24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/locate_scripts24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/locate_scripts24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/location24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/location24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/log24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/log24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/logclear24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/logclear24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/logstore24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/logstore24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/mailicon16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/mailicon16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/menucheck48.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/menucheck48.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/mfdesfire_tag_label.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/mfdesfire_tag_label.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/mfdesfire_terminal_cmd_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/mfdesfire_terminal_cmd_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/mifare_cla_mf_folder24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/mifare_cla_mf_folder24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/modemplug16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/modemplug16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/msgbubble24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/msgbubble24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/notes16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/notes16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/num12316.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/num12316.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/onfoot_annotation24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/onfoot_annotation24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/open_folder_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/open_folder_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/outgoing16v2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/outgoing16v2.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/outgoing_arrow16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/outgoing_arrow16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/padlock24locked.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/padlock24locked.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/pause_script_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/pause_script_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/peripheral16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/peripheral16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/phone24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/phone24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/phonebubble24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/phonebubble24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/plus_append_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/plus_append_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/plus_duplicate_marker16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/plus_duplicate_marker16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/powaction24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/powaction24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/preserve_all_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/preserve_all_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/preserve_breakpoint_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/preserve_breakpoint_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/programmer2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/programmer2.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/qr.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/qr.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/querydefaults16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/querydefaults16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/question16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/question16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/randombytes24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/randombytes24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/readonly16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/readonly16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/rectbutton32.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/rectbutton32.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/reset24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/reset24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/restart_cmld_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/restart_cmld_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/restricted_length_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/restricted_length_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/rssi24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/rssi24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/run_script_button_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/run_script_button_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/run_script_icon24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/run_script_icon24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/sakicon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/sakicon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/scripting_envvar_icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/scripting_envvar_icon.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/scripting_folder_icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/scripting_folder_icon.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/scripting_output_icon_bkpt16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/scripting_output_icon_bkpt16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/scripting_output_icon_cmdresp16_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/scripting_output_icon_cmdresp16_v1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/scripting_output_icon_error16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/scripting_output_icon_error16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/scripting_output_icon_info16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/scripting_output_icon_info16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/scripting_output_icon_summary16_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/scripting_output_icon_summary16_v1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/scripting_runtime_settings_icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/scripting_runtime_settings_icon.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/sdcard16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/sdcard16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/searchapdu24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/searchapdu24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/searchbidir24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/searchbidir24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/searchicon16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/searchicon16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/searchicon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/searchicon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/searchparams16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/searchparams16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/searchresults16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/searchresults16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/send_new_issue_report_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/send_new_issue_report_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/sendarrow24v2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/sendarrow24v2.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/serial_id_logo24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/serial_id_logo24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/serial_port_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/serial_port_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/set_breakpoint_icon24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/set_breakpoint_icon24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/settings16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/settings16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/settingsgears24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/settingsgears24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/shareicon16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/shareicon16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/signalbars1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/signalbars1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/signalbars2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/signalbars2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/signalbars3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/signalbars3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/signalbars4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/signalbars4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/signalbars5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/signalbars5.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/signalicon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/signalicon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/slot_config_uid24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/slot_config_uid24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/slot_memory_size24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/slot_memory_size24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/slot_off.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/slot_off.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/slot_on.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/slot_on.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/squarebutton32.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/squarebutton32.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/stack_trace_header_icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/stack_trace_header_icon.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/statusdownload16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/statusdownload16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/statusicon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/statusicon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/statusnewmsg16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/statusnewmsg16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/statusupload16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/statusupload16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/statusxfer16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/statusxfer16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/statusxferfailed16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/statusxferfailed16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/step_script_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/step_script_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/store24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/store24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/systick24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/systick24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/systick_annotation24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/systick_annotation24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/tab_export_icon48.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/tab_export_icon48.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/tab_logging_icon48.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/tab_logging_icon48.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/tab_scripting_icon48.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/tab_scripting_icon48.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/tab_settings_icon48.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/tab_settings_icon48.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/tab_tools_icon48.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/tab_tools_icon48.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/textfile24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/textfile24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/themecheck24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/themecheck24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/thememarker24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/thememarker24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/timeout_timer_icon24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/timeout_timer_icon24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/todo26.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/todo26.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/togglebox_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/togglebox_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/toolbar_icon16_codec_rx.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/toolbar_icon16_codec_rx.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/toolbar_info_icon16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/toolbar_info_icon16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/toolbar_paused_icon16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/toolbar_paused_icon16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/toolbar_theme_settings_icon16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/toolbar_theme_settings_icon16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/trash_can_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/trash_can_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/twocircbutton32.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/twocircbutton32.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/uididentifier16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/uididentifier16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/uidlast24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/uidlast24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/uncheckicon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/uncheckicon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/under_construction.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/under_construction.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/unlock24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/unlock24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/unlock24v2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/unlock24v2.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/uploadbutton16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/uploadbutton16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/uploaddownload24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/uploaddownload24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/usb_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/usb_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/usbconnected16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/usbconnected16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/usbdisconnected16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/usbdisconnected16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/user24v1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/user24v1.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/user24v2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/user24v2.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/user24v3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/user24v3.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/user24v4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/user24v4.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/user24v5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/user24v5.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/user24v6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/user24v6.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/usericon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/usericon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/vending24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/vending24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/versionmy24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/versionmy24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/voltageicon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/voltageicon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/welcome_icon24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/welcome_icon24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/wifibc24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/wifibc24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/work_annotation24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/work_annotation24.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/xfer16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/xfer16.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/xmltag24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/drawable/xmltag24.webp -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_crash_report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/activity_crash_report.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_live_logger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/activity_live_logger.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/apdu_search_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/apdu_search_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/config_tab_connect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/config_tab_connect.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/config_tab_general_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/config_tab_general_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/config_tab_logging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/config_tab_logging.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/config_tab_scripting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/config_tab_scripting.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/export_tab_clone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/export_tab_clone.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/export_tab_upload_download.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/export_tab_upload_download.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/log_entry_ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/log_entry_ui.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/log_metadata_record.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/log_metadata_record.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/log_tab_export_logs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/log_tab_export_logs.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/log_tab_logs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/log_tab_logs.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/log_tab_logtools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/log_tab_logtools.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/log_tab_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/log_tab_search.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/scripting_console_record_cmdresp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/scripting_console_record_cmdresp.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/scripting_console_record_entry_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/scripting_console_record_entry_base.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/scripting_console_record_textinfomsg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/scripting_console_record_textinfomsg.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/scripting_gui_breakpoint_entry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/scripting_gui_breakpoint_entry.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/scripting_tab_console_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/scripting_tab_console_view.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/scripting_tab_load_import.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/scripting_tab_load_import.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/slot_sublayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/slot_sublayout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/tab_menu_item_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/tab_menu_item_template.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/tab_under_construction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/tab_under_construction.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/theme_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/theme_config.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/tools_tab_apdu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/tools_tab_apdu.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/tools_tab_commands.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/tools_tab_commands.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/tools_tab_peripherals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/tools_tab_peripherals.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/tools_tab_slots.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/tools_tab_slots.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/tools_tab_tag_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/layout/tools_tab_tag_config.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/chameleon_app_icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-anydpi-v26/chameleon_app_icon_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/chameleon_app_icon_round_paid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-anydpi-v26/chameleon_app_icon_round_paid.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/chameleon_app_icon_round_paid_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-anydpi-v26/chameleon_app_icon_round_paid_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/chameleon_app_icon_round_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-anydpi-v26/chameleon_app_icon_round_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/chameleon_app_icon_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-hdpi/chameleon_app_icon_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/chameleon_app_icon_round_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-hdpi/chameleon_app_icon_round_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/chameleon_app_icon_round_paid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-hdpi/chameleon_app_icon_round_paid.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/chameleon_app_icon_round_paid_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-hdpi/chameleon_app_icon_round_paid_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/chameleon_app_icon_round_paid_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-hdpi/chameleon_app_icon_round_paid_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/chameleon_app_icon_round_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-hdpi/chameleon_app_icon_round_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/chameleon_app_icon_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-mdpi/chameleon_app_icon_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/chameleon_app_icon_round_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-mdpi/chameleon_app_icon_round_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/chameleon_app_icon_round_paid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-mdpi/chameleon_app_icon_round_paid.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/chameleon_app_icon_round_paid_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-mdpi/chameleon_app_icon_round_paid_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/chameleon_app_icon_round_paid_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-mdpi/chameleon_app_icon_round_paid_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/chameleon_app_icon_round_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-mdpi/chameleon_app_icon_round_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/chameleon_app_icon_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-xhdpi/chameleon_app_icon_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/chameleon_app_icon_round_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-xhdpi/chameleon_app_icon_round_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/chameleon_app_icon_round_paid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-xhdpi/chameleon_app_icon_round_paid.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/chameleon_app_icon_round_paid_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-xhdpi/chameleon_app_icon_round_paid_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/chameleon_app_icon_round_paid_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-xhdpi/chameleon_app_icon_round_paid_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/chameleon_app_icon_round_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-xhdpi/chameleon_app_icon_round_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/chameleon_app_icon_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-xxhdpi/chameleon_app_icon_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/chameleon_app_icon_round_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-xxhdpi/chameleon_app_icon_round_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/chameleon_app_icon_round_paid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-xxhdpi/chameleon_app_icon_round_paid.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/chameleon_app_icon_round_paid_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-xxhdpi/chameleon_app_icon_round_paid_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/chameleon_app_icon_round_paid_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-xxhdpi/chameleon_app_icon_round_paid_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/chameleon_app_icon_round_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-xxhdpi/chameleon_app_icon_round_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/chameleon_app_icon_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-xxxhdpi/chameleon_app_icon_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/chameleon_app_icon_round_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-xxxhdpi/chameleon_app_icon_round_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/chameleon_app_icon_round_paid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-xxxhdpi/chameleon_app_icon_round_paid.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/chameleon_app_icon_round_paid_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-xxxhdpi/chameleon_app_icon_round_paid_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/chameleon_app_icon_round_paid_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-xxxhdpi/chameleon_app_icon_round_paid_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/chameleon_app_icon_round_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/mipmap-xxxhdpi/chameleon_app_icon_round_round.png -------------------------------------------------------------------------------- /app/src/main/res/raw/common_ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/raw/common_ins -------------------------------------------------------------------------------- /app/src/main/res/raw/desfire_ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/raw/desfire_ins -------------------------------------------------------------------------------- /app/src/main/res/raw/desfire_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/raw/desfire_status -------------------------------------------------------------------------------- /app/src/main/res/raw/detailed_common_ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/raw/detailed_common_ins -------------------------------------------------------------------------------- /app/src/main/res/raw/em4233_example.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/raw/em4233_example.dmp -------------------------------------------------------------------------------- /app/src/main/res/raw/mct_extended_keys.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/raw/mct_extended_keys.lst -------------------------------------------------------------------------------- /app/src/main/res/raw/mfc1k_random_content_fixed_keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/raw/mfc1k_random_content_fixed_keys -------------------------------------------------------------------------------- /app/src/main/res/raw/mfc4k_random_content_fixed_keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/raw/mfc4k_random_content_fixed_keys -------------------------------------------------------------------------------- /app/src/main/res/raw/mfdesfire.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/raw/mfdesfire.dmp -------------------------------------------------------------------------------- /app/src/main/res/raw/mifare_classic_1k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/raw/mifare_classic_1k -------------------------------------------------------------------------------- /app/src/main/res/raw/mifare_ultralight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/raw/mifare_ultralight -------------------------------------------------------------------------------- /app/src/main/res/raw/response_codes_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/raw/response_codes_status -------------------------------------------------------------------------------- /app/src/main/res/values/attr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/values/attr.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/chameleon_bluetooth_device_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/xml/chameleon_bluetooth_device_filter.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/chameleon_usb_device_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/app/src/main/res/xml/chameleon_usb_device_filter.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxieds/ChameleonMiniLiveDebugger/HEAD/local.properties -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' --------------------------------------------------------------------------------