skip to Main Content

Firebase – How can I add colection to Firestore Database as in image?

I want to add colection to Firestore database like this image: here I want to add a symbol in Arraylist every time the function is called. fun addsymbol(){ val arrayList= arrayListOf<String>() arrayList.add(Coin.Coin_Info?.symbol!!) val postHashMap = hashMapOf<String, Any>() postHashMap.put("symbols",arrayList) Firestore.collection("Users").document("User1").set(postHashMap, SetOptions.merge())…

VIEW QUESTION
Back To Top
Search