How to add sdk related path in app gradle?

I have completed so many tutorials to add sdk and sync gradle related to my project, but could not do it. Download the associated sdk from https://developer.linkedin.com/downloads#androidsdk and unzip the folder, and then add the sdk file to the project directory. I mean, for the project-> app-> lib path.Now, I get an error while writing LISessionManagerto activity. Something like thiscannot resolve symbol 'LISessionManager'

Here is my build.gradle(app module)file,

apply plugin: 'com.android.application'

android {
    compileSdkVersion 24
    buildToolsVersion "24.0.0"

    defaultConfig {
        applicationId "com.interfinet.jobtree"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}
apply plugin: 'android-apt'
    dependencies {
        compile fileTree(dir: 'libs', include: ['*.jar'])
        testCompile 'junit:junit:4.12'
        compile 'com.android.support:appcompat-v7:24.2.1'
        compile 'com.android.support:design:24.2.1'
        compile 'com.android.support:palette-v7:24.2.1'
        compile 'com.android.support:recyclerview-v7:24.2.1'
        compile 'com.android.support:cardview-v7:24.2.1'
        compile 'de.hdodenhof:circleimageview:2.1.0'
        compile 'com.google.android.gms:play-services-maps:8.4.0'
        compile 'com.google.android.gms:play-services-location:8.4.0'
        compile 'com.weiwangcn.betterspinner:library-material:1.1.0'
        compile 'com.github.hotchemi:permissionsdispatcher:2.0.7'
        apt 'com.github.hotchemi:permissionsdispatcher-processor:2.0.7'
        compile 'org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.apache.http.client:4.1.2'
        compile 'com.jaredrummler:material-spinner:1.1.0'
        compile 'com.squareup.picasso:picasso:2.5.2'
    }

Setting.gradle file,

include ':app', ':linkedin-sdk'
+4
source share
1 answer

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

Android Studio Import Module Menu Screenshot

Android Studio New Window Module Screenshot

and add this line depending on the application build.gradle:

(': linkedin-sdk')

+13

Source: https://habr.com/ru/post/1659638/


All Articles