Skip to content

Commit e3e612d

Browse files
Remove "Rate App" option from bottom sheet menu
The "Rate App" menu item was removed from the bottom sheet navigation component.
1 parent 845b138 commit e3e612d

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

app/src/main/java/com/d4rk/androidtutorials/java/ui/components/navigation/BottomSheetMenuFragment.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
import com.d4rk.androidtutorials.java.R;
1414
import com.d4rk.androidtutorials.java.databinding.DialogBottomSheetMenuBinding;
1515
import com.d4rk.androidtutorials.java.ui.screens.settings.SettingsActivity;
16-
import com.d4rk.androidtutorials.java.utils.ReviewHelper;
1716
import com.google.android.material.bottomsheet.BottomSheetDialogFragment;
1817

1918
public class BottomSheetMenuFragment extends BottomSheetDialogFragment {
@@ -53,11 +52,6 @@ public View onCreateView(@NonNull LayoutInflater inflater,
5352
dismiss();
5453
});
5554

56-
binding.menuRate.setOnClickListener(v -> {
57-
ReviewHelper.forceLaunchInAppReview(requireActivity());
58-
dismiss();
59-
});
60-
6155
binding.menuShare.setOnClickListener(v -> {
6256
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
6357
sharingIntent.setType("text/plain");

0 commit comments

Comments
 (0)