Android Studio:缺少添加为库选项

时间:2015-03-11 08:32:53

标签: android android-studio

我开始使用Android Studio并遇到了问题。在项目中添加库时,我似乎无法弄清楚为什么我看不到添加为库选项。
我为了添加库而执行的步骤:
 *在 app 存储库中的 libs 文件夹中添加库  *右键单击以查看选项添加为库。 (看不到它!)
 *由于上述步骤不起作用,我想到将库直接添加到libs文件夹中,即在Explorer中。失败!

因此,我无法继续我的项目。

P.S。:我已经删除了Eclipse,我不想重新安装设置。

的build.gradle 文件:

apply plugin: 'com.android.application'

android {
          compileSdkVersion 21
          buildToolsVersion "21.1.2"

          defaultConfig {
                         applicationId "com.example.team1cloud.cloudapp"
                         minSdkVersion 15
                         targetSdkVersion 21
                         versionCode 1
                         versionName "1.0"
                        }
buildTypes {
    release {
             minifyEnabled false
             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
          }
        }
dependencies
      {
       compile fileTree(dir: 'libs', include: ['*.jar'])
       compile 'com.android.support:appcompat-v7:21.0.3'
       compile 'com.google.apis:google-api-services-drive:v2-rev161-1.19.1'
       compile files('libs/commons-logging-1.1.1.jar')
       compile files('libs/google-api-client-1.18.0-rc.jar')
       compile files('libs/google-api-client-android-1.18.0-rc.jar')
       compile files('libs/google-api-client-appengine-1.18.0-rc.jar')
       compile files('libs/google-api-client-gson-1.18.0-rc.jar')
       compile files('libs/google-api-client-jackson2-1.18.0-rc.jar')
       compile files('libs/google-api-client-java6-1.18.0-rc.jar')
       compile files('libs/google-api-client-protobuf-1.18.0-rc.jar')
       compile files('libs/google-api-client-servlet-1.18.0-rc.jar')
       compile files('libs/google-api-client-xml-1.18.0-rc.jar')
       compile files('libs/google-http-client-1.18.0-rc.jar')
       compile files('libs/google-http-client-android-1.18.0-rc.jar')
       compile files('libs/google-http-client-appengine-1.18.0-rc.jar')
       compile files('libs/google-oauth-client-java6-1.18.0-rc.jar')
       compile files('libs/google-oauth-client-jetty-1.18.0-rc.jar')
       compile files('libs/google-oauth-client-servlet-1.18.0-rc.jar')
       compile files('libs/google-play-services.jar')
       compile files('libs/gson-2.1.jar')
       compile files('libs/httpclient-4.0.1.jar')
       compile files('libs/httpcore-4.0.1.jar')
       compile files('libs/jackson-core-2.1.3.jar')
       compile files('libs/jackson-core-asl-1.9.11.jar')
       compile files('libs/jdo2-api-2.3-eb.jar')
       compile files('libs/jetty-6.1.26.jar')
       compile files('libs/jetty-util-6.1.26.jar')
       compile files('C:/Users/sjeet/AndroidStudioProjects/CloudApp/gradle/wrapper/gradle-wrapper.jar')
     }

感谢。 请帮助!!!

1 个答案:

答案 0 :(得分:2)

Android Studio是基于gradle的。如果您有一个jar文件作为项目的依赖项,请打开build.gradle文件并添加依赖项部分

 compile files('libs/name_file.jar')

如果您将库的源代码作为依赖项导入,则可以使用

compile project(':NameProject')

编译它。

你应该可以通过UI做同样的事情。

右键单击您的项目,然后单击Open Module Settings,然后单击Dependencies选项卡。从那里,您可以添加jar或库项目作为主项目的依赖项