Some checks failed
Flask 提示词大师 - CI/CD 流水线 / 代码质量检查 (push) Has been cancelled
Flask 提示词大师 - CI/CD 流水线 / 单元测试 (push) Has been cancelled
Flask 提示词大师 - CI/CD 流水线 / 集成测试 (push) Has been cancelled
Flask 提示词大师 - CI/CD 流水线 / 构建Docker镜像 (push) Has been cancelled
Flask 提示词大师 - CI/CD 流水线 / 部署到测试环境 (push) Has been cancelled
Flask 提示词大师 - CI/CD 流水线 / 部署到生产环境 (push) Has been cancelled
Flask 提示词大师 - CI/CD 流水线 / 部署监控系统 (push) Has been cancelled
27 lines
631 B
Groovy
27 lines
631 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
def dbFlow_version = "4.2.4"
|
|
android {
|
|
namespace 'com.ruilaizi.baselibs'
|
|
compileSdk 34
|
|
compileSdkVersion 34
|
|
buildToolsVersion "30.0.2"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 15
|
|
targetSdkVersion 28
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
|
|
// annotationProcessor "com.github.Raizlabs.DBFlow:dbflow-processor:${dbFlow_version}"
|
|
// compile "com.github.Raizlabs.DBFlow:dbflow-core:${dbFlow_version}"
|
|
// compile "com.github.Raizlabs.DBFlow:dbflow:${dbFlow_version}"
|
|
|
|
}
|
|
|