Hey I'm trying to use two different type of permissions.
When I'm using only one, all works fine.
But when I'm using both of them the app crashes:
LoginButton authButton = (LoginButton) view.findViewById(R.id.authButton);
authButton.setReadPermissions(Arrays.asList("friends_games_activity"));
authButton.setPublishPermissions(Arrays.asList("publish_actions"));
How can I add the 2 permissions (friends_games_activity and publish_actions) without problems?