mirror of
https://gitee.com/openharmony/applications_screenlock
synced 2024-11-23 06:19:47 +00:00
f2f2f6dec2
Signed-off-by: zhuchengfeng <940848916@qq.com>
28 lines
773 B
Groovy
28 lines
773 B
Groovy
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')
|
|
implementation project(':features:datetimecomponent')
|
|
implementation project(':features:shortcutcomponent')
|
|
implementation project(':features:wallpapercomponent')
|
|
implementation project(':features:noticeitem')
|
|
}
|