Slackbot
04/20/2023, 1:32 PMJavi
04/20/2023, 1:33 PMextension.getByType(PlayPublisherExtension), register method doesn't existThomas Broyer
04/20/2023, 1:43 PMNamedDomainObjectContainer<PlayPublisherExtension>, you'll have to get it by name.
See https://github.com/Triple-T/gradle-play-publisher/blob/77b069708cfd1bedfce5424af2c4a92cc9439763/testapp/build.gradle.kts#L97 for an example.Javi
04/20/2023, 1:45 PMconfigure<NamedDomainObjectContainer<PlayPublisherExtension>>, thank you!Thomas Broyer
04/20/2023, 1:52 PMkotlin-dsl extension for `configure(TypeOf,Action)`: https://docs.gradle.org/current/javadoc/org/gradle/api/plugins/ExtensionContainer.html#configure-org.gradle.api.refl[…]TypeOf-org.gradle.api.Action-