Obsolete
Status Update
Comments
ae...@google.com <ae...@google.com> #2
Hi there!
When you create the new group, what fields are you adding? Only email
or are you adding more?
Have a nice day!
an...@google.com <an...@google.com> #3
Hi,
When I am creating again this group with same email and we are setting all these things using Admin SDK API
1- Group Name.
2- Group Email(Same as old email we need in our Application to use this group email).
3- Group Description.
In Our we will use or Create Group if suppose it is deleted or not in Google workspace console, we will create every time with fixed same email always that is need of our Application.
If suppose it is saying "A group or alias already exists with this email" why we are not able to search and view this group.
Thanks
Ashraf
SBC Technology
When I am creating again this group with same email and we are setting all these things using Admin SDK API
1- Group Name.
2- Group Email(Same as old email we need in our Application to use this group email).
3- Group Description.
In Our we will use or Create Group if suppose it is deleted or not in Google workspace console, we will create every time with fixed same email always that is need of our Application.
If suppose it is saying "A group or alias already exists with this email" why we are not able to search and view this group.
Thanks
Ashraf
SBC Technology
go...@yougotagift.com <go...@yougotagift.com> #4
Hi there!
I can't seem to be able to reproduce this behavior. I'm guessing that you already tried using
Thank you and have a nice day!
an...@google.com <an...@google.com> #5
Hi Team,
Yes we already tried groups.get and not able to get the same group in domain.
And getting error as:
{
"error": {
"code": 403,
"message": "Not Authorized to access this resource/api",
"errors": [
{
"message": "Not Authorized to access this resource/api",
"domain": "global",
"reason": "forbidden"
}
]
}
}
But when I tried to find other groups in domain and able to find those in API explorer.
Have you created a group and deleted the same group and again created the group with the same email Id? We are able to reproduce this behavior 100% in our two domains.
Please check this again from your end why is this happening ?
Thanks
Ashraf
SBC Technology
Yes we already tried groups.get and not able to get the same group in domain.
And getting error as:
{
"error": {
"code": 403,
"message": "Not Authorized to access this resource/api",
"errors": [
{
"message": "Not Authorized to access this resource/api",
"domain": "global",
"reason": "forbidden"
}
]
}
}
But when I tried to find other groups in domain and able to find those in API explorer.
Have you created a group and deleted the same group and again created the group with the same email Id? We are able to reproduce this behavior 100% in our two domains.
Please check this again from your end why is this happening ?
Thanks
Ashraf
SBC Technology
Description
Jetpack Compose version: 1.2.1 with compiler 1.3.1
Jetpack Compose component(s) used: LazyColumn
Android Studio Build: Android Studio Chipmunk | 2021.2.1 Patch 2 Build #AI-212.5712.43.2112.8815526, built on July 10, 2022
Kotlin version: 1.7.10
Steps to Reproduce or Code Sample to Reproduce:
animateFloat()
and the corresponding modifier property whilst also invokingThe same apparent issue is present with either
animateScrollToItem
orscrollToItem
. The issue can be mitigated by delaying the LazyColumn scroll long enough for the collapse animation to complete, though this has consequences for the user experience and feels like a hack.I would expect that the scroll position would be relative to the item index targeted and that changes to items above the target one would be inconsequential to the ending scroll position, though I can see how items changing their size could break assumptions when calculating scroll offsets, particularly when said size change is happening over time.
Code sample: I encountered this issue working on a fork of the Appyx project (branch
tiles_in_columns
, commit hash0baf7214
, composable defined inTileColumnExampleNode
with animations defined inTileColumnTransitionHandler
) - as it's using the Appyx framework to manage the selected/deselected transition animation it doesn't make the best showcase for the issue, but it should hopefully serve as a working example. You can launch the sandbox app, select "NavModel Examples" then "Tile Column example" to load up the screen seen in the video which demonstrates the issue.See attached video demonstrating: