com.bugsnag.android.gradle
Owner: Bugsnag
Gradle plugin to automatically upload ProGuard mapping files to Bugsnag.
https://github.com/bugsnag/bugsnag-android-gradle-plugin/
Sources: https://github.com/bugsnag/bugsnag-android-gradle-plugin.git
Version 5.7.6
5.7.6
Created 08 April 2021.
Gradle plugin to automatically upload ProGuard mapping files to Bugsnag.
Using the plugins DSL:
plugins {
id("com.bugsnag.android.gradle") version "5.7.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.bugsnag:bugsnag-android-gradle-plugin:5.7.6")
}
}
apply(plugin = "com.bugsnag.android.gradle")
Using the plugins DSL:
plugins {
id "com.bugsnag.android.gradle" version "5.7.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.bugsnag:bugsnag-android-gradle-plugin:5.7.6"
}
}
apply plugin: "com.bugsnag.android.gradle"