debug-bottle

2024-06-19 12:58
文章标签 debug bottle

本文主要是介绍debug-bottle,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

debug-bottle

项目地址: kiruto/debug-bottle
简介:Android Java / Kotlin 程序员开发调试工具。Debug Bottle 的所有功能均建立在 App 的 debug 版本中,不会对 release 版本产生任何影响。Debug Bottle 旨在提高开发效率,把控 App 质量。
更多: 作者    提 Bug    示例 APK   
标签:
kotlin- debug- 调试- 外挂-

build:created version:maven-central

���� 中文 / ����日本語 / ���� English

An Android debug / develop tools written using Kotlin language. All the features in Debug bottle are only available on debug build version with your app, it doesn't has an impact on release version.

  • CHANGELOG
  • TODO

Demo App is now available at Google Play:

Get it on Google Play

  

What can I do with Debug Bottle?

  • Simple OkHttp Sniffer
  • 3D preview an Activity with Scalpel
  • Simple shared preferences editor
  • Open strict mode any time
  • Catch crashes and get stacktrace log
  • Find leaks by using Leak Canary
  • Find UI Blocks by using Block Canary
  • Mock Activity or function entries in developing
OkHttp Sniffer

Enable "Network Listener" at Settings, then you can see all network traffics what requested by your app.

 

Scalpel Viewer

Enable "3D View", then you can view your Activity. When interaction is enabled the following gestures are supported:

  • Single touch: Controls the rotation of the model.
  • Two finger vertical pinch: Adjust zoom.
  • Two finger horizontal pinch: Adjust layer spacing.

 

Shared Preferences editor

Preview and edit the Shared Preferences of app more simply.

 

Strict Mode

Enable or disable Android strict mode at runtime. StrictMode is a developer tool which detects things you might be doing by accident and brings them to your attention so you can fix them. StrictMode is most commonly used to catch accidental disk or network access on the application's main thread, where UI operations are received and animations take place. For more information, see Android Developers.

Crash Log

List all crash stacktrace logs.

Leak Canary

Leak Canary is fully imported. Leak Canary is a memory leak detection library for Android and Java. More about using Leak Canary by visiting Leak Canary wiki.

Block Canary

Detect UI blocks at runtime.

 

Development Entries

Launch any Activity with custom Intents, or Runnable you want.

 

How do I use it?

After installing Debug Bottle Demo app, you'll find there are two app icons appears to launcher. Click bottle icon to run Debug Bottle.

Setting up

1. Configure your Gradle project

Add snapshot of maven central repository to primary Gradle file:

allprojects {repositories {...mavenCentral()}
}

Edit and add dependencies in your app module:

dependencies {debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.4'// Use this in your Java projectreleaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4'testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4'// Use this in your Kotlin projectreleaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4'testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4'compile 'com.android.support:appcompat-v7:23.2.0+'
}

Specially, Debug Bottle not only support API 23+, but also 22. To support API 22, please add dependencies like this:

dependencies {debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.4-support22'// Use this in your Java projectreleaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support22'testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support22'// Use this in your Kotlin projectreleaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support22'testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support22'compile 'com.android.support:appcompat-v7:22+'
}

To support API 23, add dependencies like this:

dependencies {debugCompile 'com.exyui.android:debug-bottle-runtime:1.0.4-support23'// Use this in your Java projectreleaseCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support23'testCompile 'com.exyui.android:debug-bottle-noop-java:1.0.4-support23'// Use this in your Kotlin projectreleaseCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support23'testCompile 'com.exyui.android:debug-bottle-noop-kotlin:1.0.4-support23'compile 'com.android.support:appcompat-v7:23+'
}
2. Edit Manifest

Add Debug Bottle main Activity in your Manifest:

<activityandroid:name="com.exyui.android.debugbottle.components.DTDrawerActivity"android:theme="@style/Theme.AppCompat.Light"android:label="The Name You Like"/>

The value of tag label, will display to your android launch pad.

3. Inject Debug Bottle into your Application

First, you may implement Block Canary Context:

public class AppBlockCanaryContext extends BlockCanaryContext {...}

Now you could inject Debug Bottle in your Application like:

public class MyApplication extends Application{@Overridepublic void onCreate() {super.onCreate();DTInstaller.install(this).setBlockCanary(new AppBlockCanaryContext(this)).setOkHttpClient(httpClient).setInjector("your.package.injector.ContentInjector").setPackageName("your.package").enable().run();}
}

Or if you use Kotlin, you can inject like:

