android-device-identification


Source link: https://github.com/thomashaertel/android-device-identification

Android Device Identification

Library for unique identification of an Android device. Provides also a backup solution

Overview

TBD

Release Notes:

0.0.2

  • A secure preference store is used for holding the device specific data.
  • Backup manager helper added for backing up preferences and sqlite databases.

0.0.1

  • Initial import to github. I've added several ways to identify an android device.
  • device specific data is written to shared preferences.

Usage

To make use of the device identification you only need to add an DeviceIdentityProvider to your activity:

@Override protected void onCreate(Bundle savedInstanceState) {

  super.onCreate(savedInstanceState);

  ...

identityProvider = DeviceIdentityProvider.getInstance(this);

// force backup for new device immediately
  if (identityProvider.isNewDevice()) {

BackupManager backupManager = new BackupManager(this);

backupManager.dataChanged();

  
}

... 
}

If you want automatically backup your application data to android backup service you need to add some snippets to the applications manifest an an activity:

<application android:backupAgent="com.thomashaertel.device.backup.SimpleBackupAgent" android:allowBackup="true" ...>
  <meta-data android:name="com.google.android.backup.api_key" android:value="your-api-key" />
  ... </application>
@Override protected void onStop() {

  // allow backup authorized devices only
  if (identityProvider.isAuthorizedDevice()) {

BackupManager backupManager = new BackupManager(this);

backupManager.dataChanged();

  
}

super.onStop();
 
}

Building

Gradle

From Bintray

Add maven central to your build.gradle:

buildscript {

repositories {

  jcenter()

}
 
}
  repositories {

jcenter() 
}

From maven central

Add maven central to your build.gradle:

buildscript {

repositories {

  mavenCentral()

}
 
}
  repositories {

mavenCentral() 
}

Then declare android-device-identification within your dependencies:

dependencies {

...
compile('com.thomashaertel:android-device-identification :0.0.2@aar') {

}

... 
}

Maven

From maven central

To use android-device-identification within your maven build simply add

<dependency>
<artifactId>android-device-identification </artifactId>
<version>${
android-device-identification .version
}
</version>
<groupId>com.thomashaertel</groupId> </dependency>

to your pom.xml

If you also want the sources or javadoc add the respective classifier

  <classifier>sources</classifier>

or

  <classifier>javadoc</classifier>

to the dependency.

Contributing

For making contributions please send me pull requests, but also bugs and enhancement requests are welcome. Although no guarantees on when I can review them.

License

Resources

Golgi's robust Mobile Cloud Service simplifies application connectivity and data transport so developers can focus on building great app experiences.​

Features:

  • Mobile Cloud Service
  • Intelligent Delivery Engine
  • Developer Defined Data Contract
  • Multi-Layered Security
  • Cross-platform (Android/iOS/J2SE/JavaScript)

Divide.io is an open source Backend-as-a-Service (BaaS). It provides tools to easily, securely, and efficiently communicate between your app and a server. It handles data storage, user registration & management, and push notifications.

Deploy anywhere. Use any database you want. Never get locked into a platform.

circled-picker is an awesome, simple circular picker for Android. It can display value in four formats: hours, seconds, percentage and numeric, and it provides a basic set of parameters to customize.

Online tool for converting SVG to Android VectorDrawable XML resource file.

JDROID Framework provides a programming and architectural model for modern Java-based enterprise and android applications.

This library provides a fully customizable linear compass view.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes