Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is it the GSF_PACKAGE I found in the C2DM Tutorial?
To be precise:

public static final String GSF_PACKAGE = "com.google.android.gsf"

It was used in intent:

registrationIntent.setPackage(GSF_PACKAGE);

On the developers site I found this:

"setPackage(String packageName) (Usually optional) Set an explicit application package name that limits the components this Intent will resolve to."

Anyway, what limits and why they might be needed?

share|improve this question

1 Answer

up vote 13 down vote accepted

gsf = google services framework

share|improve this answer
Thank you for your answer! – lomza Jun 29 '11 at 10:05
This does not explain why I have to set it. Any clues about that? – Janusz Jul 25 '11 at 8:06
1  
you can find the answer here: stackoverflow.com/questions/8050244/… – lomza May 11 '12 at 6:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.