OpenUDID
[OpenUDID IS NOW DEPRECATED] Open source initiative for a universal and persistent UDID solution for Android.
Install / Use
/learn @vieux/OpenUDIDREADME
_/_/ _/ _/ _/_/_/ _/_/_/ _/_/_/
/ / /// // /// _/ _/ _/ _/ _/ _/ _/
_/ _/ / / //// _/ _/ _/ _/ _/ _/ _/ _/ _/
_/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ / / /
// /// /// / / // /// /// ///
_/
_/
// Created by Victor Vieux on 9/9/11. // Copyright 2011 OpenUDID.org // // iOS / MacOS code: https://github.com/ylechelle/OpenUDID // Android code: https://github.com/vieux/OpenUDID // // Contributors: // https://github.com/ylechelle (initiator & iOS code) // https://github.com/samrobbins (Mac OS port) // https://github.com/vieux (Android version)
Synopsis: an open source project to provide a universal and persistent Unique Device IDentifier (UDID) solution for Android
Usage:
- Add this to your manifest: <service android:name="org.openudid.OpenUDID_service"> <intent-filter> <action android:name="org.openudid.GETUDID" /> </intent-filter>
- Call
void OpenUDID_manager.sync(Context yourContext);to initialize the OpenUDID - Call
boolean OpenUDID_manager.isInitialized();to check if the initialization is over (it's asynchronous) - Call
String OpenUDID_manager.getOpenUDID();to retrieve your OpenUDID
