Naver login is explained by ClipSwijou, is it possible in Android studio?

Asked 2 years ago, Updated 2 years ago, 102 views

There's a bit of a blockage in the Android studio

Is it possible in Android studio? I can't refer to it at all

login naverapi

2022-09-22 20:00

1 Answers

Even if it's explained in Eclipse, there's no problem using it in Android studio. The failure to reference may be caused by the naveroauthlogin-4.x.x.jar file not present in the correct path.

Verify that naveroauthlogin-4.x.x.jar exists in the libs directory within the app module. If you haven't modified the default settings for build.gradle, the library-related settings are not required because they recognize the jar file within app/libs by default.

If it doesn't work, please add dependencies as below.

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    ...
}


2022-09-22 20:00

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.