diff --git a/README.md b/README.md index 0be81016a37bfd3c4f3f2102bb34b417b1e1f191..b97eeafcb422ad4acb43701f48b915dc39f0e66e 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ dependencies { implementation('com.gitee.chinasoft_ohos:LogUtils:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:export_api:0.0.2-SNAPSHOT') ...... } diff --git a/entry/build.gradle b/entry/build.gradle index 70b39e9425a97d686c571c90c0da920edfe2cf6e..accda18c9604ded37d31b91a4765058fdbb86943 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -18,9 +18,8 @@ ohos { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.har','*.so']) - // implementation('com.gitee.chinasoft_ohos:LogUtils:0.0.1-SNAPSHOT') - compile project(path: ':library') - compile project(path: ':export_api') + implementation('com.gitee.chinasoft_ohos:LogUtils:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:export_api:0.0.2-SNAPSHOT') implementation project(path: ':export_api') testImplementation 'junit:junit:4.13' ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.100' diff --git a/library/build.gradle b/library/build.gradle index 31cbb37663e264f8a31d0ea3885780e3d86e20ee..44ea87e63376627bfdd1567949f0ca7a9afe98d2 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -11,5 +11,5 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar','*.har']) testCompile 'junit:junit:4.12' implementation 'org.jetbrains:annotations:15.0' - compile project(path: ':export_api') + implementation('com.gitee.chinasoft_ohos:export_api:0.0.2-SNAPSHOT') }