JRun
JRun

Reputation: 3428

Android GCM without GooglePlus

Is it possible to use GCM (in the new API) for clients that don't have the GPlus APK installed?

I'm not liking the Google dialog approach:

GooglePlusUtil.getErrorDialog(gPlusErrorCode, activity, Constants.WAIT_FOR_RESULT_CODE).show();
  1. It doesn't return to my app immediately after install. It rather directs the users to use GPlus ('open')...
  2. It's friction (and maybe even serious friction). I don't want this affecting my conversion rate.

Also: Is there a mature XMPP alternative to GPlus for Android?

10x

Upvotes: 0

Views: 104

Answers (1)

CommonsWare
CommonsWare

Reputation: 1006744

Is it possible to use GCM (in the new API) for clients that don't have the GPlus APK installed?

Yes.

I'm not liking the Google dialog approach:

Since that code has nothing to do with GCM, I fail to see the problem.

Upvotes: 2

Related Questions