io2015-codelabs
io2015-codelabs copied to clipboard
Cannot resolve symbol 'Builder'
FaceDetector faceDetector = new
FaceDetector.Builder(getApplicationContext()).setTrackingEnabled(false)
.build(); // Cannot resolve symbol 'Builder'
if(!faceDetector.isOperational()){ // Cannot resolve method 'isOperational()'
new AlertDialog.Builder(v.getContext()).setMessage("Could not set up the face detector!").show();
return;
}
I tried to build the sample face detection app from the codelab provided here but the code seems to be broken