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.
It's bug on Android Studio 3.0 or above.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With