Code fragment from 'cookbook' is incorrect:
in 'ProfileCheck' class the method 'newProfile' should return 'Profile' not a
boolean.
public boolean newProfile(Context context) { return new Profile(); }
should be:
public Profile newProfile(Context context) { return new Profile(); }