Nicklas Ansman
Nicklas Ansman
I was thinking more that it could be a special syntax in the message that is handled, maybe something like: `{attachment:%someFile%}` or `{contents:%someFile%}`
I believe one reason for this is parallel execution which spawns multiple processes which fight over the same resource. Running with the `--no-parallel` seems to help, at least for our...
Although `--no-parallel` gets further (as in more modules get completes), eventually I do hit the same error. This could indicate that this is caused by a memory leak. 512MB is...
Any updates on this? It's turning out to be a pretty massive issue because we're having trouble publishing our library that has lots of modules. Happy to spend some time...
This issue is even more problematic since the Gradle Daemon doesn't die but rather hangs so you have to manually kill it. The error in question something like this: ```...
Today I saw some new errors related to this: ``` ... java.lang.OutOfMemoryError: Metaspace WARN: Could not read file: /Users/nicklas/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib/1.4.20/9be77b243a362b745e365f286627b8724337009c/kotlin-stdlib-1.4.20.jar!/kotlin/SuspendKt.class; size in bytes: 1108; file type: CLASS java.lang.OutOfMemoryError: Metaspace WARN: Could...
The tool should check for covariant return types however but if the signature is identical to the parent signature it can be omitted from the spec.
You are protecting but you’ll still have issues if you’re calling `super` and the superclass removes a method. My biggest concern is that you’ll think that you’re making a binary...
I believe the problem comes from https://github.com/dcendents/android-maven-gradle-plugin/blob/master/src/main/java/org/gradle/api/plugins/AndroidMavenPlugin.java#L189 Only the dependencies from the `compile` configuration is considered. When I tried to add `releaseCompile` and `debugCompile` too it sort of works, though...
@dcendents Any thoughts on this?