#android #android-studio #gradle #android-gradle-plugin #jitpack
Вопрос:
Я работаю над созданием библиотеки 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.
Как также включить переходную зависимость от выпуска?
Комментарии:
1. Вы приняли какое-либо решение по этому вопросу?
Ответ №1:
Jitpack используется ./gradlew install
для создания артефактов.
Добавление установочного блока и добавление зависимостей вручную в файл pom сработало для меня.
Вот install
блок, который я добавил в build.gradle
файл уровня модуля:
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)
}
}
}
}
}
}
Я не уверен, что это чистое решение проблемы. Если есть более чистые альтернативы, дайте мне знать.