I need to fetch JSONObject
from default value of Remote config
in Firebase
. By FirebaseRemoteConfig.getString()
, it gets converted to the String, but not in the JSONObject
, saying
org.json.JSONException: Unterminated object at character xx
I am attaching default values of remote config
below:
<entry>
<key>welcome_message</key>
<value>{"version" :1,"type":"category","name":"CATEGORY"}
</value>
</entry>
I am now attaching my Java Code below:
String welcomeMessage = mFirebaseRemoteConfig.getString(WELCOME_MESSAGE_KEY);
JSONObject categoryListInJson = new JSONObject(welcomeMessage);
Thanks in advance for the answers.