com.bugsnag.android.gradle.SourceControl.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 org.gradle.api.model.ObjectFactory
import org.gradle.api.provider.Property
import javax.inject.Inject
open class SourceControl @Inject constructor(objects: ObjectFactory) {
val provider: Property = objects.property(String::class.java)
val repository: Property = objects.property(String::class.java)
val revision: Property = objects.property(String::class.java)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy