Skip to content

Commit

Permalink
Fix plugin class
Browse files Browse the repository at this point in the history
  • Loading branch information
tresat committed Nov 4, 2024
1 parent 0feb79a commit ef9ca2c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,14 @@ gradlePlugin {
id = "org.gradle.experimental.android-test"
displayName = "Android Test Experimental Declarative Plugin"
description = "Experimental declarative plugin for Android test projects"
implementationClass = "org.gradle.api.experimental.android.application.StandaloneAndroidTestPlugin"
implementationClass = "org.gradle.api.experimental.android.test.StandaloneAndroidTestPlugin"
tags = setOf("declarative-gradle", "android")
}
create("android-ecosystem") {
id = "org.gradle.experimental.android-ecosystem"
displayName = "Android Ecosystem Experimental Declarative Plugin"
description = "Experimental declarative plugin for the Android ecosystem"
implementationClass = "org.gradle.api.experimental.android.test.AndroidEcosystemPlugin"
implementationClass = "org.gradle.api.experimental.android.AndroidEcosystemPlugin"
tags = setOf("declarative-gradle", "android")
}
}
Expand Down

0 comments on commit ef9ca2c

Please sign in to comment.