Return-Path: X-Original-To: apmail-incubator-callback-dev-archive@minotaur.apache.org Delivered-To: apmail-incubator-callback-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 38A7CD2E1 for ; Fri, 20 Jul 2012 23:03:36 +0000 (UTC) Received: (qmail 68120 invoked by uid 500); 20 Jul 2012 23:03:35 -0000 Delivered-To: apmail-incubator-callback-dev-archive@incubator.apache.org Received: (qmail 68081 invoked by uid 500); 20 Jul 2012 23:03:35 -0000 Mailing-List: contact callback-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: callback-dev@incubator.apache.org Delivered-To: mailing list callback-dev@incubator.apache.org Received: (qmail 68054 invoked by uid 99); 20 Jul 2012 23:03:35 -0000 Received: from issues-vm.apache.org (HELO issues-vm) (140.211.11.160) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Jul 2012 23:03:35 +0000 Received: from isssues-vm.apache.org (localhost [127.0.0.1]) by issues-vm (Postfix) with ESMTP id 322CE14285A for ; Fri, 20 Jul 2012 23:03:35 +0000 (UTC) Date: Fri, 20 Jul 2012 23:03:35 +0000 (UTC) From: "Stephen J Fuhry (JIRA)" To: callback-dev@incubator.apache.org Message-ID: <300707047.84629.1342825415207.JavaMail.jiratomcat@issues-vm> In-Reply-To: <1838972521.42560.1342112554562.JavaMail.jiratomcat@issues-vm> Subject: [jira] [Commented] (CB-1047) Android UUID can sometimes be undefined (or otherwise not unique) because of limitations in ANDROID_ID MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CB-1047?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13419665#comment-13419665 ] Stephen J Fuhry commented on CB-1047: ------------------------------------- [~bowserj] I'll take a stab at it. Unless you care to offer some specific guidelines, I'll just implement it inside the [Device class|https://github.com/apache/incubator-cordova-android/blob/master/framework/src/org/apache/cordova/Device.java] using private methods. I'll go ahead and get started now, shouldn't take long. > Android UUID can sometimes be undefined (or otherwise not unique) because of limitations in ANDROID_ID > ------------------------------------------------------------------------------------------------------ > > Key: CB-1047 > URL: https://issues.apache.org/jira/browse/CB-1047 > Project: Apache Cordova > Issue Type: Wish > Components: Android > Affects Versions: 1.9.0 > Reporter: Stephen J Fuhry > Assignee: Joe Bowser > > There are many documented situations where the following does not really return a unique identifier ([link to cordova source|https://git-wip-us.apache.org/repos/asf?p=incubator-cordova-android.git;a=blob;f=framework/src/org/apache/cordova/Device.java#l173]): > {code:java} > android.provider.Settings.Secure.ANDROID_ID > {code} > Would it make sense to implement a solution like this? > http://android-developers.blogspot.com/2011/03/identifying-app-installations.html > see also: http://stackoverflow.com/a/2853253/111033 > I've used the above mentioned solution in native Android applications without issue. > It *might* make sense to offer this as a value completely separate from device.uuid.. there are many reports that some hardware vendors are actually populating ANDROID_ID with a manufacturer ID (i.e. ANDROID_ID returns a value, but it is not unique between devices of the same make / model! How deceptive.). > Perhaps it could be offered as: > {code:javascript} > device.install_id > {code} > or something so that developers could opt-in to use it? This way it wouldn't break BC for those who are interested in maintaining device or install ids from previous versions. Then, you could get a guaranteed unique id by doing: > {code:javascript} > var deviceId = ('install_id' in device ? device.install_id : device.uuid); > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira