android数据库之GreenDao3.2.2的用法
程序员文章站
2022-05-27 08:13:16
1.添加依赖
buildscript {
repositories {
jcenter()
mavencentral()
}
dependencies {...
1.添加依赖
buildscript {
repositories {
jcenter() mavencentral() } dependencies { classpath 'com.android.tools.build:gradle:3.0.1' classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2' // note: do not place your application dependencies here; they belong // in the inpidual module build.gradle files } } allprojects { repositories { jcenter() } } task clean(type: delete) { delete rootproject.builddir }
推荐阅读
-
Android开发之菜单(menu)用法实例分析
-
Android NDK开发之:配置环境的详解
-
Android笔记之:深入ViewStub的应用
-
Android笔记之:深入为从右向左语言定义复杂字串的详解
-
Android笔记之:在ScrollView中嵌套ListView的方法
-
Android开发笔记之:在ImageView上绘制圆环的实现方法
-
Android开发笔记之:Handler Runnable与Thread的区别详解
-
Android开发笔记之:返回键的复写onBackPressed()介绍
-
android UI进阶之android中隐藏的layout 抽屉的使用方法
-
Android开发笔记之:一分钟学会使用Logcat调试程序的详解