Róbert Papp

Results 398 issues of Róbert Papp

https://youtrack.jetbrains.com/issue/KT-25749

a:feature
in:test
on:gradle

Curtesy of `@lwasyl` from https://androidstudygroup.slack.com/archives/C03KKLGC2/p1617712300160800 https://docs.gradle.org/current/userguide/build_services.html ```gradle // in project root module's build.gradle tasks.register("connectedCheck").configure { dependsOn(subprojects.collect { "${it.path}:connectedCheck" }) } evaluationDependsOnChildren() // TODO somehow remove this allprojects \ .collectMany {...

a:feature
on:agp
in:private
in:android

`org.gradle.configureondemand=true` fails `:plugin:test` task. Note: parallel, caching can be turned off, those don't have an effect here. ``` Configuration on demand is an incubating feature. Type-safe dependency accessors is an...

a:bug
in:build
on:gradle

```diff Index: test/src/main/kotlin/net/twisterrob/gradle/test/GradleRunnerRule.kt IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP UTF-8 =================================================================== diff --git a/test/src/main/kotlin/net/twisterrob/gradle/test/GradleRunnerRule.kt b/test/src/main/kotlin/net/twisterrob/gradle/test/GradleRunnerRule.kt --- a/test/src/main/kotlin/net/twisterrob/gradle/test/GradleRunnerRule.kt +++ b/test/src/main/kotlin/net/twisterrob/gradle/test/GradleRunnerRule.kt @@ -80,12 +80,12 @@ } } - internal fun before() { +...

in:build
on:agp
in:test
on:gradle

https://github.com/JakeWharton/docker-mbsync/blob/master/.github/workflows/build_and_publish.yml

a:feature
in:lint
in:checkstyle
in:pmd
on:gradle
in:detekt
in:errorprone

https://docs.gradle.org/current/userguide/java_testing.html#publishing_test_fixtures

``` android.defaultConfig.javaCompileOptions.annotationProcessorOptions.includeCompileClasspath = false ```

a:feature
in:private