All Projects → liangjingkanji → debugkit

liangjingkanji / debugkit

Licence: Apache-2.0 license
🪲 Android开发调试悬浮窗口工具

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to debugkit

dora
🌟Dora is an open-source framework focused on usability and flexibility.It is widely used to collect crash information and print variable values.It is very powerful and useful to debug android program. It is customizable and extensible in the simpleton-like ways. Dora是一个专注于易用性和灵活性的开源框架,它被广泛用于收集崩溃信息和打印变量值,对调试Android程序非常强大和有用,傻瓜式的自定义和扩展。
Stars: ✭ 15 (-65.91%)
Mutual labels:  debug
sdebug
Xdebug — Step Debugger and Debugging Aid for PHP
Stars: ✭ 263 (+497.73%)
Mutual labels:  debug
XYDebugView
XYDebugView is debug tool to draw the all view's frame in device screen and show it by 2d/3d style like reveal did.
Stars: ✭ 101 (+129.55%)
Mutual labels:  debug
react-native-debug-server-host
React Native Debug server host for iOS
Stars: ✭ 45 (+2.27%)
Mutual labels:  debug
object-gui
Object GUI - Javascript Object GUI Editor
Stars: ✭ 51 (+15.91%)
Mutual labels:  debug
PBD
🖨️🐞 Printf Based Debugger, a user-friendly C debugger
Stars: ✭ 52 (+18.18%)
Mutual labels:  debug
CodeBaseManager
Multi-langage CLI tool to manage your code base
Stars: ✭ 11 (-75%)
Mutual labels:  debug
laravel-live-tinker
Laravel tinker in your browser with code highlight
Stars: ✭ 51 (+15.91%)
Mutual labels:  debug
golang-debugger-book
From a debugger's view, Let's explore the computer world! How does compiler, linker and debugger coordinate with each other around the program written in specific programming language? How does a debugger work? If we develop a debugger for go programming language, we must master go type system, runtime... and some Operating System internals. OK,…
Stars: ✭ 49 (+11.36%)
Mutual labels:  debug
dbg-macro
A set of dbg(…) macros for C
Stars: ✭ 53 (+20.45%)
Mutual labels:  debug
sendmessage
SendMessage is a little tool to send Windows messages to any window.
Stars: ✭ 93 (+111.36%)
Mutual labels:  debug
flutter debug drawer
Adds a side menu in all screens with debug information. You can decide which information to show and create new modules to include more information.
Stars: ✭ 26 (-40.91%)
Mutual labels:  debug
SmartDump
SmartDump - an exception and memory dump capture utility
Stars: ✭ 17 (-61.36%)
Mutual labels:  debug
ts-transform-react-jsx-source
TypeScript AST Transformer that adds source file and line number to JSX elements
Stars: ✭ 12 (-72.73%)
Mutual labels:  debug
FWDebug
iOS调试库,支持iOS11+,无需添加任何代码,方便iOS开发和测试。 iOS debugging library, support for iOS11 +, without adding any code to facilitate iOS development and testing.
Stars: ✭ 49 (+11.36%)
Mutual labels:  debug
react-native-debug-console
A network and console debug component and modal for react native purely in JavaScript
Stars: ✭ 17 (-61.36%)
Mutual labels:  debug
jsdom-devtools-formatter
Make jsdom elements look like real DOM elements in Chrome Devtools console
Stars: ✭ 40 (-9.09%)
Mutual labels:  debug
docker-pudb
Debug Python code within a Docker container remotely from your terminal using pudb
Stars: ✭ 18 (-59.09%)
Mutual labels:  debug
kokkos-tools
Kokkos C++ Performance Portability Programming EcoSystem: Profiling and Debugging Tools
Stars: ✭ 52 (+18.18%)
Mutual labels:  debug
knex-tiny-logger
Zero config queries logger for knex
Stars: ✭ 24 (-45.45%)
Mutual labels:  debug

1600

一个调试悬浮窗

使用文档 | 备用访问

功能

  • 配置按钮, 按钮数量和按钮显示文本
  • 亮色|暗色主题模式
  • 移动|关闭|最小化悬浮窗
  • 打印日志到悬浮窗上
  • Kotlin DSL
  • 悬浮窗跟随Activity/Fragment生命周期

安装

添加远程仓库根据创建项目的 Android Studio 版本有所不同

Android Studio Arctic Fox以下创建的项目 在项目根目录的 build.gradle 添加仓库

allprojects {
    repositories {
        // ...
        maven { url 'https://jitpack.io' }
    }
}

Android Studio Arctic Fox以上创建的项目 在项目根目录的 settings.gradle 添加仓库

dependencyResolutionManagement {
    repositories {
        // ...
        maven { url 'https://jitpack.io' }
    }
}

然后在 module 的 build.gradle 添加依赖框架

implementation 'com.github.liangjingkanji:debugkit:1.2.11'

License

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].