All Projects → rafaco → InAppDevTools

rafaco / InAppDevTools

Licence: Apache-2.0 license
Android library with a collection of tools for debugging, inspecting and reporting from within your own app

Programming Languages

java
68154 projects - #9 most used programming language
groovy
2714 projects
CSS
56736 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to InAppDevTools

Nim
Streamline Your Node.js Debugging Workflow with Chromium (Chrome, Edge, More) DevTools.
Stars: ✭ 168 (+546.15%)
Mutual labels:  debugging, inspector, devtools
Portal
A clojure tool to navigate through your data.
Stars: ✭ 239 (+819.23%)
Mutual labels:  inspector, devtools
devtools-tips
A collection of useful cross-browser DevTools tips
Stars: ✭ 81 (+211.54%)
Mutual labels:  debugging, devtools
Ndb
ndb is an improved debugging experience for Node.js, enabled by Chrome DevTools
Stars: ✭ 10,581 (+40596.15%)
Mutual labels:  debugging, devtools
Rawkit
🦊 Immediately Open Chrome DevTools when debugging Node.js apps
Stars: ✭ 306 (+1076.92%)
Mutual labels:  inspector, devtools
React Inspect Props
React properties inspector with the power of Redux DevTools
Stars: ✭ 31 (+19.23%)
Mutual labels:  inspector, devtools
Clockwork Chrome
Clockwork - php dev tools integrated to your browser - Chrome extension
Stars: ✭ 415 (+1496.15%)
Mutual labels:  debugging, devtools
Ply
CSS inspection aided by visual regression pruning
Stars: ✭ 370 (+1323.08%)
Mutual labels:  inspector, devtools
Augury
Angular Debugging and Visualization Tools
Stars: ✭ 2,050 (+7784.62%)
Mutual labels:  debugging, devtools
netlogs
Web extension for debugging your API
Stars: ✭ 16 (-38.46%)
Mutual labels:  debugging, devtools
mdebug
基于React开发的新一代web调试工具,支持React组件调试,类似于Chrome Devtools。A Lightweight, Easy To Extend Web Debugging Tool Build With React
Stars: ✭ 237 (+811.54%)
Mutual labels:  inspector, devtools
Clockwork
Clockwork - php dev tools in your browser - server-side component
Stars: ✭ 4,076 (+15576.92%)
Mutual labels:  debugging, devtools
devtools-highlighter
DevTools extension that finds and highlights elements in the page
Stars: ✭ 29 (+11.54%)
Mutual labels:  inspector, devtools
prosemirror-dev-toolkit
Injectable developer tools for ProseMirror rich-text editors implemented in Svelte and TypeScript.
Stars: ✭ 44 (+69.23%)
Mutual labels:  inspector, devtools
clockwork-firefox
Clockwork - php dev tools integrated to your browser - Firefox add-on
Stars: ✭ 22 (-15.38%)
Mutual labels:  debugging, devtools
docker-pudb
Debug Python code within a Docker container remotely from your terminal using pudb
Stars: ✭ 18 (-30.77%)
Mutual labels:  debugging
js-docker
Container deployment of TIBCO JasperReports® Server
Stars: ✭ 115 (+342.31%)
Mutual labels:  reporting
StormReport
🌀 Library - Create your reports using only annotations
Stars: ✭ 17 (-34.62%)
Mutual labels:  reporting
pivot-vue
Integration example of WebDataRocks web reporting tool with the Vue framework
Stars: ✭ 17 (-34.62%)
Mutual labels:  reporting
portal
An api-driven, in-kernel layer 2/3 load balancer.
Stars: ✭ 101 (+288.46%)
Mutual labels:  devtools



A library to enhance the internal compilations of any Android app, adding useful tools for their early stage users. They can get info on what they are testing, send comprehensive crash reports and deeply inspect their running app on the go. It also bring a customizable team panel and other helpful tools, all within your app.

All your internal users (QA, managers, client, beta testers...) can get precise information on what they are testing and use an exclusive panel customized by the dev team with actions and resources. They also can send contextualized reports, which automagically include highly valuable information like repro steps, screenshots, crash details, full logs and environment info (app, build, repo status, device and OS).

