Search in sources :

Example 11 with PushNotificationEnvelope

use of com.kickstarter.services.apiresponses.PushNotificationEnvelope in project android-oss by kickstarter.

the class DebugPushNotificationsView method simulateProjectUpdateButtonClick.

@OnClick(R.id.simulate_project_update_button)
public void simulateProjectUpdateButtonClick() {
    final GCM gcm = GCM.builder().title("News from Taylor Moore").alert("Update #1 posted by SKULL GRAPHIC TEE.").build();
    final Activity activity = Activity.builder().category(com.kickstarter.models.Activity.CATEGORY_UPDATE).id(7).projectId(PROJECT_ID).projectPhoto(PROJECT_PHOTO).updateId(1033848L).build();
    final PushNotificationEnvelope envelope = PushNotificationEnvelope.builder().activity(activity).gcm(gcm).build();
    pushNotifications.add(envelope);
}
Also used : GCM(com.kickstarter.models.pushdata.GCM) PushNotificationEnvelope(com.kickstarter.services.apiresponses.PushNotificationEnvelope) Activity(com.kickstarter.models.pushdata.Activity) OnClick(butterknife.OnClick)

Example 12 with PushNotificationEnvelope

use of com.kickstarter.services.apiresponses.PushNotificationEnvelope in project android-oss by kickstarter.

the class DebugPushNotificationsView method simulateFriendFollowButtonClick.

@OnClick(R.id.simulate_friend_follow_button)
public void simulateFriendFollowButtonClick() {
    final GCM gcm = GCM.builder().title("You're in good company").alert("Christopher Wright is following you on Kickstarter!").build();
    final Activity activity = Activity.builder().category(com.kickstarter.models.Activity.CATEGORY_FOLLOW).id(2).userPhoto(USER_PHOTO).build();
    final PushNotificationEnvelope envelope = PushNotificationEnvelope.builder().activity(activity).gcm(gcm).build();
    pushNotifications.add(envelope);
}
Also used : GCM(com.kickstarter.models.pushdata.GCM) PushNotificationEnvelope(com.kickstarter.services.apiresponses.PushNotificationEnvelope) Activity(com.kickstarter.models.pushdata.Activity) OnClick(butterknife.OnClick)

Aggregations

PushNotificationEnvelope (com.kickstarter.services.apiresponses.PushNotificationEnvelope)12 GCM (com.kickstarter.models.pushdata.GCM)9 OnClick (butterknife.OnClick)8 Activity (com.kickstarter.models.pushdata.Activity)7 Intent (android.content.Intent)2 Test (org.junit.Test)2 Notification (android.app.Notification)1