123456789101112131415161718192021222324 |
- apply plugin: 'com.huawei.ohos.library'
- apply from: 'bintrayUpload.gradle'
- //For instructions on signature configuration, see https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ide_debug_device-0000001053822404#ZH-CN_TOPIC_0000001154985555__section1112183053510
- ohos {
- compileSdkVersion 5
- defaultConfig {
- compatibleSdkVersion 4
- }
- buildTypes {
- release {
- proguardOpt {
- proguardEnabled false
- rulesFiles 'proguard-rules.pro'
- }
- }
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- testImplementation 'junit:junit:4.13'
- api files('lib/json.jar')
- }
|