Parse Push: Connect an Android app to multiple Parse apps

Can I subscribe to an Android app for more than one Parse app?

At Parse.com I have 2 apps (with their own keys). I am developing an Android application that needs to "initialize" these 2 Parse applications in order to receive clicks from them. Something like:

Parse.initialize(context, PARSE_APP1_ID, PARSE_APP1_KEY);
Parse.initialize(context, PARSE_APP2_ID, PARSE_APP2_KEY);

      

Is it possible?

I want this beacuse one of these Parse apps to be a "general notification" for all my apps and the other to be a specific backend / app notification.

Thank.

+3


source to share


1 answer


No, It is Immpossible. The parse.com interaction methods provide no way to specify which application to use, which means they cannot target different applications.



0


source







All Articles