Status Update
Comments
ri...@zzapps.nl <ri...@zzapps.nl> #2
Thank you for this feedback. The team may reach out for more information on triaging or reproducing this issue.
sy...@gmail.com <sy...@gmail.com> #3
I have tried the example project you've provided, it does not reproduce.
Could you please try running with -Pandroid.useDexArchive=false? This disables the new dexing pipeline, and fallbacks to the old one.
Could you please try running with -Pandroid.useDexArchive=false? This disables the new dexing pipeline, and fallbacks to the old one.
ry...@google.com <ry...@google.com>
ek...@google.com <ek...@google.com> #4
@Mario Did you get a chance to try the build with -Pandroid.useDexArchive=false flag?
fu...@gmail.com <fu...@gmail.com> #5
I'm the college of @Mario and I make it work without issues and without using -Pandroid.useDexArchive=false by using alpha6 and removing retrolambda
Description
Code:
// Add a user property programmatically
function addUserProperty() {
PropertiesService.getUserProperties().setProperty("hello", "world");
}
// A workaround to view user properties without the buggy GUI
function viewUserPropteries() {
if (PropertiesService.getUserProperties().getKeys().length == 0) Logger.log("No user properties were found");
var userPropertyKeys = PropertiesService.getUserProperties().getKeys();
for (var i in userPropertyKeys)
Logger.log(userPropertyKeys[i] + ": " + PropertiesService.getUserProperties().getProperty(userPropertyKeys[i]));
}
What steps will reproduce the problem?
1. Run the addUserProperty function.
2. Go to File > Script Properties > User Properties to verify that User Properties don't show up.
3. Fun the viewUserProperties function.
4. Go to View > Logs to see that User Property was actually added.
My Project Key:
MfC3XoA27RI93fsNhSs4OUdRC-x2FyjMt