pb sdk 0.9.77 ?

Hello,
coming back to eyeTribe after a long period, I tried the new library 0.9.77 but it doesn't works.
My first (simple) test project with 0.9.60 still working, but I can not get it works with the new library... I can not get the gazemanager to be activated, but there's no error.
Any help will be appreciated (updating the sample introductory java page for instance ?)
Thanks,
--frédéric
coming back to eyeTribe after a long period, I tried the new library 0.9.77 but it doesn't works.
My first (simple) test project with 0.9.60 still working, but I can not get it works with the new library... I can not get the gazemanager to be activated, but there's no error.
- Code: Select all
public class TestMain
{
public static void main(String[] args) {
// …
final GazeManager gm = GazeManager.getInstance();
boolean success = gm.activate();
final GazeListener gazeListener = new GazeListener();
gm.addGazeListener(gazeListener);
System.out.println (gm.isActivated()) ;
}
}
class GazeListener implements IGazeListener {
@Override
public void onGazeUpdate(GazeData gazeData)
{
System.out.println(gazeData.toString());
}
}
Any help will be appreciated (updating the sample introductory java page for instance ?)
Thanks,
--frédéric