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 8.0.0-beta01
8.0.0-beta01
Created 01 March 2023.
Gradle plugin to automatically upload ProGuard mapping files to Bugsnag.
Using the plugins DSL:
plugins {
id("com.bugsnag.android.gradle") version "8.0.0-beta01"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.bugsnag:bugsnag-android-gradle-plugin:8.0.0-beta01")
}
}
apply(plugin = "com.bugsnag.android.gradle")
Using the plugins DSL:
plugins {
id "com.bugsnag.android.gradle" version "8.0.0-beta01"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.bugsnag:bugsnag-android-gradle-plugin:8.0.0-beta01"
}
}
apply plugin: "com.bugsnag.android.gradle"