I have the following code and getting an error :
Invalid collection reference. Collection references must have an odd number of segments
<
Then you need change this:
db.collection("app/users/" + uid + "/notifications")...
for this:
db.collection("app").document("users").collection(uid).document("notifications")
You welcome ;)