diff --git a/app/src/main/java/in/krharsh17/programmersdate/home/bottompager/DetailFragment.java b/app/src/main/java/in/krharsh17/programmersdate/home/bottompager/DetailFragment.java index 5028caf..02f80b4 100644 --- a/app/src/main/java/in/krharsh17/programmersdate/home/bottompager/DetailFragment.java +++ b/app/src/main/java/in/krharsh17/programmersdate/home/bottompager/DetailFragment.java @@ -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; } diff --git a/openCVLibrary341/build/intermediates/incremental/packageDebugResources/compile-file-map.properties b/openCVLibrary341/build/intermediates/incremental/packageDebugResources/compile-file-map.properties index 50972d0..1ec039d 100644 --- a/openCVLibrary341/build/intermediates/incremental/packageDebugResources/compile-file-map.properties +++ b/openCVLibrary341/build/intermediates/incremental/packageDebugResources/compile-file-map.properties @@ -1 +1 @@ -#Sat Jan 11 01:39:25 IST 2020 +#Wed Jan 29 23:53:58 IST 2020