导入外部库

时间:2017-10-25 09:54:13

标签: android gradle build.gradle couchbase-lite

我想将我的android项目导入外部库:CouchBase lite 我使用Git

克隆了库
  

$ git clone git://github.com/couchbase/couchbase-lite-android.git

以及子模块

  

git submodule update --init --recursive

为了将库导入我的Android项目,我正在做: file-> New->导入模块

此屏幕显示: enter image description here

单击完成后,项目已导入,但文件夹couchbase-lite-android显示为空,如下所示:
enter image description here

这是不正确的,因为您可以在我用于导入库的本地源文件夹中看到:
this is my local folder

实际上我需要使用该库中的类AndroidContext但它不可用。

这是我的setting.gradle

include ':couchbase-lite-java-forestdb', ':libraries:couchbase-lite-java-core'

关于build.gradle我有几个:

enter image description here

这是我的build.gradle(Module:app)

apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    buildToolsVersion "25.0.3"
    defaultConfig {
        applicationId "com.example.jcr61782.importaingcoach"
        minSdkVersion 21
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:26.+'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    testCompile 'junit:junit:4.12'
    compile project(path: ':libraries:couchbase-lite-java-core')

}

我做错了什么?

0 个答案:

没有答案