NdsStoreConfiguration
data class NdsStoreConfiguration( val ndsStorePath: File, val keystorePath: File? = null, val keystorePassword: String? = null, val ndsStoreUpdateConfig: NdsStoreUpdateConfig)
Content copied to clipboard
Configuration parameters for an NdsStore.
See also
for more details.
Parameters
ndsStorePath
The path to the NDS Store, the directory that contains the 'ROOT.NDS' file. The directory and its content must be accessible and writable.
keystorePath
Path to the keystore file containing encryption keys for the NDS store files. If the NDS store is encrypted, the keystore file is required.
keystorePassword
The password for the keystore file provided through the keystorePath parameter. If the keystore file is encrypted, this password is required.
ndsStoreUpdateConfig
The configuration for the updates of the NDS store.
Constructors
Link copied to clipboard
fun NdsStoreConfiguration( ndsStorePath: File, keystorePath: File? = null, keystorePassword: String? = null, ndsStoreUpdateConfig: NdsStoreUpdateConfig)
Content copied to clipboard