Expo including GoogleApiActivity & CropImageActivity in Manifest?

I’m building new Android APK with eas build. But expo is including two extra activities into AndroidManifest.xml file in the standalone app. These activities are not accessible via custom plugins as well.

<activity android:theme="@style/Theme.Translucent.NoTitleBar" android:name="com.google.android.gms.common.api.GoogleApiActivity" android:exported="false"/>
<activity android:theme="@style/Base.Theme.AppCompat" android:name="com.canhub.cropper.CropImageActivity"/>
  1. Is there any reason why these activities are added?
  2. Why these activities are not available in custom plugin? Only .MainActivity & com.facebook.react.devsupport.DevSettingsActivity are available.