You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I am trying to implement linkedin login functionality. So I do following in my fragment class:
LinkedInSocialNetwork liNetwork = new LinkedInSocialNetwork(this, LINKEDIN_CLIENT_KEY, LINKEDIN_CLIENT_SECRET,
LINKEDIN_CALLBACK_URL, linkedInScope);
But my fragment class extends android.app.Fragment while LinkedInSocialNetwork's constructor takes android.support.v4.app.Fragment, hence code doesn't compile.
How to work around this issue?
With regards
Manish
The text was updated successfully, but these errors were encountered:
Hi,
I am trying to implement linkedin login functionality. So I do following in my fragment class:
LinkedInSocialNetwork liNetwork = new LinkedInSocialNetwork(this, LINKEDIN_CLIENT_KEY, LINKEDIN_CLIENT_SECRET,
LINKEDIN_CALLBACK_URL, linkedInScope);
But my fragment class extends android.app.Fragment while LinkedInSocialNetwork's constructor takes android.support.v4.app.Fragment, hence code doesn't compile.
How to work around this issue?
With regards
Manish
The text was updated successfully, but these errors were encountered: