Process P1
Status Update
Comments
na...@google.com <na...@google.com> #2
Both the code blocks are doing exactly same.
st...@google.com <st...@google.com> #3
The first does:
return getTotalLocalFileSize(f.listFiles()) + 1;
Instead of:
count += getTotalLocalFileSize(f.listFiles()) + 1;
for directories, which means it breaks the loop, ignoring the value of count and any other files or directories that might be in the array.
return getTotalLocalFileSize(f.listFiles()) + 1;
Instead of:
count += getTotalLocalFileSize(f.listFiles()) + 1;
for directories, which means it breaks the loop, ignoring the value of count and any other files or directories that might be in the array.
Description
androidx.wear.compose:compose-material3
is on1.0.0-alpha34
with the1.0.0-alpha01
on 3/22/2023. That is an excessively large number of alphas. Please graduate this library to1.0.0
stable.