data class LibraryConfiguration
The library’s configuration.
Constructors | |
---|---|
LibraryConfiguration(license: LibraryConfiguration.LicenseConfiguration, language: LibraryConfiguration.LanguageConfiguration) |
Classes | |
---|---|
LicenseConfiguration | The configuration regarding the license. |
LanguageConfiguration | The configuration regarding the Keyboard’s layout |
Properties | |
---|---|
LicenseConfiguration | license The configuration regarding the license. |
LanguageConfiguration | language The configuration regarding the Keyboard’s layout |
LibraryConfiguration(
license: LibraryConfiguration.LicenseConfiguration = LicenseConfiguration(),
language: LibraryConfiguration.LanguageConfiguration = LanguageConfiguration()
)
Parameters | |
---|---|
license: LibraryConfiguration.LicenseConfiguration | The configuration regarding the license. |
language: LibraryConfiguration.LanguageConfiguration | The configuration regarding the Keyboard’s layout. |
data class LicenseConfiguration(val licenseKey: String? = null, val licenseSecret: String? = null)
The configuration regarding the license.
Parameters | |
---|---|
licenseKey: String? | License key |
licenseSecret: String? | License secret |
data class LanguageConfiguration(val layoutType: LayoutType)
The configuration regarding the Keyboard’s layout.
Parameters | |
---|---|
layoutType: LayoutType | Layout type |
val license: LicenseConfiguration
The configuration regarding the license.
val language: LanguageConfiguration
The configuration regarding the Keyboard’s layout.