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
2024-07-08 16:56:02 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
GitHub
2024-07-08 16:56:02 +0900
Commit
5d8c0c8de05763fc70021ea9e0ff4cfb3eff1516
5d8c0c8d
1 parent
000e4fd2
Use settings.gradle for dependency resolution (#451)
隐藏空白字符变更
内嵌
并排对比
正在显示
3 个修改的文件
包含
17 行增加
和
7 行删除
README.md
build.gradle
settings.gradle
README.md
查看文件 @
5d8c0c8
...
...
@@ -60,7 +60,7 @@ dependencies {
Compose-based apps should check out our
[
Android Components SDK
](
https://github.com/livekit/components-android
)
for composables support.
You'll also need
jitpack as one of your repositories.
You'll also need
JitPack as one of your repositories. In your
`settings.gradle`
file:
```
groovy title="settings.gradle"
dependencyResolutionManagement {
...
...
build.gradle
查看文件 @
5d8c0c8
...
...
@@ -28,12 +28,6 @@ subprojects {
return
}
repositories
{
google
()
mavenCentral
()
maven
{
url
'https://jitpack.io'
}
}
apply
plugin:
"com.diffplug.spotless"
spotless
{
// optional: limit format enforcement to just the files changed by this feature branch
...
...
settings.gradle
查看文件 @
5d8c0c8
pluginManagement
{
repositories
{
google
{
content
{
includeGroupByRegex
(
"com\\.android.*"
)
includeGroupByRegex
(
"com\\.google.*"
)
includeGroupByRegex
(
"androidx.*"
)
}
}
mavenCentral
()
gradlePluginPortal
()
}
}
dependencyResolutionManagement
{
repositoriesMode
.
set
(
RepositoriesMode
.
FAIL_ON_PROJECT_REPOS
)
repositories
{
google
()
mavenCentral
()
maven
{
url
'https://jitpack.io'
}
}
}
include
':sample-app'
,
':sample-app-compose'
,
':livekit-android-sdk'
rootProject
.
name
=
'livekit-android'
include
':sample-app-common'
...
...
请
注册
或
登录
后发表评论