当前位置:   article > 正文

Android Studio Flamingo | 2022.2.1 Patch 2 下 GreenDao 依赖引入踩坑_androidstudio2022.2.1 patch 2

androidstudio2022.2.1 patch 2

参考资料:https://blog.csdn.net/Cupster/article/details/114267141

setttings.gradle中配置仓库信息

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        mavenLocal();
        maven { url 'https://maven.aliyun.com/repository/google' }
        //central和jcenter的聚合仓库
        maven { url 'https://maven.aliyun.com/repository/public' }
        //仅顶级build.gradle需配置插件仓库
        maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
        google()
        mavenCentral()
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

在项目的build.gradle中配置插件信息

buildscript {
    dependencies {
        classpath 'com.android.tools.build:gradle:7.1.2'
        classpath 'org.greenrobot:greendao-gradle-plugin:3.3.0'
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

快捷键CTRL+ALT+SHIFT+S,将Project - Gradle Version修改为7.6.2,确定,等待同步。这里如果选择8以上版本会报错:

A problem occurred configuring project ':app'.
> Could not create task ':app:greendaoPrepare'.
   > Cannot use @TaskAction annotation on method DetectEntityCandidatesTask.execute() because interface org.gradle.api.tasks.incremental.IncrementalTaskInputs is not a valid parameter to an action method.
  • 1
  • 2
  • 3

在模块的build.gradle

plugins节点中添加

id 'org.greenrobot.greendao'
  • 1

android节点中添加

greendao {
    schemaVersion 1 //数据库版本号
    daoPackage 'com.gin.myapp.greendao'// 设置DaoMaster、DaoSession、Dao 包名
    targetGenDir 'src/main/java'//设置DaoMaster、DaoSession、Dao目录
}
  • 1
  • 2
  • 3
  • 4
  • 5

dependencies节点中添加

implementation 'org.greenrobot:greendao:3.3.0'
  • 1

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/492273
推荐阅读
相关标签
  

闽ICP备14008679号