getting the error : recyclerview No adapter attached; skipping layout
This is main activity and i'm getting error at var userData = snaps.getValue(Users::class.java) and No adapter attached; skipping layout
firebaseAuth = FirebaseAuth.getInstance()
userRecyclerView = findViewById(R.id.recyclerView)
userRecyclerView.layoutManager = LinearLayoutManager(this)
userRecyclerView.hasFixedSize()
userList = arrayListOf()
getUserList()
private fun getUserList() {
dbref = FirebaseDatabase.getInstance().getReference("User")...