com.bugsnag.android.gradle.BugsnagPluginExtension.groovy 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 groovy.transform.CompileStatic
/**
* Defines configuration options (Gradle plugin extensions) for the BugsnagPlugin
*/
@CompileStatic
class BugsnagPluginExtension {
String endpoint = 'https://upload.bugsnag.com'
String releasesEndpoint = 'https://build.bugsnag.com'
@Deprecated
String apiKey = null
boolean autoUpload = true
boolean autoReportBuilds = true
boolean autoProguardConfig = true
boolean uploadDebugBuildMappings = false
boolean overwrite = false
int retryCount = 0
Boolean ndk = null
String sharedObjectPath = null
String projectRoot = null
boolean failOnUploadError = true
int requestTimeoutMs = 60000
// release API values
String builderName = null
Map metadata = null
Map objdumpPaths = null
}
@CompileStatic
class SourceControl {
String provider = null
String repository = null
String revision = null
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy