Skip to content

Commit

Permalink
commit after some changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Apr 28, 2018
1 parent bc02ddb commit 79884d2
Show file tree
Hide file tree
Showing 11 changed files with 3 additions and 3 deletions.
Binary file modified .gradle/4.4/fileHashes/fileHashes.bin
Binary file not shown.
Binary file modified .gradle/4.4/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified .gradle/4.4/javaCompile/classAnalysis.bin
Binary file not shown.
Binary file modified .gradle/4.4/javaCompile/javaCompile.lock
Binary file not shown.
Binary file modified .gradle/4.4/javaCompile/taskHistory.bin
Binary file not shown.
Binary file modified .gradle/4.4/taskHistory/taskHistory.bin
Binary file not shown.
Binary file modified .gradle/4.4/taskHistory/taskHistory.lock
Binary file not shown.
Binary file modified .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void onBindViewHolder(@NonNull ContactViewHolder holder, int position) {
holder.photoImageView.setImageBitmap(cell.getPhoto());
}
holder.nameTextView.setText(cell.getName());
holder.statusTextView.setText(cell.getStatus());
holder.statusTextView.setText(cell.getPhone());
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ private void doAfterPermissions() {
//checking if user already signed in
mAuth = FirebaseAuth.getInstance();
if(mAuth.getCurrentUser() != null) {
startActivity(new Intent(this, JourneysListActivity.class));
startActivity(new Intent(this, ContactsActivity.class));
finish();
}

Expand Down

0 comments on commit 79884d2

Please sign in to comment.