skip to Main Content

Firebase iOS – Multiple errors while archiving in Xcode 13.4 or Xcode 14.1(iOS 15 or iOS 16) – Ios swift

Getting multiple errors while archiving the project but app build/run fine. Tried many solutions related to cleaning derived data, deintegrate/integrate/install pods, pod clean etc.('GoogleUtilities/GULURLSessionDataResponse.h' file not found) (https://github.com/firebase/firebase-ios-sdk/issues/2233) Podfile : source 'https://github.com/CocoaPods/Specs.git' install! 'cocoapods', :deterministic_uuids => false target 'Test' do…

VIEW QUESTION

How do I push my data (in key:value pair) into my Firebase realtime database in android?

I want to push my data (in key:value pair) into my Realtime Database. This is my code: DatabaseReference pay_details = database.getReference("pay/0/0/"); pay_details.push( { "Actual amount":arr.get(i).get(9), "Current reading":arr.get(i).get(5), "Employee":arr.get(i).get(1), "Expected amount":arr.get(i).get(9), "Installment":arr.get(i).get(10), "Meter current date":arr.get(i).get(3), "Meter previous date":arr.get(i).get(2), "Previous reading":arr.get(i).get(4), "Start…

VIEW QUESTION
Back To Top
Search