Calling ActivityCompat.requestPermissions does not display the UI dialog box.
ActivityCompat.requestPermissions(MainActivity.this, new String[]{"Manifest.permission.READ_SMS"}, REQUEST_CODE_ASK_PERMISSIONS);
However, if I change the minSDKversion to 23 and run
requestPermissions(new String[]{"android.permission.READ_SMS"}, REQUEST_CODE_ASK_PERMISSIONS);
the dialog appears. Why? BTW. to run it on the emulator requires that the emulator will be targeting API 23.