Fixed
Status Update
Comments
ga...@google.com <ga...@google.com> #2
I have a tech partner (Neudesic) who could really use this feature... Any sense if/when this might be supported?
sa...@google.com <sa...@google.com> #3
ky...@icloud.com <ky...@icloud.com> #4
Is this being worked on?
ky...@icloud.com <ky...@icloud.com> #5
+1 this is practically a dealbreaker for us. RDS exposes every option in postgres.conf, I have no idea why GCP only exposes a tiny subset of flags.
If we aren't allowed access to postgres.conf directly, we need these options exposed. How am I supposed to debug slow queries on our DB server if I can't even log them?
If we aren't allowed access to postgres.conf directly, we need these options exposed. How am I supposed to debug slow queries on our DB server if I can't even log them?
Description
In the following execution:
Build C will not have correct android test runtime classpath. It is expected that
lib-0.1.90
should only be packaged in the main (tested) APK, but it will also be packged in the android test APK. This is because AGP fails to removelib-0.1.90
from the test runtime classpath because subtraction logic relies on removing the sameComponentArtifactIdentifier
and the same files (as-in the same paths on the file system), but here:ComponentArtifactIdentifier
for the main artifact isgroup:lib:0.1.90,filename=lib-0.1.87
and the test artifact isgroup:li:0.1.90,filename=lib-0.1.90
We need to modify AGP artifact transforms to:
$hash/transformed/dex/classes.dex
.At the same time, it feels like Gradle should probably not make file name part of the
ComponentArtifactIdentifier
.