I have a React native project developed by external developers. The application is deployed for IOS on Apple App Store Connect. Chat feature developed on freshchat is not working. When I try to debug I found that APP ID,API KEY and Domain for freshchat are being referenced from the code. I can not seem to find the env file containing the APP ID,API KEY and Domain in the code. The code is deployed on Apple App Store Connect. Where could these variables lie in the Apple App Store connect?
`import Config from 'react-native-config';`
`const configureFreshChat = () => {
let freshchatConfig = new FreshchatConfig(
Config.FRESHCHAT_APP_ID,
Config.FRESHCHAT_API_KEY,
);
freshchatConfig.domain = Config.FRESHCHAT_DOMAIN;
freshchatConfig.cameraCaptureEnabled = false;
Freshchat.init(freshchatConfig);
};`
Freshchat is not working for IOS mobile app deployed on Apple App Store Connect. Based on my research env files are not stored on the version control system . It is not referenced using api call.So it might be on Apple App Store Connect. I am expecting that if the env file is missing containing the variables upon adding those I could fix the chat not working.

Often times, people believe that .env or (any .env.*) files should not be included in version control system such as git.
However, frontend project such as SPA web application or mobile apps could or should include these files in version control since those values will be accessible or exposed to end users.
So if engineers built your app believed that it'd better to put it off from VCS, then you should ask them to hand off including those .env (or any config) files for you to run it yourself.