码迷,mamicode.com
首页 > 其他好文 > 详细

greenDao基础用法(一)

时间:2020-04-16 13:26:19      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:schema   targe   androi   path   如图所示   nbsp   uil   gen   生成   

1、配置

 

1.1 在 build.gradle(project) 中,加入这句

 

classpath ‘org.greenrobot:greendao-gradle-plugin:3.2.2‘ // add plugin

  

如图所示

 

技术图片

 

1.2 在 build.gradle(app) 中,在dependencies { } 中加入这句

 

compile ‘org.greenrobot:greendao:3.2.2‘

 

在 android { } 中加入这句

 

greendao {
    schemaVersion 1 //数据库版本号
    daoPackage ‘com.xxx.database‘ // 你要存放greendao相关文件的包名
    targetGenDir ‘src/main/java‘//设置生成的DaoMaster、DaoSession、Dao路径
}

 

然后在顶部加入这句

 

apply plugin: ‘org.greenrobot.greendao‘

 

sync一下,配置完成

greenDao基础用法(一)

标签:schema   targe   androi   path   如图所示   nbsp   uil   gen   生成   

原文地址:https://www.cnblogs.com/qq1094417747/p/12711795.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!