GLPI Android Inventory Library is an android inventory library written in Java
The Inventory Library for Android collects a complete inventory of your Android devices. It allows you to export your inventory in a beautiful XML or JSON as protocol compatible GLPI Native Inventory.
You can find more information about the GLPI Native Inventory Protocol here: https://github.com/glpi-project/inventory_format
Download the latest JAR or AAR and include it in your Android project as an external library
It's easy to implement in your code, as you can see in the following examples
InventoryTask inventoryTask = new InventoryTask(MainActivity.this, "Agent_v1.0", new InventoryTask.OnTaskCompleted() {
@Override
public void onTaskCompleted(String data) {
Log.d("XML", data);
}
});
inventoryTask.execute();
val inventoryTask = InventoryTask(this@MainActivity, "Agent_v1.0", object : InventoryTask.OnTaskCompleted() {
override fun onTaskCompleted(data: String) {
Log.d("XML", data)
}
})
inventoryTask.execute()
In order to provide transparency on our release cycle and to maintain backward compatibility, GLPI Android Inventory Library is maintained under the Semantic Versioning guidelines. We are committed to following and complying with the rules, the best we can.
See the tags section of our GitHub project for changelogs for each release version of Flyve MDM. Release announcement posts on the official Teclib' blog contain summaries of the most noteworthy changes made in each release.
Want to file a bug, contribute some code, or improve documentation? Excellent! Read up on our guidelines for contributing and then check out one of our issues in the Issues Dashboard.
You want to report a bug (and get a fix quickly) or do you need a guarantee for Android Inventory Library?
You can subscribe to our professional support GLPI Network here.
This subscription includes a guarantee through a service level contract between your company and our team in charge of GLPI development (core, supported plugins and GLPI Agent) as well as exclusive features and services.