I wanted to know the package name for Google meet in Android and iOS. Currently I know the package name for Zoom and Teams in Android manifest. This is my Android manifest code where I'm specifying the package name for Zoom and Teams
<queries>
<package android:name="us.zoom.videomeetings" />
<package android:name="com.microsoft.teams" />
</queries>
in iOS I need the property for both Teams and google meet. This is the Info.plist code where I'm specifying the property for Zoom
<string>10</string>
<key>LSApplicationQueriesSchemes</key>
<array/>
<key>Custom Property</key>
<string>zoomus</string>
I checked for the solution but I didn't find the package name or property anywhere for google meet. I have no clue how to fix this.