The INTERNET permission is classified as a normal permission, which means it is automatically granted at install time and does not require explicit user approval at runtime. But, that is needed for other permission types . Such as for camera you have to make sure to follow the following steps ,
Declare camera permissions in AndroidManifest.xml. ( which you did )
Request camera permission at runtime using PermissionsAndroid or expo-camera.
Use a library like react-native-camera or expo-camera to access the camera.
Handle permission denial gracefully.