-1
Google Playサービスを更新し、PlayサービスアプリページのPlay Marketにリダイレクトする必要があることをユーザーに通知する必要があるアプリがあります。手伝って頂けますか?前もって感謝します!Google PlayサービスのページでPlay Marketを開くにはどうすればよいですか?
Google Playサービスを更新し、PlayサービスアプリページのPlay Marketにリダイレクトする必要があることをユーザーに通知する必要があるアプリがあります。手伝って頂けますか?前もって感謝します!Google PlayサービスのページでPlay Marketを開くにはどうすればよいですか?
マニフェスト
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
とあなたの活動でこのコード
// Check status of Google Play Services
int status = GooglePlayServicesUtil.isGooglePlayServicesAvailable(this);
// Check Google Play Service Available
try {
if (status != ConnectionResult.SUCCESS) {
GooglePlayServicesUtil.getErrorDialog(status, this, RQS_GooglePlayServices).show();
}
} catch (Exception e) {
Log.e("Error: GooglePlayServiceUtil: ", "" + e);
}
final String appPackageName = getPackageName(); // getPackageName() from Context or Activity object
try {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + appPackageName)));
}
catch (android.content.ActivityNotFoundException anfe) {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://play.google.com/store/apps/details?id=" + appPackageName)));
}
このコードを試しに入れ、これを