com.bugsnag.android.gradle.BugsnagFileUploadTask.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bugsnag-android-gradle-plugin Show documentation
Show all versions of bugsnag-android-gradle-plugin Show documentation
Gradle plugin to automatically upload ProGuard mapping files to Bugsnag.
package com.bugsnag.android.gradle
import com.bugsnag.android.gradle.internal.BugsnagHttpClientHelper
import org.gradle.api.provider.Property
interface BugsnagFileUploadTask {
val failOnUploadError: Property
val overwrite: Property
val endpoint: Property
val retryCount: Property
val timeoutMillis: Property
val httpClientHelper: Property
fun configureWith(bugsnag: BugsnagPluginExtension) {
failOnUploadError.set(bugsnag.failOnUploadError)
overwrite.set(bugsnag.overwrite)
endpoint.set(bugsnag.endpoint)
retryCount.set(bugsnag.retryCount)
timeoutMillis.set(bugsnag.requestTimeoutMs)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy