Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
xuning
/
livekitAndroidXuningTest
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
davidliu
2022-01-26 16:02:30 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
09f06a1d938f8be8f3516808ca4e064e2be1cc73
09f06a1d
1 parent
840f4fd0
update libraries
隐藏空白字符变更
内嵌
并排对比
正在显示
5 个修改的文件
包含
14 行增加
和
10 行删除
build.gradle
livekit-android-sdk/build.gradle
sample-app-common/build.gradle
sample-app-compose/build.gradle
sample-app/build.gradle
build.gradle
查看文件 @
09f06a1
...
...
@@ -52,13 +52,14 @@ ext {
minVersion
:
21
,
]
versions
=
[
androidx_core
:
"1.
6
.0"
,
androidx_core
:
"1.
7
.0"
,
androidx_lifecycle:
"2.4.0"
,
autoService
:
'1.0.1'
,
dagger
:
"2.27"
,
groupie
:
"2.9.0"
,
junit
:
"4.13.2"
,
junitJupiter
:
"5.5.0"
,
coroutines
:
"1.6.0"
,
lint
:
"30.0.1"
,
protobuf
:
"3.15.1"
,
]
...
...
@@ -70,7 +71,10 @@ ext {
'service'
:
"com.google.auto.service:auto-service:${versions.autoService}"
,
'serviceAnnotations'
:
"com.google.auto.service:auto-service-annotations:${versions.autoService}"
,
],
kotlinx_coroutines:
"org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.0"
,
coroutines
:
[
"lib"
:
"org.jetbrains.kotlinx:kotlinx-coroutines-android:${versions.coroutines}"
,
"test"
:
"org.jetbrains.kotlinx:kotlinx-coroutines-test: ${versions.coroutines}"
,
],
timber
:
"com.github.ajalt:timberkt:1.5.1"
,
// lint
lint
:
"com.android.tools.lint:lint:${versions.lint}"
,
...
...
livekit-android-sdk/build.gradle
查看文件 @
09f06a1
...
...
@@ -102,11 +102,11 @@ dokkaHtml {
dependencies
{
protobuf
files
(
generated
.
protoSrc
)
implementation
"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation
deps
.
kotlinx_coroutines
implementation
deps
.
coroutines
.
lib
implementation
'org.jetbrains.kotlinx:kotlinx-serialization-json:1.1.0'
api
'com.github.webrtc-sdk:android:92.4515.02'
api
"com.squareup.okhttp3:okhttp:4.9.0"
implementation
"androidx.annotation:annotation:1.2.0"
api
'com.github.webrtc-sdk:android:93.4577.01'
api
"com.squareup.okhttp3:okhttp:4.9.1"
implementation
"androidx.annotation:annotation:1.3.0"
implementation
"androidx.core:core:${versions.androidx_core}"
implementation
"com.google.protobuf:protobuf-java:${versions.protobuf}"
implementation
"com.google.protobuf:protobuf-java-util:${versions.protobuf}"
...
...
@@ -126,7 +126,7 @@ dependencies {
testImplementation
'org.mockito:mockito-core:4.0.0'
testImplementation
"org.mockito.kotlin:mockito-kotlin:4.0.0"
testImplementation
'androidx.test:core:1.4.0'
testImplementation
"org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.0"
testImplementation
deps
.
coroutines
.
test
kaptTest
'com.google.dagger:dagger-compiler:2.38'
androidTestImplementation
'androidx.test.ext:junit:1.1.3'
androidTestImplementation
'androidx.test.espresso:espresso-core:3.4.0'
...
...
sample-app-common/build.gradle
查看文件 @
09f06a1
...
...
@@ -35,7 +35,7 @@ dependencies {
api
"androidx.core:core-ktx:${versions.androidx_core}"
api
'androidx.appcompat:appcompat:1.4.0'
api
'com.google.android.material:material:1.4.0'
api
deps
.
kotlinx_coroutines
api
deps
.
coroutines
.
lib
api
deps
.
timber
api
"androidx.lifecycle:lifecycle-runtime-ktx:${versions.androidx_lifecycle}"
api
"androidx.lifecycle:lifecycle-viewmodel-ktx:${versions.androidx_lifecycle}"
...
...
sample-app-compose/build.gradle
查看文件 @
09f06a1
...
...
@@ -50,7 +50,7 @@ android {
dependencies
{
implementation
fileTree
(
dir:
'libs'
,
include:
[
'*.jar'
])
implementation
"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation
deps
.
kotlinx_coroutines
implementation
deps
.
coroutines
.
lib
implementation
"androidx.core:core-ktx:${versions.androidx_core}"
implementation
'androidx.appcompat:appcompat:1.3.1'
implementation
'com.google.android.material:material:1.4.0'
...
...
sample-app/build.gradle
查看文件 @
09f06a1
...
...
@@ -35,7 +35,7 @@ android {
dependencies
{
implementation
fileTree
(
dir:
'libs'
,
include:
[
'*.jar'
])
implementation
"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation
deps
.
kotlinx_coroutines
implementation
deps
.
coroutines
.
lib
implementation
'com.google.android.material:material:1.4.0'
implementation
'androidx.appcompat:appcompat:1.4.0'
implementation
"androidx.core:core-ktx:${versions.androidx_core}"
...
...
请
注册
或
登录
后发表评论