123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- apply plugin: 'com.huawei.ohos.hap'
- apply plugin: 'com.huawei.ohos.decctest'
- ohos {
- compileSdkVersion 6
- defaultConfig {
- compatibleSdkVersion 5
- }
- buildTypes {
- release {
- proguardOpt {
- proguardEnabled false
- rulesFiles 'proguard-rules.pro'
- }
- }
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar', '*.har'])
-
- implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.11'
-
- implementation('com.gitee.chinasoft_ohos:KLog:1.0.0')
-
- implementation 'io.openharmony.tpc.thirdlib:PagerBottomTabStrip:1.0.1'
-
- implementation 'com.gitee.archermind-ti:retrofitcachelib:1.0.0-beta2'
- implementation 'com.gitee.archermind-ti:retrofitcachelibrx2:1.0.0-beta2'
- implementation 'io.reactivex.rxjava2:rxjava:2.0.7'
- implementation 'com.squareup.retrofit2:retrofit:2.5.0'
- implementation 'com.squareup.retrofit2:converter-gson:2.2.0'
- implementation 'com.squareup.retrofit2:adapter-rxjava2:2.2.0'
-
- implementation group: 'com.alibaba', name: 'fastjson', version: '1.2.76'
-
- implementation group: 'com.j256.ormlite', name: 'ormlite-core', version: '5.3'
- implementation 'io.openharmony.tpc.thirdlib:ormlite-ohos:1.0.1'
-
- implementation 'com.gitee.baijuncheng-open-source:ToggleButtonGroup:1.0.1'
-
- implementation 'io.openharmony.tpc.thirdlib:EventBus:1.0.4'
-
- implementation 'io.openharmony.tpc.thirdlib:ohosSwipeLayout:1.0.0'
- annotationProcessor 'io.openharmony.tpc.thirdlib:eventbus-annotation-processor:1.0.1'
-
- implementation 'io.openharmony.tpc.thirdlib:EventBus:1.0.4'
- annotationProcessor 'io.openharmony.tpc.thirdlib:eventbus-annotation-processor:1.0.1'
-
- implementation 'com.rabbitmq:amqp-client:5.12.0'
- implementation('com.gitee.chinasoft_ohos:ACProgressLite:1.0.0')
-
- implementation('com.gitee.chinasoft_ohos:socket-client:1.0.0')
- implementation('com.gitee.chinasoft_ohos:socket-common-interface:1.0.0')
- implementation('com.gitee.chinasoft_ohos:socket-server:1.0.0')
- implementation('com.gitee.chinasoft_ohos:socket-core:1.0.0')
- implementation('com.gitee.chinasoft_ohos:LeafChart:1.0.0')
- }
- decc {
- supportType = ['html', 'xml']
- }
|