从Github添加库到Android Studio 0.2.8

时间:2013-09-15 16:43:45

标签: android github greendao android-gradle

我正在尝试将来自Github的库greenDAO添加到在Android Studio中创建的Android项目中。创建的最新build.gradle的内容如下

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

repositories {
    mavenCentral()
}

android {
    compileSdkVersion 18
    buildToolsVersion "18.0.0"

    defaultConfig {
        minSdkVersion 7
        targetSdkVersion 16
    }
}

dependencies {
    compile 'com.android.support:appcompat-v7:18.0.0'
}

如何去做?

任何指向Gradle构建系统上最新博客的指针,并添加了帮助。

2 个答案:

答案 0 :(得分:3)

GreenDao位于Maven Central(here),因此您可以在最终的dependencies区块中引用它:

dependencies {
    compile 'com.android.support:appcompat-v7:18.0.0'
    compile 'de.greenrobot:greendao:1.3.2'
}

然后就像你平时那样引用。 Android Studio会自动下载jar文件并将其构建到您的应用程序中。

答案 1 :(得分:0)

只需将compile 'de.greenrobot:greendao-generator:2.1.0'添加到 build.gradle 并同步即可。您随时可以查看最新版本here

请参阅此blog post了解逐步的greenDAO集成教程。