Remote Config
remoteConfig
import io.hackle.sdk.HackleClient
import io.hackle.sdk.common.User
import io.hackle.sdk.common.HackleRemoteConfig
// User object — refer to the User Identifier & Properties guide
val user: User = Hackle.user("ae2182e0")
// Returns an instance containing Remote Config information.
val remoteConfig: HackleRemoteConfig = hackleClient.remoteConfig(user)import io.hackle.sdk.HackleClient
import io.hackle.sdk.common.User
import io.hackle.sdk.common.HackleRemoteConfig
// User object — refer to the User Identifier & Properties guide
User user = User.of("ae2182e0")
// Returns an instance containing Remote Config information.
HackleRemoteConfig remoteConfig = hackleClient.remoteConfig(user);Query Remote Config Parameters
getString
getInt
getDouble
getLong
getBoolean
Last updated