How to check which epxo-* modules need which Android permissions?

I’m trying to reduce my permissions set to the minimum. How can I see which permissions are needed by each module?

Is the correct appraoch to go to the github repo the module and then check in android/src/main/AndroidManifest.xml?

Like for example for expo install expo-updates I would go here:

https://github.com/expo/expo/blob/master/packages/expo-updates/android/src/main/AndroidManifest.xml

So this shows:

<manifest package="expo.modules.updates"
    xmlns:android="http://schemas.android.com/apk/res/android">
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
</manifest>

So I should make sure to include in my app.json permissions key the “ACCESS_NETWORK_STATE”?