'What are the package name for google meet and Microsoft teams in Android and iOS?

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. Any suggestions?



Solution 1:[1]

"Google Meet" has the package name :

com.google.android.apps.meetings

"Microsoft Teams" has the package name :

com.microsoft.teams

"Google Chat" has the package name :

com.google.android.apps.dynamite

Solution 2:[2]

you can check Android package with Google Play Store link, its an id:

link: https://play.google.com/store/apps/details?id=com.google.android.apps.meetings

package: com.google.android.apps.meetings 

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Jorgesys
Solution 2 snachmsm