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
David Liu
2021-02-21 21:46:32 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5935288b3c440349b3e0ae5c274e4477f0deaea6
5935288b
1 parent
6b643fbe
update protobuf version
显示空白字符变更
内嵌
并排对比
正在显示
2 个修改的文件
包含
5 行增加
和
13 行删除
build.gradle
livekit-android-sdk/build.gradle
build.gradle
查看文件 @
5935288
...
...
@@ -40,6 +40,7 @@ ext {
versions
=
[
androidx_core:
"1.2.0"
,
dagger
:
"2.27"
,
protobuf
:
"3.15.1"
,
]
generated
=
[
protoSrc:
"$projectDir/../livekit-server/proto"
,
...
...
livekit-android-sdk/build.gradle
查看文件 @
5935288
...
...
@@ -38,23 +38,14 @@ android {
protobuf
{
protoc
{
// You still need protoc like in the non-Android case
artifact
=
'com.google.protobuf:protoc:3.0.0'
}
plugins
{
javalite
{
// The codegen for lite comes as a separate artifact
artifact
=
'com.google.protobuf:protoc-gen-javalite:3.0.0'
}
artifact
=
"com.google.protobuf:protoc:${versions.protobuf}"
}
generateProtoTasks
{
all
().
each
{
task
->
task
.
builtins
{
// In most cases you don't need the full Java output
// if you use the lite output.
remove
java
java
{
option
"lite"
}
task
.
plugins
{
javalite
{}
}
}
}
...
...
@@ -66,7 +57,7 @@ dependencies {
implementation
'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.2'
implementation
'org.webrtc:google-webrtc:1.0.32006'
implementation
"com.squareup.okhttp3:okhttp:4.9.0"
implementation
'com.google.protobuf:protobuf-lite:3.0.1'
implementation
"com.google.protobuf:protobuf-javalite:${versions.protobuf}"
implementation
'com.google.dagger:dagger:2.32'
annotationProcessor
'com.google.dagger:dagger-compiler:2.32'
...
...
请
注册
或
登录
后发表评论