...
Code Block | ||
---|---|---|
| ||
final PopNotificationConfig popNotificationConfig = new PopNotificationConfig.Builder()
.smallIconResId(R.drawable.ic_notification_pop_gift)
.notificationId(NOTIFICATION_ID)
.build();
final PopConfig popConfig = new PopConfig.Builder(getApplicationContext(), UNIT_ID_POP)
...(생략)...
.popNotificationConfig(popNotificationConfig)
.controlService(CustomControlService.class)
.build();
final BuzzAdBenefitConfig buzzAdBenefitConfig = new BuzzAdBenefitConfig.Builder(context)
...(생략)...
.setPopConfig(popConfig)
.build(); |
...