class MyApplication: Application() {override fun onCreate() {super.onCreate()DTInstaller.install(this).setBlockCanary(AppBlockCanaryContext(this)).setOkHttpClient(httpClient).setInjector("your.package.injector.ContentInjector").setPackageName("your.package").enable().run()}
}
  • Leak Canary
  • Android Performance Monitor

License

Debug BottleCopyright 2016 Yuriel (http://exyui.com).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 athttp://www.apache.org/licenses/LICENSE-2.0Unless 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.

Debug Bottle required features are based on or derives from projects below:

  • Apache License 2.0
    • Android Performance Monitor
    • Leak Canary
    • Scalpel
    • Bubbles for Android
    • Takt

这篇关于debug-bottle的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1075098

相关文章

Goland debug失效详细解决步骤(合集)

《Golanddebug失效详细解决步骤(合集)》今天用Goland开发时,打断点,以debug方式运行,发现程序并没有断住,程序跳过了断点,直接运行结束,网上搜寻了大量文章,最后得以解决,特此在这... 目录Bug:Goland debug失效详细解决步骤【合集】情况一:Go或Goland架构不对情况二:

Nn criterions don’t compute the gradient w.r.t. targets error「pytorch」 (debug笔记)

Nn criterions don’t compute the gradient w.r.t. targets error「pytorch」 ##一、 缘由及解决方法 把这个pytorch-ddpg|github搬到jupyter notebook上运行时,出现错误Nn criterions don’t compute the gradient w.r.t. targets error。注:我用

idea 怎么调试debug

1、这里以一个web工程为例,点击图中按钮开始运行web工程。 2、设置断点 3、使用postman发送http请求 4、请求发送之后会自动跳到断点处,并且在断点之前会有数据结果显示 5、按F8 在 Debug 模式下,进入下一步,如果当前行断点是一个方法,则不进入当前方法体内,跳到下一条执行语句。 6、按F7在 Debug 模式下,进入下一步,如果当

02 Shell Script注释和debug

Shell Script注释和debug 一、ShellScript注释 ​ # 代表不解释不执行 ​ 语法:# # 创建myshell.sh文件[root@localhost ~]# vi myshell.sh # 写入内容#!/bin/bash# 打印hello world(正确)echo "hello world"echo "hello 2" # 注释2(正确)echo

Tomcat怎样用Debug模式启动

在加装了Tomcat插件的Eclipse中可以设置用Debug模式启动Tomcat,此时Tomcat以及Web应用中的日志都以最详细的级别输出。 但如果直接从命令行用“starup.sh”启动,则只有INFO和更高级别的日志被输出,其他的都过滤掉了。 怎样才能在命令行里以Debug模式启动Tomcat?         你可以用配置Tomcat支持

WebStorm用Debug模式调试Vue等前端项目

问题说明 开发前端时,一直很苦恼调试前端代码的麻烦。 简单的内容可以通过console.log()在控制台打印变量值,来验证预期结果。 涉及到稍复杂的逻辑,就需要在代码中侵入增加debugger,或者在浏览器中找到js文件,再手动添加断点。 非常的麻烦,而且浏览器中对变量的追踪功能也有限,同时我也一直好奇WebStorm中Debug启动方式的作用,今天研究了一下,果然WebStorm提供了更简

The `XXXUITests [Debug]` target overrides the `ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES` build......

出现的警告: [!] The `ColorInHeartUITests [Debug]` target overrides the `ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES` build setting defined in `Pods/Target Support Files/Pods-ColorInHeart-ColorInHeartUITests/Po

Debug跟Release区别

Debug和Release区别 Debug和Release区别  2011年10月17日   Debug和Release区别VC下Debug和Release区别   最近写代码过程中,发现 Debug 下运行正常,Release 下就会出现问题,百思不得其解,而Release 下又无法进行调试,于是只能采用printf方式逐步定位到问题所在处,才发现原来是给定的一个数组未初

Codewarrior中利用PE multilink下载程序debug时不能连接问题

现象:PC连接PE multilink然后连接单片机,mutilink上的与单片机的连接接口是正确的,但点击codewarrior中debug按钮,则会出现连接失败,如下图: 电脑端口也能识别 但就是不能连接。 解决方案:如下图点击[FAQ#29]然后进入, 按照这个界面给的解决方案去解决即可,重装一下驱动(此页面下面会给出相应的BDM驱动)

Android audio debug

dumpsys media.audio_flinger dumpsys media.audio_policy dumpsys audio