This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
SuperSearch/supersearch/build.gradle
Y7000p bd880de720 update .gitignore
Signed-off-by: Y7000p <xcl@xuegao-tzx.top>
2022-05-17 13:08:10 +08:00

29 lines
785 B
Groovy

apply plugin: 'com.huawei.ohos.library'
//For instructions on signature configuration, see https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ide_debug_device-0000001053822404#section1112183053510
//apply from: './upload.gradle'
ohos {
compileSdkVersion 6
defaultConfig {
compatibleSdkVersion 5
}
buildTypes {
release {
proguardOpt {
proguardEnabled false
rulesFiles 'proguard-rules.pro'
}
}
debug {
proguardOpt {
proguardEnabled false
rulesFiles 'proguard-rules.pro'
}
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.13.1'
}