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);
}
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);
}
Aggregations