同步ios接听界面

This commit is contained in:
2023-11-06 18:24:57 +08:00
parent 23a2a2efb3
commit 48b30868f4
212 changed files with 17437 additions and 24 deletions

26
callkit/build.gradle Normal file
View File

@@ -0,0 +1,26 @@
apply plugin: 'com.android.library'
android {
compileSdkVersion 33
defaultConfig {
minSdkVersion 21
targetSdkVersion 31
versionName "5.6.5"
}
sourceSets {
main {
manifest.srcFile 'src/main/AndroidManifest.xml'
jniLibs.srcDirs = ['libs']
}
}
}
dependencies {
api fileTree(dir: 'libs', include: ['*.jar'])
api project(path: ':common')
implementation 'androidx.media:media:1.2.1'
implementation 'com.github.bumptech.glide:glide:4.9.0'
}