如何从github向android studio项目添加第三方库?

时间:2015-05-05 11:25:48

标签: android git android-support-library

我想在我的项目中使用这个库。

Github - AndroidCountryPicker

对于其他git库我总是发现提供的build gradle语句要添加到项目中,这里不是。 谁能帮我? 就像我添加到项目中的这些依赖项一样。

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:22.1.1'
    compile 'com.github.siyamed:android-shape-imageview:0.9.+@aar'
    compile 'com.nineoldandroids:library:2.4.0'
    compile 'com.daimajia.easing:library:1.0.1@aar'
    compile 'com.github.clans:fab:1.4.0'
    compile 'com.daimajia.androidanimations:library:1.1.3@aar'
    compile 'com.astuetz:pagerslidingtabstrip:1.0.1'
    compile 'it.neokree:MaterialTabs:0.11'
    compile 'it.sephiroth.android.library.floatingmenu:floatingmenu:1.0.1'
    compile 'com.github.castorflex.verticalviewpager:library:19.0.1'
    compile 'com.oguzdev:CircularFloatingActionMenu:1.0.2'
    compile 'com.kbeanie:image-chooser-library:1.4.3@aar'
    compile 'org.jraf:android-switch-backport:1.4.0@aar'
    compile('com.doomonafireball.betterpickers:library:1.5.5') {
        exclude group: 'com.android.support', module: 'support-v4'
    }
    compile files('libs/easyandroidanimationslibrary-v0.5.jar')
    compile 'com.android.support:recyclerview-v7:21.0.3'
    compile files('libs/AndroidCountryPicker-master.jar')
}

如果有人可以帮我,如何使用相机库会很棒。

1 个答案:

答案 0 :(得分:0)

此库是使用Eclipse构建的,不提供gradle支持。

此lib也有一些资源,那么你可以使用一个jar文件。

删除libs/AndroidCountryPicker-master.jar并从build.gradle

中删除此行
compile files('libs/AndroidCountryPicker-master.jar')

你必须:

你应该像:

那样
root:
      library1
        build.gradle
      app
        build.gradle
      settings.gradle
  • 更改

    中的settings.gradle文件

    include ':library1' include ':app'

app/build.gradle文件中,您必须添加:

dependencies {
    // Module Library
    compile project(':library1')
}

最后在你的library1/build.gradle中,您必须添加以下内容:

    buildscript {
        repositories {
            mavenCentral()
        }
        dependencies {
            classpath 'com.android.tools.build:gradle:1.1.3'
        }
    }
    apply plugin: 'com.android.application'


    android {
         lintOptions {
              abortOnError false
          }

        compileSdkVersion 22
        buildToolsVersion "22.0.1"

        defaultConfig {
          targetSdkVersion 22
        }

        sourceSets {
            main {
                manifest.srcFile 'AndroidManifest.xml'
                java.srcDirs = ['src']
                resources.srcDirs = ['src']
                aidl.srcDirs = ['src']
                renderscript.srcDirs = ['src']
                res.srcDirs = ['res']
                assets.srcDirs = ['assets']
            }              
        }
     }

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