Hey, I'm trying to use two different types of permissions.
When I use only one, everything works fine.
But when I use both of them, the application 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 2 permissions ( friends_games_activity and publish_actions ) without problems?
source share