google-services.json not found error

@adamjnav I finally figured out what happened (11 days ago). We had two issues:

There was a BOM character inside one of the values not showing up, but breaking everything (not an expo issue). The other issue was a mismatch in packagename in firebase (typo). That’s why recreating everything fixed the issue for us.

2 Likes

I appreciate the follow-up here, @derk-jan. Good luck with the project moving forward!

1 Like

I am having same issue while building app. My app doesn’t event use firebase or google-service.json at all

1 Like

Hey @adityakmr088, have you configured FCM for your project (for push notifications) or are you not using Expo’s notification service for your app?

Log about google-services.json that the original author of this topic posted is not an error, without any other logs there is no way for us to diagnose your problem

still this issue is coming,
when doing expo build:android in expo version 38
placed the google-service.json file too

Build ID
f7c91699-fe12-43eb-b87c-27df1bcabfc0

lhere is the app.json

{
  "expo": {
    "name": "TruckByPass",
    "slug": "TruckByPass",
    "platforms": [
      "ios",
      "android",
      "web"
    ],
    "version": "1.0.0",
    "orientation": "portrait",
    "icon": "./assets/images/icon.png",
    "scheme": "myapp",
    "splash": {
      "image": "./assets/images/splash.png",
      "resizeMode": "contain",
      "backgroundColor": "#ffffff"
    },
    "updates": {
      "fallbackToCacheTimeout": 0
    },
    "assetBundlePatterns": [
      "**/*"
    ],
    "ios": {
      "supportsTablet": true,
      "bundleIdentifier": "com.initialc.truckbaypass2",
      "buildNumber": "1.0.0",
      "googleServicesFile": "./GoogleService-Info.plist",
      "config":{
        "googleSignIn":{
          "reservedClientId":"com.googleusercontent.apps.29981pv2"
        }
      }
    },
    "android": {
      "package": "com.initialc.truckbaypass",
      "versionCode": 1,
      "googleServicesFile": "./google-services.json",
      "config":{
        "googleMaps":{
          "apiKey":"Ffr3KC3-CLs3S7wwc"
        }
     }
    },
    "web": {
      "favicon": "./assets/images/favicon.png"
    },
    "description": "current version 131.17.17"
  }
}

any help would be appreciated,as i spent so much of time

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.