Skip to content
This repository has been archived by the owner on Nov 2, 2018. It is now read-only.

Commit

Permalink
first comit
Browse files Browse the repository at this point in the history
  • Loading branch information
vieux committed Sep 9, 2011
1 parent f80dfee commit e92adf2
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
4 changes: 2 additions & 2 deletions OpenUDID_manager.java
@@ -1,4 +1,4 @@
package com.OpenUDID;
package org.OpenUDID;

import java.math.BigInteger;
import java.security.SecureRandom;
Expand Down Expand Up @@ -162,7 +162,7 @@ public static void sync(Context context) {
if (OpenUDID == null) //Not found
{
//Get the list of all OpenUDID services available (including itself)
manager.mMatchingIntents = context.getPackageManager().queryIntentServices(new Intent("com.OpenUDID.GETUDID"), 0);
manager.mMatchingIntents = context.getPackageManager().queryIntentServices(new Intent("org.OpenUDID.GETUDID"), 0);
if (LOG) Log.d(TAG, manager.mMatchingIntents.size() + " services matches OpenUDID");

if (manager.mMatchingIntents != null)
Expand Down
6 changes: 3 additions & 3 deletions OpenUDID_service.java
@@ -1,4 +1,4 @@
package com.OpenUDID;
package org.OpenUDID;

import android.app.Service;
import android.content.Context;
Expand All @@ -11,9 +11,9 @@
/*
* You have to add this in your manifest
<service android:name="com.OpenUDID.OpenUDID_service">
<service android:name="org.OpenUDID.OpenUDID_service">
<intent-filter>
<action android:name="com.OpenUDID.GETUDID" />
<action android:name="org.OpenUDID.GETUDID" />
</intent-filter>
</service>
Expand Down
10 changes: 9 additions & 1 deletion README
Expand Up @@ -8,8 +8,16 @@ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/
_/

// Created by Victor Vieux on 9/9/11.
// Copyright 2011 OpenUDID.com
// 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

Expand Down

0 comments on commit e92adf2

Please sign in to comment.