我已经创建了几个Kotlin和Android库,并将它们分别组织在多个Java/Kotlin和Android模块中,并希望使用maven-publish将它们发布到远程存储库。所有模块都是一个项目的一部分。
对于Java/Kotlin模块,发布工作正常,但是,发布Android模块会导致空的classes.jar
文件。Android Manifest和资源按预期发布,并且可以在使用远程库时使用。
AGP:8.1.0
Kotlin:1.8.21
Android Studio :长颈鹿|2022.3.1
下面是我的Android lib的Gradle文件:
plugins {
id 'com.android.library'
id 'kotlin-android'
id 'kotlin-parcelize'
id 'maven-publish'
}
apply from: '../defaultAndroidConfig.gradle'
android {
namespace 'com.some_namespace'
}
dependencies {
implementation androidDependencies.androidCoreKtx
implementation androidDependencies.appCompat
implementation androidDependencies.material
implementation androidDependencies.constraintLayout
implementation loggingDependencies.timber
testImplementation testingDependencies.jUnit
}
publishing {
publications {
release(MavenPublication) {
groupId = 'com.groupId'
artifactId = 'artifact-id'
version = "$version"
afterEvaluate {
from components.release
}
pom {
developers {
developer {
id = 'devId'
name = 'devName'
email = 'devMail'
}
}
}
}
}
repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/myRepo")
credentials {
username = localProps.getProperty('github.username')
password = localProps.getProperty('github.token')
}
}
}
}
下面是defaultAndroidConfig.gradle
:
android {
compileSdkVersion androidCompileSdkVersion
defaultConfig {
minSdkVersion androidMinSdkVersion
targetSdkVersion androidTargetSdkVersion
aarMetadata {
minCompileSdk = androidMinSdkVersion
}
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = jvmTargetVersion
}
buildFeatures {
viewBinding true
}
publishing {
singleVariant('release') {
withJavadocJar()
withSourcesJar()
}
}
}
我使用./gradlew :android-lib:publish
来发布这个库。
一旦加载到其他项目,这就是结果(第一个是Kotlin库,其中所有内容都发布得很好,第二个是Android库,其中缺少类)。
在使用--info
发布时,publishReleasePublicationToGitHubPackagesRepository is not up-to-date because Task has not declared any outputs despite executing actions
引起了我的注意,其他一切似乎都很好。
我做错了什么?😄
提前感谢任何帮助!
1条答案
按热度按时间igetnqfo1#
我把
minifyEnabled
设置为true
。更改为false
对于库的预期用途来说已经足够好了,一切都工作正常。