Skip to content

Instantly share code, notes, and snippets.

@MMarus
Created September 3, 2017 20:26
Show Gist options
  • Save MMarus/ef8e1f51c7e1550f4fd55fe18b968d6d to your computer and use it in GitHub Desktop.
Save MMarus/ef8e1f51c7e1550f4fd55fe18b968d6d to your computer and use it in GitHub Desktop.
kt
db.child("goals").orderByChild("performer").equalTo(mFirebaseAuth.currentUser?.uid).addListenerForSingleValueEvent(
object : ValueEventListener {
override fun onDataChange(dataSnapshot: DataSnapshot) {
// Get user information
dataSnapshot.children.forEach { i -> test(i)}
}
override fun onCancelled(databaseError: DatabaseError) {
}
})
}
fun test(i: DataSnapshot) {
val goal: Goal = i.getValue(Goal::class.java)
Log.d(TAG, goal.name)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment