App crashing after build while using MapView

Hello,

Can any one resolve my issue.
I am using MapView in my project along with Valid API Key(Billing enabled). After build my app is crashing at the page where i used MapView. But it is working fine in Expo Go app properly.
Here is my simple code.

In App.js ==>
<MapView
style={styles.map}
initialRegion={{
latitude: 37.78825,
longitude: -122.4324,
latitudeDelta: 0.0922,
longitudeDelta: 0.0421,
}}
provider={MapView.PROVIDER_GOOGLE}
apiKey=“API_KEY”
/>

In eas.json ==>
{
“cli”: {
“version”: “>= 3.1.1”
},
“build”: {
“preview”: {
“android”: {
“buildType”: “apk”
}
},
“preview2”: {
“android”: {
“gradleCommand”: “:app:assembleRelease”
}
},
“preview3”: {
“developmentClient”: true
},
“production”: {}
}
}

Build Command ==>
eas build -p android --profile preview