copy

@RestrictToExtendedFlavor(value = [ExternalScope.LIBRARY_GROUP])
fun copy(ndsStorePath: File = this.ndsStorePath, keystorePath: File? = this.keystorePath, accessPermit: NdsStoreAccessPermit? = this.accessPermit, geopoliticalView: String? = this.geopoliticalView): NdsStoreConfiguration

Deprecated

This will be removed from future releases after 2026-07-26.

Replace with

NdsStoreConfiguration(ndsStorePath, keystorePath, accessPermit, geopoliticalView)

Creates a copy of this NdsStoreConfiguration object with optional parameter overrides.

Return

A copy of this NdsStoreConfiguration object with optionally modified properties.

Parameters

ndsStorePath

The path to the NDS Store, the directory that contains the 'ROOT.NDS' file, defaults to the current value.

keystorePath

The path to the keystore file containing encryption keys for the NDS store files, defaults to the current value.

accessPermit

The permit to access NDS store.

geopoliticalView

The country code in the ISO 3166-1 alpha-3 format, defaults to the current value.

See also