(DialogInterface dialog, int which)
| 46 | .setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() |
| 47 | { |
| 48 | @Override |
| 49 | public void onClick(DialogInterface dialog, int which) |
| 50 | { |
| 51 | requestPermissions(new String[]{ permission }, requestCode); |
| 52 | } |
| 53 | }) |
| 54 | .setNegativeButton(android.R.string.cancel, null) |
| 55 | .show(); |
nothing calls this directly
no outgoing calls
no test coverage detected