Assigned
Status Update
Comments
je...@google.com <je...@google.com>
cm...@google.com <cm...@google.com> #2
Related:
cm...@google.com <cm...@google.com> #3
Thanks for your request. We will investigate this issue and see if we can implement the behavior you've requested.
lu...@google.com <lu...@google.com>
je...@googlemail.com <je...@googlemail.com> #4
As an additional alternative, it should be possible to specify a label in the options for GmailApp.sendEmail().
A work-around is proposed in StackOverflow:http://stackoverflow.com/a/18727687/1677912
A work-around is proposed in StackOverflow:
cm...@google.com <cm...@google.com> #5
Are there any news on adding the ability to archive and add a label to specific emails (not threads)? From a corporate shared mailbox perspective auto threading emails by subject is a serious issue (eg. we recive two emails from the same person with same subject but with different description).
Since it's available in pure mailbox view is that such a big effort to make it available also in Google Script?
Since it's available in pure mailbox view is that such a big effort to make it available also in Google Script?
zy...@google.com <zy...@google.com> #6
Looking forward to having this implemented. As has been mentioned automatic threading based on subject is a big no-no for our enterprise. We get automated reports and other documents sent to us by customers and suppliers and they are lumped together in threads making it very difficult for me to let Apps Script process them automatically since labels (i.e. outlook folders) have to be applied to entire threads (even though the messages in these threads often need to be treated differently).
Description
TLDR: AGP should fail to build if AAPT fails to parse an xml string resource that is too large.
If an Android application includes a string xml resource that exceeds 32k characters, AAPT will fail to encode this string and instead replace it with "STRING_TOO_LARGE". This unfortunately has impacted a few 3p developers that are including xml based vector assets that include path strings that are very large (> 32k characters). AAPT ends up replacing this path information with the actual string "STRING_TOO_LARGE" which ends up failing parsing of the vector asset at runtime.
There was an initial attempt to detect this error at runtime and throw a corresponding error to the developer, however, instead we should front load this error at build time. It appears that when working on the following CL with test to verify this error is being detected, androidx infra is properly failing the build on this warning, however, this does not appear to be the default behavior for AGP.
See:https://android-review.git.corp.google.com/c/platform/frameworks/support/+/2753066 Androidx
And corresponding error here: