2022-03-08 08:45:48 +00:00
|
|
|
apply plugin: 'com.huawei.ohos.hap'
|
|
|
|
ohos {
|
|
|
|
compileSdkVersion rootProject.ext.version.compileSdk
|
|
|
|
defaultConfig {
|
|
|
|
compatibleSdkVersion rootProject.ext.version.compatibleSdk
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
proguardOpt {
|
|
|
|
proguardEnabled false
|
|
|
|
rulesFiles 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
entryModules "entry"
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
entryImplementation project(':entry')
|
|
|
|
implementation project(':common')
|
|
|
|
implementation project(':features:screenlock')
|
2022-03-12 07:07:13 +00:00
|
|
|
implementation project(':features:datetimecomponent')
|
|
|
|
implementation project(':features:shortcutcomponent')
|
|
|
|
implementation project(':features:wallpapercomponent')
|
2022-03-08 08:45:48 +00:00
|
|
|
implementation project(':features:noticeitem')
|
|
|
|
}
|