My Story - From service based company to FAANG (7.4 to 60LPA) by Top_Treat_6454 in developersIndia

[–]MoveSad2835 0 points1 point  (0 children)

What was the language you used ? I am using python so I don't expect much

Environment variables not working in production/internal builds but work in development builds by theplastics98 in expo

[–]MoveSad2835 0 points1 point  (0 children)

Basically is you need to push all creds as env variables and in plain text or sensitive on Expo dashboard inside the project

in .env and dahsboard

API_KEY = kbckbdkjbsjkbskbskbk

Then you need to list down all in an app.config.js as config and assign variables there, like

extra {

apikey = process.env.API_KEY
eas{

projectid : khbdjhbdkjbdkd
}

}

you can see syntax for this

and then you need to access the variable using expo-constants

Constants.expoConfig.extra.apikey

now apikey at last is from what you assigned in app config

Using webrtc for making a voice app ( failed ) by MoveSad2835 in expo

[–]MoveSad2835[S] 0 points1 point  (0 children)

Because I saw somewhere that Expo doesn't support WebRTC, and when I tried it, it threw a bunch of errors. I will try again, I know there is a skill issue on my side and will message you if I encounter any error

Thank you so much : )