Skip to content

scriptsboy/android-inventory-library

 
 

Repository files navigation

Inventory Library for Android

Flyve MDM banner

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

Flyve MDM allows your company to maintain control of all mobile devices, whilst providing comprehensive protection and enhanced security for sensitive corporate data, via a centralized management console.

To get started, check out Flyve MDM Website!

Table of contents

Synopsis

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 with FusionInventory for GLPI.

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

Data collected

  • Account Info
  • Accesslog
  • Hardware
  • User
  • Storages
  • Operating System
  • BIOS
  • Memories
  • Inputs
  • Sensors
  • Drives
  • CPUs
  • Videos
  • Cameras
  • Networks
  • Environments variables
  • JVMS
  • Softwares
  • USB
  • Battery
  • Controllers

Visit our website for every element specification.

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

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 92.6%
  • Shell 5.3%
  • Kotlin 2.1%