I am trying to set the snack bar length using this:
Snackbar oSnackbar = Snackbar.make(Context, "Testing", Snackbar.LENGTH_LONG);
oSnackbar.setDuration(8000);
oSnackbar.show();
But I get this compile error in setDuration:
Must be one of Short, Long or Indefinite
In Android Studio gradle I use the dependency:
compile 'com.android.support:design:23.0.1'
Any Help?