com.datadoghq.dd-sdk-android-gradle-plugin
                  Owner:
                  
                    
                    Datadog Mobile RUM
                  
                
This plugin is used to upload your Proguard/R8 mapping files to Datadog to get a complete Error Tracking experience
https://docs.datadoghq.com/real_user_monitoring/error_tracking/android/
Sources: https://github.com/DataDog/dd-sdk-android-gradle-plugin
Version 1.13.0
Created 09 April 2024.
                This plugin is used to upload your Proguard/R8 mapping files to Datadog.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.datadoghq.dd-sdk-android-gradle-plugin") version "1.13.0"
}See also:
- 
                Adding the plugin to build logic for usage in precompiled script plugins.See the relevant documentation for more information. Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.datadoghq.dd-sdk-android-gradle-plugin:com.datadoghq.dd-sdk-android-gradle-plugin.gradle.plugin:1.13.0") }It can then be applied in the precompiled script plugin:plugins { id("com.datadoghq.dd-sdk-android-gradle-plugin") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.datadoghq.dd-sdk-android-gradle-plugin:com.datadoghq.dd-sdk-android-gradle-plugin.gradle.plugin:1.13.0") } } apply(plugin = "com.datadoghq.dd-sdk-android-gradle-plugin")
- Applying plugins to all subprojects .