com.avito.plugin.SignExtension.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of signer Show documentation
Show all versions of signer Show documentation
Collection of infrastructure libraries and gradle plugins of Avito Android project
package com.avito.plugin
import com.android.builder.model.BuildType
open class SignExtension {
internal val apkSignTokens = mutableMapOf()
internal val bundleSignTokens = mutableMapOf()
// todo rename to url
var host: String? = null
fun apk(variant: BuildType, token: String?) {
apkSignTokens[variant.name] = token
}
fun bundle(variant: BuildType, token: String?) {
bundleSignTokens[variant.name] = token
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy