Skip to content Skip to sidebar Skip to footer

How To Add Linkedin Sdk Path In App Gradle?

I had followed so many tutorials to add linkedin sdk and sync gradle in my project but unable to did that. Downloaded linked sdk from https://developer.linkedin.com/downloads#andro

Solution 1:

You have to add linkedin-sdk folder as a module to your project:

Android Studio Import Module menu Screenshot

Android Studio New Module window Screenshot

and add this line to your app build.gradle dependencies:

compile project(':linkedin-sdk')

Post a Comment for "How To Add Linkedin Sdk Path In App Gradle?"