Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -106,30 +106,30 @@ public void onClick(View v) {
break;
case taskTypeBar:
if(((MainActivity)getActivity()).checkDistance()){
Intent logoIntent = new Intent(getActivity(), QRActivity.class);
logoIntent.putExtra("currentLevel", currentLevel);
startActivity(logoIntent);
Intent barIntent = new Intent(getActivity(), QRActivity.class);
barIntent.putExtra("currentLevel", currentLevel);
startActivity(barIntent);
}
break;
case taskTypePose:
if(((MainActivity)getActivity()).checkDistance()){
Intent logoIntent = new Intent(getActivity(), PoseActivity.class);
logoIntent.putExtra("currentLevel", currentLevel);
startActivity(logoIntent);
Intent poseIntent = new Intent(getActivity(), PoseActivity.class);
poseIntent.putExtra("currentLevel", currentLevel);
startActivity(poseIntent);
}
break;
case taskTypeQR:
if(((MainActivity)getActivity()).checkDistance()){
Intent logoIntent = new Intent(getActivity(), QRActivity.class);
logoIntent.putExtra("currentLevel", currentLevel);
startActivity(logoIntent);
Intent qrIntent = new Intent(getActivity(), QRActivity.class);
qrIntent.putExtra("currentLevel", currentLevel);
startActivity(qrIntent);
}
break;
case taskTypeTwister:
if(((MainActivity)getActivity()).checkDistance()){
Intent logoIntent = new Intent(getActivity(), AudioActivity.class);
logoIntent.putExtra("currentLevel", currentLevel);
startActivity(logoIntent);
Intent twisterIntent = new Intent(getActivity(), AudioActivity.class);
twisterIntent.putExtra("currentLevel", currentLevel);
startActivity(twisterIntent);
}
break;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#Sat Jan 11 01:39:25 IST 2020
#Wed Jan 29 23:53:58 IST 2020