0

实际上我一直在尝试从 github 导入另一个 gradle 项目作为库,我知道有两种方法可以做到这一点

1)通过在 build.gradle 文件中添加 url 到依赖项,这种方法给出了很多错误

2)手动下载库并将其作为模块导入,然后添加依赖项

我通过使用第二种方法以某种方式成功了..

之后 gradle 同步工作正常,但在运行应用程序时,它给出了一些奇怪的错误,比如

Error:(23, 0) Gradle DSL method not found: 'ompile()' 可能的原因:

  • 项目“AppIntro”可能正在使用不包含该方法的 Gradle 版本。打开 Gradle 包装文件
  • 构建文件可能缺少 Gradle 插件。应用 Gradle 插件
  • 并且github链接如下

    https://github.com/PaoloRotolo/AppIntro

    我在其中导入了名为库的文件夹....

    4

    1 回答 1

    1

    您可以通过多种方式添加此库:

    • build.gradle在文件中添加一个简单的依赖项

    只需使用:

    dependencies {
      compile 'com.github.paolorotolo:appintro:3.4.0'
    }
    

    只需将此存储库添加到您的build.gradle

    repositories {
            // ...
            maven { url "https://jitpack.io" }
        }
    

    和依赖:

    dependencies {
            compile 'com.github.User:Repo:Tag'
        }
    
    • 在本地下载模块(库文件夹)。
    于 2016-01-27T11:04:57.540 回答