增加群组通知过滤

This commit is contained in:
gem
2025-11-20 14:27:36 +08:00
parent cdc12e513c
commit a35eba1160
23 changed files with 1062 additions and 126 deletions

View File

@@ -14,6 +14,8 @@ def getCurrentProjectDir() {
}
buildscript {
ext.kotlin_version = '1.9.24'
repositories {
maven { url 'https://maven.aliyun.com/repository/public' }
maven { url 'https://maven.aliyun.com/repository/central' }
@@ -25,21 +27,26 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
rootProject.allprojects {
repositories {
maven {
url 'http://192.168.77.132:8081/repository/mvn2-group'
allowInsecureProtocol true
}
// 本地 AAR 调试配置 - 使用 rootProject.projectDir 确保路径正确
// maven { url 'file://' + rootProject.projectDir.absolutePath + '/local-maven' }
// maven {
// url 'http://192.168.77.132:8081/repository/mvn2-group'
// allowInsecureProtocol true
// }
google()
mavenCentral()
}
}
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
android {
namespace 'io.openim.flutter_openim_sdk'
@@ -55,8 +62,12 @@ android {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
implementation 'com.openim:sdkcore:1.0.14'
//implementation 'com.openim:sdkcore:1.0.15-local'
implementation 'com.openim:sdkcore:1.0.16'
}