gpt4 book ai didi

android - 无法解析对 JitPack 版本的传递依赖

转载 作者:行者123 更新时间:2023-12-04 23:59:01 29 4
gpt4 key购买 nike

我正在构建一个 android 库,我想将该库的依赖项作为传递依赖项包含到我的应用程序中。这是我的库的 build.gradle 文件:

plugins {
id 'com.android.library'
id 'com.github.dcendents.android-maven'
}
group='com.github.rohg007.xxx'

android {
compileSdkVersion 30

defaultConfig {
minSdkVersion 21
targetSdkVersion 30
versionCode 1
versionName "1.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"

ndk {
abiFilters 'armeabi-v7a', 'arm64-v8a'
}
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}

dependencies {
implementation 'androidx.appcompat:appcompat:1.3.1'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'

//SDK level dependencies
implementation 'org.protoojs.droid:protoo-client:4.0.3'
api 'org.webrtc:google-webrtc:1.0.32006'
implementation 'com.squareup.okhttp3:okhttp:4.9.1'
implementation("com.squareup.okhttp3:logging-interceptor:4.9.1")
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
implementation 'io.reactivex.rxjava2:rxjava:2.2.6'

implementation 'com.jakewharton.timber:timber:4.7.1'
}
repositories {
mavenCentral()
}

当我将库作为模块包含时,它工作正常并且所有传递依赖性都得到解决:

implementation project(path: ':huddle01-android-sdk')

但是当我在 Jitpack 上发布并将其作为依赖项包含在内时:

implementation 'com.rohg007.xxx:0.1.0' 

implementation ('com.rohg007.xxx:0.1.0'){transitive=true} 

它无法解析 webrtc 依赖项。如何同时包含对发布的传递依赖?

最佳答案

Jitpack 使用 ./gradlew install 来生成 Artifact 。

添加安装 block 并手动将依赖项附加到 pom 文件对我有用。

这是我添加到模块级 build.gradle 文件的 install block :

android {
...
}

dependencies {
...
}

install{
repositories{
mavenInstaller{
pom.withXml {
def dependenciesNode = asNode().appendNode('dependencies')
configurations.implementation.allDependencies.each { dependency ->
if (dependency.name != 'unspecified') {
def dependencyNode = dependenciesNode.appendNode('dependency')
dependencyNode.appendNode('groupId', dependency.group)
dependencyNode.appendNode('artifactId', dependency.name)
dependencyNode.appendNode('version', dependency.version)
}
}
}
}
}
}

我不确定这是否是问题的干净解决方案。如果有更清洁的替代品,请告诉我。

关于android - 无法解析对 JitPack 版本的传递依赖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68843928/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com