Android獲取谷歌AdvertisingID


<聲明:歡迎轉載,但請保留文章原始出處>

本文摘抄自:https://blog.safaribooksonline.com/2014/01/16/advertising-id-android-kitkat/?utm_source=tuicool

 

Beginning in August, Google will replace the Android ID with the new Google Advertising ID.

Because Advertising ID is part of the Google Play services platform, you must first get the Google Play services SDK and set up your project. Note that Google provides good documentation on setting up the SDK which includes the following steps:

  1. Copy the Google SDK library and import it into your project.
  2. Update your app Manifest file.
  3. Create a ProGuard exception to prevent ProGuard from stripping away required classes.
  4. Ensure Devices Have the Google Play services APK.

See Install the Google Play Services SDK for more information.

Once setup, you will use the classes in package com.google.android.gms.ads.identifier, shown here:

 

Class Description
AdvertisingIdClient A helper library for retrieval of advertising ID and related information.
AdvertisingIdClient.Info Includes both the advertising ID as well as the limit ad tracking setting.

To get the Advertising ID, you must first get an AdvertisingIdClient.Info object by calling the method getAdvertisingIdInfo(). Note that this must be done on its own thread and not on the main thread or you will get an IllegalStateException. The following code snippet shows an example of how to get the Advertising ID:

 1 import com.google.android.gms.ads.identifier.AdvertisingIdClient;
 2 import com.google.android.gms.ads.identifier.AdvertisingIdClient.Info;
 3 :
 4 :
 5 
 6 Info adInfo = null;
 7 
 8 try {
 9      adInfo = AdvertisingIdClient.getAdvertisingIdInfo(mContext);
10 } catch (IOException e) {
11      ...
12 } catch (GooglePlayServicesAvailabilityException e) {
13      ...
14 } catch (GooglePlayServicesNotAvailableException e) {
15      ...
16 }
17 
18 String AdId = adInfo.getId();
19 
20 :

Once you get the advertising ID you can use it instead of using the non-anonymous Android device ID.

Summary

Developers have a number of options to generate unique user identifiers. These include Telephony identifiers such as IMEI or the Android Device ID. Starting with Android 4.4, developers can use the Advertising ID that provides a user-specific, unique, and resettable ID for advertising, as provided by Google Play services.

 

<聲明:歡迎轉載,但請保留文章原始出處>

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM