最大的modle 的 build.gradle 中:
的dependencies中添加
classpath 'org.greenrobot:greendao-gradle-plugin:3.2.1'
在新建的modle中 build.gradle 的头部加
apply plugin: 'org.greenrobot.greendao'
放 android 中 自定义位置
greendao {
schemaVersion 1
daoPackage ' ' //自己的包名.分包
targetGenDir 'src/main/java'
}
向 dependencies 中导依赖
compile 'org.greenrobot:greendao:3.2.0'