Coronium core seems powerful but it also requires some web developing knowledge. I’d also rather have all in one solution including (analytics-push notifications)
Storage is for uploading/downloading files vs Database which is retrieving contents that were created dynamically? Which do you think would be quicker and more efficient for my use case?
If you don’t want to use Config, I would use firebase database. Config is great receiving data, Database is great for send and receiving data, Storage is great for sending and receiving files (images, sound files, etc)
I don’t know, it seems that Remote Config is supposed to be used for changing certain values, like the price of an item, or enemy’s health.
Database: is for multiple connected clients like a messaging app. Also, I’m not sure how intuitive it is for me to add new entries directly into the database.
I think Storage is the best solution for me. The client can download a file and retrieve the data from it. Whether that file is .lua or .json I’m not sure which is best. I think I will experiment a little with these different services.