Android Studio如何发布aar或者jar
时间: 2023-08-18 22:09:50 浏览: 192
在 Android Studio 中,你可以通过如下步骤发布 AAR 或者 JAR 包:
1. 创建一个 Android Library 项目,将你想发布的代码添加到该项目中;
2. 在项目的 build.gradle 文件中指定要发布的包类型和版本信息,例如:
```
apply plugin: 'com.android.library'
android {
compileSdkVersion 30
buildToolsVersion "30.0.2"
defaultConfig {
minSdkVersion 21
targetSdkVersion 30
versionCode 1
versionName "1.0"
}
...
}
```
3. 构建项目,生成 AAR 或者 JAR 包;
4. 将生成的 AAR 或者 JAR 包上传到 Maven 仓库或者其他的代码托管平台上,供其他开发者使用。
如果你想发布 AAR 包,可以在项目的 build.gradle 文件中添加如下代码:
```
android {
...
}
// 发布 AAR 包
uploadArchives {
repositories {
mavenDeployer {
repository(url: "http://your.maven.repo.url")
pom.groupId = 'com.example'
pom.artifactId = 'library'
pom.version = '1.0'
}
}
}
```
如果你想发布 JAR 包,可以在项目的 build.gradle 文件中添加如下代码:
```
apply plugin: 'java'
// 发布 JAR 包
uploadArchives {
repositories {
mavenDeployer {
repository(url: "http://your.maven.repo.url")
pom.groupId = 'com.example'
pom.artifactId = 'library'
pom.version = '1.0'
}
}
}
```
在上传到 Maven 仓库或其他的代码托管平台之前,你需要将自己的 Maven 仓库的 URL、GroupId、ArtifactId、Version 等信息填入上述代码中。
阅读全文