We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c54533a + 2746678 commit b6f5877Copy full SHA for b6f5877
embrace-gradle-plugin/src/main/java/io/embrace/android/gradle/plugin/EmbraceGradlePlugin.kt
@@ -24,6 +24,12 @@ class EmbraceGradlePlugin : Plugin<Project> {
24
}
25
26
override fun apply(project: Project) {
27
+ logger.warn(
28
+ "Deprecation warning: in the next major release (8.0.0), the Embrace Gradle plugin ID will be renamed from " +
29
+ "'io.embrace.swazzler' to 'io.embrace.gradle'. When upgrading to the next major release, you will need to " +
30
+ "reference the new plugin ID: io.embrace.gradle"
31
+ )
32
+
33
validateMinGradleVersion()
34
35
val extension = project.extensions.create(
0 commit comments