Great. :good:Code:password=et2.getText().toString();
---------- Post added at 12:58 PM ---------- Previous post was at 12:45 PM ----------
got the error.. thanks for your help![]()
Great. :good:Code:password=et2.getText().toString();
---------- Post added at 12:58 PM ---------- Previous post was at 12:45 PM ----------
got the error.. thanks for your help![]()
Why not? This guide doesn't use your server. It uses the company Parse's server.Hi!
The place i am sitting is behind a proxy, we have all the connection to the internet through a proxy server, so is there a way to use this technique from behind a proxy?
Here's a quick oneHy Marteen!
Thank you for the tutorial :good:
I have on equestion though ... Do you know how to implement code so that users of an app can subscribe to watever channel they like in order to receive notifications only from that cannel?
I mean I have a dialog where users can choose channels but pressing the submit button doesn't do anything yet![]()
PushService.subscribe(context, "YourChannel", YourActivity.class);
PushService.unsubscribe(context, "YourChannel");
Ok I got it. Thanks!Here's a quick one
And to unsubscribe again:Code:PushService.subscribe(context, "YourChannel", YourActivity.class);
Code:PushService.unsubscribe(context, "YourChannel");
public void onClick(View v) {
String loc = localitate.getSelectedItem().toString();
String str = strada.getText().toString();
sendFeedback (loc,str);
private void sendFeedback(String loc, String str) {
// TODO Auto-generated method stub
ParseInstallation installation = ParseInstallation.getCurrentInstallation();
installation.addAllUnique("channels", Arrays.asList(loc+str));
installation.saveInBackground();