OSがAndroid 10の端末にアプリを対応させるにあたって、今まで端末固有のIDとして取得していたBuild.getSerialを使うことに問題が出てきました。そこで、別の端末固有のIDを使おうということになり、その候補として広告IDを使うという案が挙がったのですが、実機でテストしても広告IDは取得できませんでした。
以下がコードになります。
Kotlin
1 2 3 override fun onCreate(savedInstanceState: Bundle?) { 4 super.onCreate(savedInstanceState) 5 6 println("公告ID:" + getAdId()) 7 8 } 9 10 private fun getAdId(): String { 11 var id = "" 12 GlobalScope.launch { 13 try { 14 id = AdvertisingIdClient.getAdvertisingIdInfo(this@LoginActivity).id.toString() 15 }catch (e: GooglePlayServicesNotAvailableException) { 16 id = "UNKNOWN" 17 }catch (e: GooglePlayServicesRepairableException) { 18 id = "UNKNOWN" 19 }catch (e: IOException) { 20 id = "UNKNOWN" 21 } 22 } 23 return id 24 } 25
このように書いてテストしたところ、『 広告ID: 』というふうに表示されました。
公告IDが取得できない原因には何があるでしょうか。
どなたか教えてくださると助かります。
試したこと
https://developer.android.com/training/articles/ad-id?hl=ja
こちらのページを参考に、以下のようにコードを書いてみましたが、良い結果は得られませんでした。
Kotlin
1 private fun determineAdvertisingInfo() { 2 if (AdvertisingIdClient.isAdvertisingIdProviderAvailable(this)) { 3 val advertisingIdInfoListenableFuture = AdvertisingIdClient.getAdvertisingIdInfo(applicationContext) 4 5 addCallback(advertisingIdInfoListenableFuture, 6 object : FutureCallback<AdvertisingIdInfo> { 7 override fun onSuccess(adInfo: AdvertisingIdInfo?) { 8 val id: String = adInfo!!.id 9 val providerPackageName: String = adInfo.providerPackageName 10 val isLimitTrackingEnabled: Boolean = adInfo.isLimitAdTrackingEnabled 11 12 println("広告ID:$id") 13 println(providerPackageName) 14 println(isLimitTrackingEnabled) 15 } 16 17 override fun onFailure(t: Throwable) { 18 Log.e("MY_APP_TAG", 19 "Failed to connect to Advertising ID provider.") 20 // Try to connect to the Advertising ID provider again, or fall 21 // back to an ads solution that doesn't require using the 22 // Advertising ID library. 23 } 24 }, Executors.newSingleThreadExecutor()) 25 } else { 26 println("広告ID:使用できない") 27 // The Advertising ID client library is unavailable. Use a different 28 // library to perform any required ads use cases. 29 } 30 } 31
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/17 07:20