Jump to Content
Pulsate DocumentationiOS SDKAndroid SDKPulsate CMS APISDK API
HomeGuidesAPI Reference
iOS SDKAndroid SDKPulsate CMS APISDK APILog InPulsate Documentation
API Reference
Log In
HomeGuidesAPI Reference

Start Here

  • What is Pulsate?
  • Quick Start Guide (Must read)

SDK Quick Start

  • Installing the Pulsate SDK
  • Pulsate Sessions
  • Example SDK Flow
  • Requesting Permissions
  • Location Permission Implementation
  • Google Location Permission Approval Process

SDK Basic

  • Pulsate Inbox
    • Deeplinks
    • Theming
    • Language Localization
  • Push Notifications
    • FCM Configuration
    • Badges
    • Notification Icons
  • Updating User Data
    • Personal Data
    • Custom Attributes
    • Custom Events
    • Privacy Settings
    • Location Settings
  • In App Notification
    • Small In App Duration
    • Blocking In Apps

SDK Advanced

  • User & Inbox Authorization - Android
  • Custom Pulsate Inbox
  • Reducing APK size
  • Using Proguard

Recourses

  • Android SDK Release Notes
  • PulsateManager Methods
  • Dependencies

MENU

  • Home
  • iOS SDK
  • Android SDK
  • Pulsate API
  • SDK API
  • FAQ
Powered by 

Small In App Duration

Small In App Notifications by default are visible 12secs if you need them to be visible longer or shorter use the "setSmallInAppNotificationDuration(int seconds)" method.

val pulsateManager = PulsateFactory.getInstance()
pulsateManager.isInAppNotificationEnabled(object : IPulsateValueListener<Boolean?> {
  override fun onSuccess(value: Boolean?) {}
  override fun onError(e: Throwable) {}
})