![JAR search and dependency download from the Maven repository](/logo.png)
com.datadog.gradle.plugin.SdkCheckLevel.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dd-sdk-android-gradle-plugin Show documentation
Show all versions of dd-sdk-android-gradle-plugin Show documentation
Plugin to upload Proguard/R8 mapping files to Datadog.
The newest version!
/*
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0.
* This product includes software developed at Datadog (https://www.datadoghq.com/).
* Copyright 2020-Present Datadog, Inc.
*/
package com.datadog.gradle.plugin
/**
* Defines the action which plugin should take if Datadog SDK is missing
* in the project dependencies.
*/
enum class SdkCheckLevel {
/**
* Do nothing if SDK is missing in the dependencies.
*/
NONE,
/**
* Log a warning if SDK is missing in the dependencies.
*/
WARN,
/**
* Fail the build if SDK is missing in the dependencies.
*/
FAIL
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy