[Solved] How to remove “Never ask again” text in this popup?

How can I request the permission popup without “Never ask again” text? NO you can not remove “Never ask again” from Permission Dialog try this this hack if user selects Never ask again ask for permission like this btnCurrentLocationSearch.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { String permission = android.Manifest.permission.ACCESS_FINE_LOCATION; if (ActivityCompat.checkSelfPermission(SearchCityClass.this, permission) != … Read more