content is null error after crash on Aadhaar Face Rd Service after i fire it using below code
String pidOption = getFacePidOptions(); Intent intent2 = new Intent(); intent2.setPackage(devicePackageName); intent2.setAction(“in.gov.uidai.rdservice.face.CAPTURE”); intent2.putExtra(“PID_OPTIONS”, pidOption); startActivityForScanDevice.launch(intent2); private String getFacePidOptions() { try { return “<?xml version=”1.0″?><PidOptions ver=”1.0″><Opts fCount=”0″ fType=”0″ iCount=”0″ iType=”0″ pCount=”1″ pType=”0″ format=”0″ pidVer=”2.0″ timeout=”10000″ wadh=”” posh=”UNKNOWN” env=”P” /><CustOpts><Param name=”PERFORM AUTH WITH FINGER AND FACE CAPTURE” value=”” /></CustOpts></PidOptions>”; } catch (Exception e) { return “”; } } […]