如何在build.gradle文件中引入GreenDaoUpgradeHelper相关依赖
时间: 2023-06-11 14:04:12 浏览: 157
greenDao相关依赖项目
您可以在build.gradle文件中添加以下代码以引入GreenDaoUpgradeHelper相关依赖:
```
dependencies {
implementation 'org.greenrobot:greendao:3.3.0'
implementation 'com.github.yuweiguocn:GreenDaoUpgradeHelper:1.1.3'
}
```
同时,您也需要添加以下代码以启用Java 8支持:
```
android {
...
compileOptions {
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_1_8
}
}
```
注意,在添加依赖的时候,您需要将版本号替换为您所需的版本号。
阅读全文