我使用Android Studio创建了一个简单的示例库。
我的目标是在构建模块时,将其发布到本地文件系统上的maven repo,以便由另一个进程使用。
我已经按照https://developer.android.com/build/publish-library/upload-library的说明进行了操作,并得到了下面的build.gradle:
plugins {
id 'com.android.library'
id 'maven-publish'
}
android {
namespace 'com.example.mylibbrary'
compileSdk 33
defaultConfig {
minSdk 26
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
publishing {
singleVariant("debug")
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.8.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}
publishing {
publications {
debug(MavenPublication) {
groupId = 'com.example'
artifactId = 'mylibbrary'
version = "1.0"
afterEvaluate {
from components.debug
}
}
}
repositories {
maven {
name = 'mynewrepo'
url = "file://${project.buildDir}/repo"
}
}
}
字符串
但是,在构建模块时,该gradle文件的发布任务似乎从未实际运行,尽管mylibbrary-debug.aar最终位于MyLibrary\mylibrary\build\outputs\aar中。
如何将其发布到MyLibrary\mylibrary\build\repo\mynewrepo中的存储库?
1条答案
按热度按时间z2acfund1#
尝试运行“发布”任务
添加“MynewrepoRepository”