如果在项目中没有使用gradle编译,我如何在项目中使用此ArcMenu库?

时间:2016-03-07 07:01:37

标签: android android-studio gradle android-gradle build.gradle

我想在我的项目中使用此ArcMenu视图:

  

https://github.com/daCapricorn/ArcMenu

通常,我会将compile 'com.example.library'复制并粘贴到我的build.gradle文件中。这个库在用法下没有这样的东西。

这种用法让我感到困惑:

  

$ android update project --library ../relative/path/to/the/library   --path。

在这种情况下,我应该如何包含和使用此库?我是否必须自己弄清楚编译'com.example.library'?

对不起我的无知。我对gradle知之甚少,而且我不熟悉它。我感谢任何帮助! :)

3 个答案:

答案 0 :(得分:0)

在我看来,您需要下载项目并将其作为库模块添加到您的应用程序中。

了解更多信息,请阅读here

答案 1 :(得分:0)

简短版:只需将library文件夹作为项目中的模块导入,并通过项目结构选项添加为依赖项。

长版

enter image description here

  • 将此信息放在build.gradle下的应用

     dependencies {
       compile project(':library')
       ...
     }
    

    或转到

      

    项目结构> app> “依赖关系选项卡”>点击+添加module依赖关系>选择library

<强>更新

根据您的评论build.gradle应该看起来像这样 enter image description here

compileSdkVersion设置为4,因为它应该设置为应用中的任何内容,在我的情况下为23。同时更新buildToolsVersion

更新build.gradle模块的library,如下所示

enter image description here

Working demonstration app on github.

答案 2 :(得分:0)

你必须下载库并作为模块导入你的android studio项目。

1)右键单击您的项目 - >选择打开模块设置

2)项目结构对话框将打开

3)从项目结构对话框的左侧选择您的应用程序。

4)转到依赖选项卡,然后单击对话框右侧的“+”。

5)选择Module Dependency并导入下载的库项目。