27 lines
760 B
Groovy
Raw Permalink Normal View History

2021-12-21 19:05:53 +08:00
apply plugin: 'com.huawei.ohos.hap'
apply plugin: 'com.huawei.ohos.decctest'
//For instructions on signature configuration, see https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ide_debug_device-0000001053822404#section1112183053510
ohos {
2022-02-12 19:24:25 +08:00
compileSdkVersion 6
2021-12-21 19:05:53 +08:00
defaultConfig {
2021-12-23 15:44:54 +08:00
compatibleSdkVersion 6
2021-12-21 19:05:53 +08:00
}
buildTypes {
release {
proguardOpt {
proguardEnabled false
rulesFiles 'proguard-rules.pro'
}
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar', '*.har'])
testImplementation 'junit:junit:4.13.1'
2022-02-12 19:24:25 +08:00
ohosTestImplementation 'com.huawei.ohos.testkit:runner:2.0.0.200'
2021-12-21 19:05:53 +08:00
}
decc {
supportType = ['html', 'xml']
}