针对Android中的特定设备推送通知

时间:2014-04-28 13:33:06

标签: android push-notification

您好在我的应用程序中我想将通知发送到特定的设备。任何人请告诉我我必须添加此代码。发送到多个设备它的工作,但我想发送特定的设备。

import com.parse.Parse;
import com.parse.ParseInstallation;
import com.parse.ParseUser;
import com.parse.PushService;

import android.app.Application;

public class ParseApplication extends Application {

    @Override
    public void onCreate() {
        super.onCreate();

        // Add your initialization code here
        //Parse.initialize(this, "YOUR_APP_ID", "YOUR_CLIENT_KEY");
        //Parse.initialize(this, "", "");
        ParseUser.getCurrentUser().getObjectId();
        ParseInstallation.getCurrentInstallation().saveInBackground();
        Parse.initialize(this, "C2yxkDNMYElOezmEogThD9juS41XbF9ReGq2Avfx", "eL5aveox8KmGfUF613d9PjLhwvCM8aV7MTvV5wH8");

        PushService.setDefaultPushCallback(this, abc.class);



    }

谢谢,

1 个答案:

答案 0 :(得分:0)

以下是有关如何定位推送的文档:https://parse.com/docs/push_guide#sending-queries/Android