SDKConfigurationFile

data class SDKConfigurationFile(val path: String, val source: SDKConfigurationFile.Source)

Object representing a Configuration file It can be a file inside a APK (in assets) or an external file.

Parameters

path

of the file For an Asset File, only file name is required ("file.bin") For Storage File, full path is required (context.filesDir.absolutePath + "/file.bin")

source

source of the file

Constructors

Link copied to clipboard
constructor(path: String, source: SDKConfigurationFile.Source)

Types

Link copied to clipboard

Asset: file is packaged inside the APK in the asset folder Storage: file is in the phone storage

Properties

Link copied to clipboard
Link copied to clipboard