Sergey C.
Sergey C.
I would love to see this feature implemented!
Perhaps something like: ```java @BaseUrl("https://host1.mydomain.com") public interface MyService1 { @GET("get_something") Call getSomething(); // ... Many other methods that use the same baseUrl } ``` Where `@BaseUrl` is a user-defined annotation....
> it would be clang modules, not C++20 modules. Should we create a separate issue for C++20 modules then? I'm only interested in those as I'm using MSVC on Windows.
@matejdro did you figure out how to debug "Test framework quit unexpectedly"? I'm getting that error repeatedly with Spek 2.0.10 and AGP 3.6.1 but can't find any logs.
In our case `Test framework quit unexpectedly` was caused by Spek's incompatibility with a newer version of Classgraph which came with KotlinFixture. We had 4.8.58 instead of 4.8.37.
`ConcurrentModificationException` can be thrown because your app is still making network requests after UI test has finished executing. You can work around it by using an Espresso idling resource for...
@thomasnield you don't need both `maven` and `maven-publish` plugins since they do the same thing. `maven-publish` is a modern one. See my changes here https://gist.github.com/technoir42/fc3275a3ecd83e6c9bd9deccaf80f265/revisions. To publish to mavenLocal using...
@thomasnield no, `./gradlew publishToMavenLocal` will publish to `~/.m2/` aka mavenLocal where you can verify the artifacts and POM metadata (e.g. dependencies). Once you are sure that everything is correct you...
#14 might fix this.
Not yet, I used version 4.2.0 as an example.