I have searched through net about C2DM and the process of registration of android device to the C2DM is very confusing. In the code below :-
Intent rI = new Intent ("com.google.android.c2dm.intent.REGISTER");
rI.putExtra("app",PendingIntent.getBroadcast(this, 0, new Intent(), 0));
rI.putExtra("sender", "myapp@example.com");
this.startService(rI);
What is "app", "sender" and "myapp@example.com"? I tried to signup for the Android C2DM but I couldn't understand what is the Role account email. Any advice is appreciated.