且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Android:将外部库添加到项目中无法正常工作

更新时间:2023-12-01 17:02:46

在文件build.gradle中,您应该具有以下内容:

In the file build.gradle you should have the following:

dependencies {
    ...
    compile 'org.jsoup:jsoup:1.10.2'
    ...
}

您可以在Gradle部分的此处中查看.

You can see the instructions here, in Gradle section.