java.lang.IllegalStateException: FirebaseApp with name [DEFAULT] doesn't exist.
Firebase Cloud Messaging に移行した後、アプリを開くとクラッシュし、新しい google-services.json を既に配置して SDK を更新したというエラーが表示されます。
これが私のメインアクティビティです
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//Check Google play service
GoogleApiAvailability googleAPI = GoogleApiAvailability.getInstance();
int resultCode = googleAPI.isGooglePlayServicesAvailable(this);
if (resultCode != ConnectionResult.SUCCESS) {
if (GooglePlayServicesUtil.isUserRecoverableError(resultCode)) {
GooglePlayServicesUtil.getErrorDialog(resultCode, this,
PLAY_SERVICES_RESOLUTION_REQUEST).show();
} else {
Log.e(LOG_TAG, "This device is not supported.");
finish();
}
}
Log.i(TAG, "InstanceID token: " + FirebaseInstanceId.getInstance().getToken());
}
}
ベストアンサー1
もう一度確認してください。
apply plugin: 'com.google.gms.google-services'
アプリのGradleファイルの下部にプロジェクトをクリーンアップして再構築します