For developers this is conceptually similar to Chrome DevTools but packed inside your app, a revolutionary concept that enhance their daily compilations. We provide a complete set of tools to inspect, analyze and modify a running app from within it, without cable and on the go. It helps them to understand what's really happening underneath in order to highlight issues and bug causes. They also receive comprehensive reports, can customize our tools for others and can make use of some coding helpers.

Production users get neither any of our features nor apk size increase. They get a spotless app thoroughly polished in an agile development process, enhanced by our tools :)

Tools

Auto-logger, repro step generator, logcat viewer, crash handler, reports, source browser, layout inspector, component browser, storage editor, network activity, info panels (apk , build, repo, device and os), coding helpers and much more.

Characteristics

  • Usable everywhere without cable, our UI overlap your app.
  • Easy to install, just add our dependencies to your Gradle files.
  • Careful with your releases, where everything will be auto disabled by default.
  • Flexible to configure via Gradle extension.
  • Handy integrations available to improve the experience of your testers and to assist your developers.

Features

App and device info
Get detailed information about what are you testing and where. The build process (variant, type, date, machine, user, gradle versions, dependencies,...), the sources used (remote repo status, local repo, commits and change diffs...), the resulting app (manifest, version, namespace, signing, installation...), the device where is running (model, hardware, battery, sensors...) and their operative system (version, status, memory, storage, installed apps...).

