wavesonthaw
wavesonthaw

Reputation: 73

Changing an xml file in res folder per firebase remote config

I have a quick question regarding the Firebase remoteconfig parameters. In the documentation and videos, it specified that parameters can be added to the MainActivity etc, but my question is: is it possible to use Firebase remoteconfig to change a value in /app/src/main/res/FOLDER/any.xml ?

Upvotes: 4

Views: 444

Answers (1)

Martin Zeitler
Martin Zeitler

Reputation: 76639

You cannot change resources, because they are read-only; use SharedPreferences instead.

Upvotes: 1

Related Questions