图片s3预览

This commit is contained in:
vet
2026-05-02 19:00:32 +07:00
parent 0a175bb8b1
commit 425934aebd
2 changed files with 7 additions and 1 deletions

View File

@@ -21,6 +21,8 @@ rootProject.allprojects {
apply plugin: "com.android.library"
def localAar = file("libs/open_im_sdk.aar")
android {
namespace = "io.openim.flutter_openim_sdk"
@@ -36,7 +38,11 @@ android {
}
dependencies {
implementation 'io.openim:core-sdk:3.8.3-patch10@aar'
if (localAar.exists()) {
implementation files("libs/open_im_sdk.aar")
} else {
implementation 'io.openim:core-sdk:3.8.3-patch10@aar'
}
testImplementation("junit:junit:4.13.2")
testImplementation("org.mockito:mockito-core:5.0.0")
}

Binary file not shown.