1:羽声新版本
This commit is contained in:
@@ -2,7 +2,7 @@ plugins {
|
||||
alias(libs.plugins.android.library)
|
||||
alias(libs.plugins.kotlin.android)
|
||||
}
|
||||
|
||||
//apply plugin: 'kotlin-kapt' // 关键:Kotlin 注解处理器
|
||||
android {
|
||||
namespace 'com.xscm.moduleutil'
|
||||
compileSdk 35
|
||||
@@ -35,14 +35,14 @@ android {
|
||||
}
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_17
|
||||
targetCompatibility JavaVersion.VERSION_17
|
||||
sourceCompatibility JavaVersion.VERSION_11
|
||||
targetCompatibility JavaVersion.VERSION_11
|
||||
}
|
||||
dataBinding {
|
||||
enabled = true
|
||||
}
|
||||
kotlinOptions {
|
||||
jvmTarget = '17'
|
||||
jvmTarget = '11'
|
||||
}
|
||||
|
||||
packagingOptions {
|
||||
@@ -50,6 +50,13 @@ android {
|
||||
}
|
||||
}
|
||||
|
||||
// Kotlin 注解处理器参数(针对 Kotlin 代码)
|
||||
//kapt {
|
||||
// arguments {
|
||||
// arg("AROUTER_MODULE_NAME", project.getName())
|
||||
// }
|
||||
//}
|
||||
|
||||
dependencies {
|
||||
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
|
||||
|
||||
@@ -139,8 +146,9 @@ dependencies {
|
||||
api(libs.alipay.alipaysdk.android)
|
||||
|
||||
api(libs.arouter.api.v150)
|
||||
annotationProcessor libs.arouter.annotation
|
||||
annotationProcessor libs.arouter.compiler
|
||||
// implementation 'com.alibaba:arouter-api:1.5.2'
|
||||
// kapt 'com.alibaba:arouter-compiler:1.5.2'/**/
|
||||
|
||||
api(libs.easypermissions)
|
||||
api(libs.xbanner)
|
||||
@@ -156,6 +164,9 @@ dependencies {
|
||||
api(libs.zcw.togglebutton.library)
|
||||
//图片模糊
|
||||
api(libs.com.github.mmin18.realtimeblurview)
|
||||
|
||||
api 'com.baoyz.actionsheet:library:1.1.7'
|
||||
|
||||
//播放器
|
||||
//腾讯直播sdk
|
||||
api('com.tencent.liteav:LiteAVSDK_Professional:10.9.0.13102')
|
||||
@@ -173,7 +184,7 @@ dependencies {
|
||||
// api( 'io.agora.rtc:agora-special-full:4.1.1.29')
|
||||
api('com.github.AgoraIO-Community:LyricsView:1.1.3')
|
||||
//声网集成屏幕共享
|
||||
def agora_sdk_version = "4.5.2"
|
||||
def agora_sdk_version = "4.6.0"
|
||||
api "io.agora.rtc:full-sdk:${agora_sdk_version}"
|
||||
// api("io.agora.rtc:lite-sdk:${agora_sdk_version}")
|
||||
// api ("io.agora.rtc:voice-sdk:${agora_sdk_version}")
|
||||
@@ -204,10 +215,21 @@ dependencies {
|
||||
|
||||
api 'org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.2.5'
|
||||
api 'io.github.mayzs:paho.mqtt.android:1.2.1'
|
||||
// api project(':LocalAar')
|
||||
|
||||
// ShapeView:https://github.com/getActivity/ShapeView
|
||||
// api 'com.github.getActivity:ShapeView:10.0'
|
||||
// 腾讯cos云储存
|
||||
api 'com.qcloud.cos:cos-android:5.9.+'
|
||||
|
||||
// room数据库
|
||||
// def room_version = "2.5.0"
|
||||
// implementation "androidx.room:room-runtime:$room_version"
|
||||
// implementation "androidx.room:room-ktx:$room_version"
|
||||
// annotationProcessor "androidx.room:room-compiler:$room_version"
|
||||
|
||||
|
||||
//2. 云normal SDK,
|
||||
//aar的名称,例如:WbCloudNormal-v5.1.10-123456789.aar,填入 'WbCloudNormal-v5.1.10-123456789.aar'
|
||||
}
|
||||
|
||||
apply plugin: 'com.alibaba.arouter' // ⚠️ 添加这一行
|
||||
//apply plugin: 'com.alibaba.arouter' // ⚠️ 添加这一行
|
||||
Reference in New Issue
Block a user