Status Update
Comments
ri...@zzapps.nl <ri...@zzapps.nl> #2
Lint only runs on this project, not its dependencies because we set checkDependencies = false
This is WAI after checkDependencies = false
is not WAI.
sy...@gmail.com <sy...@gmail.com> #3
This has been fixed with
Cherry-picking to the AGP 8.2 branch is currently blocked, so leaving this bug open until I'm able to cherry-pick the fix.
ry...@google.com <ry...@google.com>
ek...@google.com <ek...@google.com> #4
The fix has been merged in AGP 8.2.0-beta01.
fu...@gmail.com <fu...@gmail.com> #5
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.compose.material3:material3:1.2.0-alpha07
androidx.compose.material3:material3-android:1.2.0-alpha07
androidx.compose.ui:ui:1.6.0-alpha05
androidx.compose.ui:ui-android:1.6.0-alpha05
androidx.lifecycle:lifecycle-livedata-ktx:2.7.0-alpha02
androidx.wear.compose:compose-material3:1.0.0-alpha11
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