Skip to content

Ivans51/android-inventory-library

 
 

Inventory Library for Android

Flyve MDM banner

License Follow twitter Telegram Group Project Status: Active Conventional Commits Greenkeeper badge GitHub release Maven Central

Flyve MDM is a Mobile device management software that enables you to secure and manage all the mobile devices of your business or family via a web-based console.

To get started, check out Flyve MDM Website!

Table of contents

Synopsis

This library helps you to create a complete inventory of your Android devices: both hardware and software informations are collected. You get the data about processor, memory, drives, sensors, etc., and also the list and description of installed application on any devices in a beautiful XML as protocol compatible with FusionInventory for GLPI.

You can find more information about the Inventory Protocol here: http://fusioninventory.org/documentation/dev/spec/protocol/inventory.html

What's included?

  • Hardware
  • Bios
  • Memory
  • Inputs
  • Sensors
  • Drives
  • Cpus
  • Simcards
  • Videos
  • Cameras
  • Networks
  • Envs
  • Jvm
  • Softwares
  • Usb
  • Battery

Visit our website for more information.

Build Status

LTS Bleeding Edge
Build Status Build Status

Installation

Download the latest JAR, grab via Maven, insert on build.gradle at app level or use Apache Ivy.

Maven

<dependency>
  <groupId>org.flyve</groupId>
  <artifactId>inventory</artifactId>
  <version>1.0.0</version>
  <type>pom</type>
</dependency>

Gradle

compile 'org.flyve:inventory:1.0.0'

Apache Ivy

<dependency org='org.flyve' name='inventory' rev='0.1.0'>
  <artifact name='inventory' ext='pom' ></artifact>
</dependency>

You can also find us on Bintray repository.

Code Example

It's easy to implement in your code, as you can see in the following examples

Java

InventoryTask inventoryTask = new InventoryTask(MainActivity.this, "Agent_v1.0", new InventoryTask.OnTaskCompleted() {
  @Override
  public void onTaskCompleted(String data) {
    Log.d("XML", data);
  }
});

inventoryTask.execute();

Kotlin

val inventoryTask = InventoryTask(this@MainActivity, "Agent_v1.0", object : InventoryTask.OnTaskCompleted() {
    override fun onTaskCompleted(data: String) {
        Log.d("XML", data)
    }
})

inventoryTask.execute()

Documentation

We maintain a detailed documentation of the project on the website, check the How-tos and Development section.

Versioning

In order to provide transparency on our release cycle and to maintain backward compatibility, Flyve MDM 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.

Contribute

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.

Contact

For notices about major changes and general discussion of Flyve MDM development, subscribe to the /r/FlyveMDM subreddit. You can also chat with us via IRC in #flyve-mdm on freenode or @flyvemdm on Telegram. Ping me @rafaelje in the IRC chatroom if you get stuck.

Professional Services

The Flyve MDM and GLPI Network services are available through our Partner's Network. We provide special training, bug fixes with editor subscription, contributions for new features, and more.

Obtain a personalized service experience, associated with benefits and opportunities.

Copying

  • Name: Flyve MDM is a registered trademark of Teclib'.
  • Code: you can redistribute it and/or modify it under the terms of the GNU General Public License (GPLv3).
  • Documentation: released under Attribution 4.0 International (CC BY 4.0).

About

Inventory client library written in Java for developing applications on Android

Topics

Resources

License

Code of conduct

Contributing

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 93.5%
  • Shell 5.9%
  • Kotlin 0.6%