1. ホーム
  2. android

[解決済み] 正しいGoogle Playサービスが利用可能かどうか確認してください。"残念ながらアプリケーションは動作を停止しました"

2023-07-05 19:20:17

質問

携帯電話でアプリケーションを起動するたびにクラッシュします。何か問題があるのでしょうか。 残念ながら"appname"は動作を停止しましたと表示されます。 googleplay サービスをチェックする他の方法も試しましたが、いつもクラッシュしてしまいます。googleplayサービスを更新し、google map v2が完全に動作するようにしました。このコードに何か解決策があれば教えてください。アンドロイド 4.1.2 を実行している私の携帯電話と私の AVD 上でクラッシュします。

package com.example.checkgoogleplayproject;

import android.app.Activity;
import android.app.Dialog;
import android.os.Bundle;
import android.view.Menu;
import android.widget.TextView;

import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.GooglePlayServicesUtil;

public class MainActivity extends Activity {

    @Override
    protected void onResume() {
        super.onResume();

        // Getting reference to TextView to show the status
        TextView tvStatus = (TextView)findViewById(R.id.tv_status);

        // Getting status
        int status = GooglePlayServicesUtil.isGooglePlayServicesAvailable(getBaseContext());

        // Showing status
        if(status==ConnectionResult.SUCCESS)
            tvStatus.setText("Google Play Services are available");
        else{
            tvStatus.setText("Google Play Services are not available");
            int requestCode = 10;
            Dialog dialog = GooglePlayServicesUtil.getErrorDialog(status, this, requestCode);
            dialog.show();
        }
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }
}

どのように解決するのですか?

ご回答ありがとうございます。LogCat を見てわかりました。 AndroidのManifestにこれを含める必要がありました。

<application>
<meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />
...