ProviderManifest

@Serializable
data class ProviderManifest(val id: String, val name: String, val versionName: String, val versionCode: Long, val updateUrl: String?, val providerClassName: String, val requiresResources: Boolean)(source)

Represents the manifest information of a provider.

Constructors

Link copied to clipboard
constructor(id: String, name: String, versionName: String, versionCode: Long, updateUrl: String?, providerClassName: String, requiresResources: Boolean)

Properties

Link copied to clipboard
val id: String

The unique identifier of the provider.

Link copied to clipboard

The name of the provider.

Link copied to clipboard

The fully qualified class name of the provider.

Link copied to clipboard

Indicates whether the provider requires resources from the main application/apk.

Link copied to clipboard

The URL to fetch the latest version of the provider.

Link copied to clipboard

The version code of the provider.

Link copied to clipboard

The version name of the provider.