37 lines
1.1 KiB
Groovy
37 lines
1.1 KiB
Groovy
|
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 {
|
||
|
compileSdkVersion 6
|
||
|
defaultConfig {
|
||
|
compatibleSdkVersion 5
|
||
|
}
|
||
|
buildTypes {
|
||
|
release {
|
||
|
proguardOpt {
|
||
|
proguardEnabled false
|
||
|
rulesFiles 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
debug {
|
||
|
proguardOpt {
|
||
|
proguardEnabled true
|
||
|
rulesFiles 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation fileTree(dir: 'libs', include: ['*.jar', '*.har'])
|
||
|
//testImplementation files('../libs/ImageTracer.jar')
|
||
|
testImplementation 'top.xuegao-tzx:ImageTracerJava:1.1.4.516'
|
||
|
testImplementation 'junit:junit:4.13.1'
|
||
|
ohosTestImplementation 'com.huawei.ohos.testkit:runner:2.0.0.200'
|
||
|
//implementation project(":supersearch")
|
||
|
implementation 'top.xuegao-tzx:SuperSearch:1.2.3.517'
|
||
|
}
|
||
|
decc {
|
||
|
supportType = ['html', 'xml']
|
||
|
}
|