फायरबेस क्लाउड मैसेजिंग में माइग्रेट करने के बाद। मेरा ऐप खोलने पर यह क्रैश हो जाता है और यह कहते हुए एक त्रुटि निकालता है कि java.lang.IllegalStateException: FirebaseApp with name [DEFAULT] doesn't exist.
मैंने अपनी नई google-services.json डाल दी है और अपने SDK को अपडेट कर रहा हूं।
यहाँ मेरी MainActivity है
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());
}
}
apply plugin: 'com.google.gms.google-services'
मेरे ऐप Gradle से लेकिन जब बुला एक नया त्रुटि का सामना करनाFirebaseInstanceId.getInstance().getToken()
मेरे मेंMainActivity
मेरी ऐप्लिकेशन क्रैश।