0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

開発者サービスが利用可能かチェックする

Posted at

開発者サービスについて

Google Play開発者サービスは、GoogleアプリとGoogle Playアプリの更新に使用します。
Google Play開発者サービスは、Googleサービスへの認証、連絡先の同期、ユーザーの最新のプライバシー設定へのアクセス、高品質/低消費電力の現在地情報サービスといったコア機能を提供します。
Google Play開発者サービスには、オフライン検索の高速化、リアルな地図の提供、ゲームパフォーマンスの向上など、アプリのエクスペリエンスを向上させる働きもあります。

実践

int result = GoogleApiAvailability.getInstance().isGooglePlayServicesAvailable(context);
if(result == ConnectionResult.SUCCESS){

}

"GoogleApiAvailability.getInstance().isGooglePlayServicesAvailable(context)"
で取得したコードを使って、ConnectionResultクラス内での成功値と比較します。

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?