Team resources and reports
Provide your own resources for your internal users via Gradle configuration (team name, description, build notes, external links and action buttons. Your users can easily send report directly to the development team. Reports can include a zip with all gathered data (environment info, logs, screenshots, crash details, network request, logic snapshot...).

Crash visualization and report
We intercept any exception and show details immediately, on the same screen where it happen. These details include app status, current activity, logs, screenshots and graphic stacktrace with navigation to causing source lines. Crashes can be reported via email and we will include a zip with all gathered details.

Logs, reproduction steps and advance events
Browse the standard logcat output from your sessions as you use your app. They are surrounded by our auto generated events to give you more context. Our event cover from basic reproduction steps (user interaction, navigation, network activity...) to advanced entries (lifecycle events, crashes, ANRs, device events...).

View inspector
Navigate through your current layout components by touching elements or by browsing your hierarchy. Modify xml properties straight away and see the results in your screen. Browse you current components and their sources (tasks, activity and fragments), zoom your screen, measure elements and take screenshots.

Logic and network inspector
Get details about your running logic components (processes, threads, services, content providers and broadcast receivers) and inspect the network request/responses between your backend and your app. Browse and edit your storages (databases, shared preferences and files) and edit their values.

Setup

You only need to modify 2 gradle files. On your root build.gradle file:

buidscript {...}

plugins {
    id "es.rafaco.inappdevtools" version "0.0.58" apply false           // 1.
}

allprojects {
    repositories {
        maven { url "https://jitpack.io"}                               // 2.
    }
}
Show details

  1. Add our plugin in your plugins closure, which should be just before buildscript.
  2. Add JitPack to allprojects, repositories.


On your app module build.gradle file:

apply plugin: 'com.android.application'
apply plugin: 'es.rafaco.inappdevtools'                                 // 1.

android {
    ...
}

dependencies {
    releaseImplementation 'es.rafaco.inappdevtools:noop:0.0.58'         // 2.
    
    debugImplementation 'es.rafaco.inappdevtools:support:0.0.58'        // 3.
    //debugImplementation 'es.rafaco.inappdevtools:androidx:0.0.58'
}

inappdevtools {                                                         // 4.
    enabled = true
    teamName = 'YourTeam'
    teamEmail = '[email protected]'
    notes = 'First build note, replace me on the next ones.'
}
Show details

  1. Apply our plugin
  2. Add our noop for your release builds
  3. Choose between androidx or support for your debug builds, according to the Android libraries in your project. androidx require Jetifier enabled.
  4. Add our configuration closure inappdevtools and fill your email at least.


From now on, when building your project artifacts:

  • Iadt will be enabled on your Debug builds: all features will be available and your source code will be exposed throw our UI and in your APK files.
  • Iadt will be disabled on your Release builds: no feature will be available, your sources aren't exposed and your APK size will be minimally increased.

Ready to go! Just run a Debug build and our welcome dialog will pop up on your device.

For additional setup details visit our wiki:

Usage

After the setup process, you only need to Run a debug build of your app into a real device or emulator.

On first start, our welcome dialog will pop up. It gives basic information about the running apk, allows to disable our tools and helps in accepting the permission to show over your app.

You can invoke our UI at any time by tapping the new floating icon that appear over your app or by shaking your device with your app on foreground. It gives you access to all our tools while you keep using your app.

Our UI will auto popup on crash, showing full details about the crash and allowing to report it.

Integrations

There are multiple ways to integrate your app with our library for a better customization or to improve the experience of your internal users. All this methods will be safely ignored when our library is disabled (release builds, disabled configuration or using noop artifacts).

Customize your team info

You can customize a lot of things in the 'Team Screen' of your compilations by using our Gradle configuration. For field details, visit configurations.

inappdevtools {
    teamName = "DemoTeam"
    teamEmail = '[email protected]'
    teamDesc = "Team description or any text you want to show on top of Team screen. Change it with 'teamDesc' configuration."
    teamLinks = [ website   : "http://inappdevtools.org",
                  repo      : "https://github.com/rafaco/InAppDevTools"]
}

Add team actions

You can easily add buttons into your 'Team screen' to perform any logic or to call any of your methods. Pass a ButtonFlexData instance to Iadt.addTeamAction(), with your action in a Runnable and details for the button (message, icon, color...). Add them on startup (i.e. onCreate of your app or main activity) or dynamically at any point (i.e. after user log in).

Iadt.addTeamAction(new ButtonFlexData("Call yourMethod",
        R.drawable.ic_run_white_24dp,
        new Runnable() {
            @Override
            public void run() {
                YourClass.yourMethod("someParam");
            }
        }));

Add build notes

You can provide a text to describe your compilation, their changes or to provide instructions. It will be shown at welcome dialog, team screen and build screen.

Use our notes configuration in Gradle or modify BuildConfigField.NOTES at runtime:

inappdevtools {
    notes = "This is a SAMPLE NOTE provided at buildtime by our Gradle extension"
}
Iadt.getConfig()
    .setString(BuildConfigField.NOTES, 
            "This is a SAMPLE NOTE provided at runtime by our Java interface");

Show internal messages

You can show special toast messages only for your internal users. This messages will be shown when this library is enabled and will be ignored on your release builds.

Your internal users can easily distinguish them from the standard toast as they are shown in a top position and they are colored base on the severity. This messages will auto generate an event.

Iadt.buildMessage("This is a DEV message").fire();                 //Light blue (default)
Iadt.buildMessage("This is a INFO message").isInfo().fire();       //Green
Iadt.buildMessage("This is a WARNING message").isWarning().fire(); //Yellow
Iadt.buildMessage("This is a ERROR message").isError().fire();     //Red

Fire your own events

You can create and fire your own events manually. These events will be shown on our log screen like any other auto-generated events. It will also appear in reproduction steps if it has a verbosity greater than Info (I, W and E).

Iadt.buildEvent("Quick event sample").fire();

Iadt.buildEvent("User logged in: " + userData.getName())
    .setExtra(userData.toString())
    .setCategory("User")
    .setSubcategory("LogIn")
    .isInfo()
    .fire();

Contributing and building instructions

There are many ways to help us starting from giving this project a GitHub , recommending this library to your friends 📢 or sending us your feedback 💌.

For more, please check out our CONTRIBUTING.md document and our Coding contributions guide in our Wiki.

Join our community and help us making your job easy! :)

About this project

I started this project while I was working on an international flight information app. We had a user in another country with a nasty bug that we were unable to reproduce. I send him a special apk to record their logs and to send them to us on crash. We identify the problem straight away just looking at the log.

Days after I added an overlay to see the logs over our activities and the first info panel... and it became my personal tool for my daily duties. I carried on adding more tools and I started to realise that it could be useful for other Android developers as well. Few months later, I quit my job to fully focus on this project and to make it flexible for other apps.

Year and a half later, I am very excited with the results obtained and I'm looking forward to create a friendly community to push this project to the moon, join us!. Meanwhile, I'm currently searching for job at Madrid, ideally within an Android team open to use this tools. Check out my LinkedIn profile.

Links

Thanks

License

Copyright 2018-2020 Rafael Acosta Alvarez

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.

This project modify, include and use products with separate copyright notices and license terms. For details, see 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].