EditionsConfiguration

data class EditionsConfiguration(val maxZoomFactor: Float = 1.0f, val storageLocation: StorageOption = StorageOption.INTERNAL)

Configuration class for Editions to be used in its constructor

  • maxZoomFactor can be a value in 1.0, 10.0 range. This value controls the max zoom factor the user can apply beyond the full issue resolution.

  • Use storageLocation to select either StorageOption.INTERNAL or StorageOption.EXTERNAL storage, the latter generally being an SD card. Changing this setting requires an app restart, and it is recommended to clear out current issues with DownloadedEditionsManager.deleteAllDownloadedEditions.

Constructors

Link copied to clipboard
constructor(maxZoomFactor: Float = 1.0f, storageLocation: StorageOption = StorageOption.INTERNAL)

Properties

Link copied to clipboard
val maxZoomFactor: Float = 1.0f
Link copied to clipboard
val storageLocation: StorageOption