Google Advertising Id 获取

最近挪了一个坑,新的项目需要读取谷歌的AdvertisingId 作为唯一标识,这里记录一下过程中遇到的问题

1: 什么是谷歌AdvertisingId

是谷歌系列sdk 生成的 用户唯一标识

2: 如何取得

搜了一大圈,发现了如下的博文:

Android Advertising ID 简介以及快速集成和使用

奈何,这篇文字时间有点久远了,里面提供了两种方式:
第一种要下载google-play-service.jar,第二种是通过进程间通信(IPC),绑定google service里面的一个服务取得的,但是代码要跑在子线程

虽然上面博文里代码是可用的,可但是有个大前提,你手机上装个google服务,但是,国内的各厂商原厂ROM是很少有google服务的,因此就产生了一个新的问题,我没google服务,还要取AdvertgisingId,那是会报错的,
GooglePlayServicesNotAvailableException

fire.jpg

所以继续找资料喽...

找到了一篇StackOverflow
Download Google Play Services JAR

在这里介绍了 google Play Service jar的下载地址,里面还提供了一个play-services-basement-11.8.0.aar的方式,但是无论是jar还是aar,我发现,也都是提供AdvertisingIdClient,没有判断google Service是否可用的api,
最后,我找到了这个:

Google Maps Android API v2 throws GooglePlayServicesNotAvailableException, out of date, SupportMapFragment.getMap() returns null
里面的回答2,给了下面的解释
as described at the bottom of that link: http://developer.android.com/google/play-services/setup.html

and here comes sample code to handle this properly;

int checkGooglePlayServices =    GooglePlayServicesUtil.isGooglePlayServicesAvailable(mContext);
    if (checkGooglePlayServices != ConnectionResult.SUCCESS) {
    // google play services is missing!!!!
    /* Returns status code indicating whether there was an error. 
    Can be one of following in ConnectionResult: SUCCESS, SERVICE_MISSING, SERVICE_VERSION_UPDATE_REQUIRED, SERVICE_DISABLED, SERVICE_INVALID.
    */
       GooglePlayServicesUtil.getErrorDialog(checkGooglePlayServices, mActivity, 1122).show();
    }

我们点进这个地址: http://developer.android.com/google/play-services/setup.html,是Google Play Sevice的文档,这才是真正解决问题的所在,
里面列出来Google Play Sevice的各个独立依赖,我选择了

Google Mobile Ads   : com.google.android.gms:play-services-ads:17.2.0

然后是怎么判断 isGooglePlayServicesAvailable()
先贴一段原文

Another approach is to use the isGooglePlayServicesAvailable() method. You get a reference to the singleton object that provides this method using GoogleApiAvailability.getInstance(). You might call this method in the onResume()method of the main activity. If the result code is SUCCESS, then the Google Play services APK is up-to-date and you can continue to make a connection. If, however, the result code is SERVICE_MISSING, SERVICE_VERSION_UPDATE_REQUIRED, or SERVICE_DISABLED, then the user needs to install an update. In this case, call the getErrorDialog() method and pass it the result error code. The method returns a Dialog you should show, which provides an appropriate message about the error and provides an action that takes the user to Google Play Store to install the update.

翻译过来是:
通过GoogleApiAvailability.getInstance()的单例方法,拿到GoogleApiAvailability的引用,我们可以在onResume()里调用此方法,判断google play service 是否可用,如果返回结果是 SUCCESS,代表可用,我们就可以继续取google Advertising Id了,然而,如果返回结果是: SERVICE_MISSING, SERVICE_VERSION_UPDATE_REQUIRED, or SERVICE_DISABLED,等,那么就需要用户安装google play service 的更新包,这是我们调 getErrorDialog() 方法,吧上面的返回结果码传进去,这个方法会返回个dialog,显示了具体错误信息,并能引导用户去google play store 安装或者更新 google play service,不过估计在国内也是gg了

最终的代码如下:


                    var gsmAvaliable = GoogleApiAvailabilityLight.getInstance().isGooglePlayServicesAvailable(this@MainActivity)
                    if (gsmAvaliable == ConnectionResult.SUCCESS) {
                        Executors.newSingleThreadExecutor().execute {
                            try {
                                var adId: String  = AdvertisingIdClient.getAdvertisingIdInfo(this@MainActivity).id
                                runOnUiThread {
                                    //do something
                                }
                            } catch (e: Exception) {
                                e.printStackTrace()
                            }
                        }
                    } else {
                        GooglePlayServicesUtil.getErrorDialog(gsmAvaliable, this@MainActivity, 0)
                    }

说明一下上面的GoogleApiAvailabilityLightGooglePlayServicesUtil
如果你只依赖了

Google Mobile Ads   : com.google.android.gms:play-services-ads:17.2.0

那么只能用GoogleApiAvailabilityLight,想要使用GooglePlayServicesUtil,还要依赖

Google Actions, Base Client Library com.google.android.gms:play-services-base:16.1.0

好了,关于google Advertising id的获取,暂时到这里,具体的可以去研究一下官方文档_

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,335评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,895评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,766评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,918评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,042评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,169评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,219评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,976评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,393评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,711评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,876评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,562评论 4 336
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,193评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,903评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,142评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,699评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,764评论 2 351

推荐阅读更多精彩内容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 7,316评论 0 10
  • Correctness AdapterViewChildren Summary: AdapterViews can...
    MarcusMa阅读 8,857评论 0 6
  • 央行降准,这要是一年前,我是根本不在乎这个消息的,因为我根本就不知道什么是存款准备金率。现在我不得不知道,这是中国...
    沈水之南阅读 208评论 0 0
  • 不知不觉中十月中旬到了,我们迎来了一年一度的运动会。 瞧!我们班的运动员入场了。 他们一个个神采奕奕,精神抖擞,气...
    赵芷悦阅读 250评论 0 0
  • 花开花落 雪覆雪消 漫漫长路 无人一遭 千言万语 化作寂寥 峰回路转 虚若缥缈 乘风破云 雁呵青梢 烈酒青铜 万古...
    季紫清阅读 343评论 1 3