skip to Main Content

Android Studio – Android Studio build error – compileDebugJavaWithJavac task (current target it 1.8) and kaptGenerateStubsDebugKotlin task (current target is 17)

Getting the following build error in Android Studio compileDebugJavaWithJavac task (current target it 1.8) and kaptGenerateStubsDebugKotlin task (current target is 17) jvm target compatibility should be set to the same java version during the kaptGenerateStubsDebugKotlin step of project build in…

VIEW QUESTION

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