Results 16 comments of Anton Krasov

If someone still need this, please check my fork: https://github.com/antonkrasov/Swipecards Demo: https://youtu.be/yi7OXnJvUXE

@matantsu, SocialNetworkManager is just a fragment, so you can use something like this to get instance of it ``` public static SocialNetworkManager initializeSocialManager(Fragment hostFragment) { FragmentManager fragmentManager = hostFragment.getActivity().getSupportFragmentManager(); SocialNetworkManager...

You want user to login with google and have an ability to post to facebook? This is not possible, to post something you need to login.

Ah, no, library does provide so functionality. You will need to handle this by yourself.

Ah, sorry, this is just a typing error in code ``` public GooglePlusSocialNetwork getGooglePlusSocialNetwork() { if (!mSocialNetworksMap.containsKey(GooglePlusSocialNetwork.ID)) { throw new IllegalStateException("Facebook wasn't initialized..."); } return (GooglePlusSocialNetwork) mSocialNetworksMap.get(GooglePlusSocialNetwork.ID); } ``` The...

Yeah, I see the issue, startResolutionForResult is called only during requestLogin. For sure, this should be fixed, for now you can just save users info, after login and restore it,...

> This library could be so awesome if there weren't all this stupid minor bugs... Haha, agree :) It was written for one of my projects, and it works fine...

@gorbin, I think it's not a problem, just implement common interface to get AccessToken as other requests, like requestAccessToken(Listener). For other social networks callback will be called immediately.

@gorbin, yes, I see, I think we can add requestAccessToken, and mark getAccessToken method as deprecated, and remove it after couple of new releases.

@ChrisMCMine, I don't think it's a good idea, library was planned to be simple to use, so you can add it, initialize SocialNetworkManager and you shouldn't worry about anything else....