Description
Android 3.1 introduced USB host mode which allows the user to plug USB devices to your Android tablet in the same way as a Desktop PC and extend its functionality (if the tablet has the correct drivers of course).
This application will provide information about almost all currently plugged-in USB device (see below for more info about the 'almost').
Information includes:
USB-Device-Info alternatives and similar packages
Based on the "Tools" category.
Alternatively, view USB-Device-Info alternatives based on common mentions on social networks and blogs.
-
Freeline
A super fast build tool for Android, an alternative to Instant Run -
dex-method-counts
Command-line tool to count per-package methods in Android .dex files -
scalpel
A surgical debugging tool to uncover the layers under your app. -
ViewInspector
View Inspection Toolbar for Android Development -
AdaptiveTableLayout
Library that makes it possible to read, edit and write CSV files -
maven-android-sdk-deployer
A tool to install components of the Android SDK into a Maven repository or repository manager to use with the Android Maven Plugin, Gradle and other tools. -
vectalign
Tool for create complex morphing animations using VectorDrawables (allows morphing between any pair of SVG images) -
android-resource-remover
A simple utility to remove unused resources in your Android app to lower the size of the APK. It's based on the Android lint tool output. -
Uber Apk Signer
A cli tool that helps signing and zip aligning single or multiple Android application packages (APKs) with either debug or provided release certificates. It supports v1, v2 and v3 Android signing scheme has an embedded debug keystore and auto verifies after signing. -
AndroidLocalizationer
This is a Android Studio/ IntelliJ IDEA plugin to localize your Android app, translate your string resources automactically. -
Debug Bottle
🍼Debug Bottle is an Android runtime debug / develop tools written using kotlin language. -
scrollscreenshot
Make Android screenshots of scrollable screen content -
osmtracker-android
GPS tracking tool for OpenStreetMap -
Let
Annotation based simple API flavored with AOP to handle new Android runtime permission model -
android-gradle-template
Combines tools for fast android app devlopment -
PDFCreatorAndroid
Simple library to generate and view PDF in Android -
density-converter
A multi platform image density converting tool converting single or batches of images to Android, iOS, Windows or CSS specific formats and density versions given the source scale factor or width/height in dp. It has a graphical and command line interface and supports many image types (svg, psd, 9-patch, etc.) aswell as some lossless compressors like pngcrush. -
enroscar
A set of Android tools that facilitate apps development -
TaggerString
TaggerString is very light library which allows to build dynamic string resource in much more readable way. -
release-android-library
Remote script to create a maven compatible release of an android library (aar) -
Layout-to-Image
Android Layout (Relative Layout, Linear Layout etc) to Image -
PackageHunter
:inbox_tray: [Android Library] Hunt down all package information -
NotificationLog
Use an expanded notification as a makeshift Android log output console -
Uber Adb Tools for Android
A tool that enables advanced features through adb installing and uninstalling apps like wildcards and multi device support. Useful if you want to clean your test device from all company apks or install a lot of apks in one go. Written in Java so it should run on your platform. -
Java7-on-Android
Java 7 features backported to Android 2.2+ -
Shutdown
An android library that handles the closing of your app interactively. -
Android-Intent-Library
A library which will save you a lot of time from writing the same intent creation code. it consist of many intent creation codes like Share, Contacts, Email and etc, which you can easily use. -
AnUitor
AnUitor is a result of my rebranding experiences of one android app. -
IntroApp
This Android app adds splash screen slides to make a great intro for an app. -
open-weather-retriever-z
A wrapper that gets weather information from OpenWeatherMap -
change-scene
Switch between different layouts for different states, easily. -
gplay.ws
create a badge to promote your own Android application in a single step
Appwrite - The Open Source Firebase alternative introduces iOS support
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of USB-Device-Info or a related project?
README
USB Device Info
Android 3.1 introduced USB host mode which allows the user to plug USB devices to your Android tablet in the same way as a Desktop PC and extend its functionality (if the tablet has the correct drivers of course).
This application will provide information about almost all currently plugged-in USB device (see below for more info about the 'almost').
Information includes:
- The Device class
- The USB device path
- The Vendor ID (VID) and the Product ID (PID).
- A List of all interfaces and their endpoints.
No ads.
Apart from using the build in API it now also parses "/sys/bus/usb/devices/" to display devices which are hidden by the Android OS, although in less detail. This part is also available as a Java library (see Library below)
Important
As of version 2.0.0 SysBusUsbDevice
is no longer Parcelable
; it is now Serializable
. This is so that the library can be used in pure java projects.
Library
The Linux part of the project is available as an artifact for use with Gradle/Maven. To use that, add the following blocks:
gradle
repositories {
maven {
url "https://dl.bintray.com/alt236/maven"
}
}
dependencies {
compile 'uk.co.alt236:usbdeviceenumerator:2.0.0'
}
maven
<dependency>
<groupId>uk.co.alt236</groupId>
<artifactId>usbdeviceenumerator</artifactId>
<version>2.0.0</version>
<type>pom</type>
</dependency>
Notes
- If you download the accompanying databases, the application will also be able to provide you with additional info such as the Vendor of the device (which is not necessarily the brand!), the vendor's logo and the product name.
- As this application is using the default Android API some devices might not appear. USB Hubs (and devices connected to them) are invisible event though they seem to function properly, and mice seem to be filtered out of the provided list. I'm looking into ways to fix this.
- Device Subclass resolution will be added in the next version.
- The database is parsed from: http://www.linux-usb.org/usb.ids
- SELinux can interfere with accessing sysfs which will block the Linux part of the app from working.
Changelog
- v0.0.1 First public release\n
- v0.0.2 Added Interface and Endpoint resolution\n
- v0.0.3 Databases can now be downloaded.\n
- v0.0.4 Now also parses /sys/bus/usb/devices/ for those pesky devices android hides. Added export.
- v0.0.5 Added support for small screen devices. Bugfixes and stability improvements.
- v1.0.0 Materialise design, better tablet support, code overhaul
- v2.0.0 Added debug screens, SysBusUsbDevice is now Serializable instead of Parcelable
- v2.0.1 Switched to HTTPS, now using internal storage instead of external.
Permission Explanation
- ACCESS_NETWORK_STATE: Used to check if the device is on-line and using which interface.
- INTERNET: Used to go on-line and download the updated database.
- WRITE_EXTERNAL_STORAGE: Used to write the database to the SD card.
Links
- Market link: https://market.android.com/details?id=aws.apps.usbDeviceEnumerator
- Webpage: http://aschillings.co.uk/html/usb_device_info.html
- Github: https://github.com/alt236/USB-Device-Info---Android
Credits
Author: Alexandros Schillings.
All logos are the property of their respective owners
The code in this project is licensed under the Apache Software License 2.0.
Copyright (c) 2020 Alexandros Schillings.
*Note that all licence references and agreements mentioned in the USB-Device-Info README section above
are relevant to that project's source code only.