构建 Android Archive (AAR) 文件时,不支持直接引用本地的 .aar

Direct local .aar file dependencies are not supported when building an AAR. The resulting AAR would be broken because the classes and Android resources from any local .aar file dependencies would not be packaged in the resulting AAR. Previous versions of the Android Gradle Plugin produce broken AARs in this case too (despite not throwing this error). The following direct local .aar file dependencies of the :CyberWinFairyallianceAnd project caused this error: C:\CyberWin\android_lib\cyber_libs_wlzc\serialport-2.1.aar

这个错误提示表明在构建 Android Archive (AAR) 文件时,不支持直接引用本地的 .aar 文件作为依赖项。因为如果这样做,这些本地 .aar 文件中的类和 Android 资源不会被打包到最终生成的 AAR 中,从而导致生成的 AAR 文件损坏。

解决方案

以下是几种可以解决这个问题的方法:

1. 将 .aar 文件发布到本地 Maven 仓库

你可以将本地的 .aar 文件发布到本地的 Maven 仓库,然后通过 Maven 坐标来引用它。

步骤如下

  • 在项目根目录的 build.gradle 中添加 maven-publish 插件

收起

groovy

复制代码
buildscript {
    repositories {
        google()
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:7.0.4' // 根据你的实际版本调整
    }
}

allprojects {
    repositories {
        google()
        mavenCentral()
        mavenLocal() // 添加这一行以支持本地 Maven 仓库
    }
}
  • 创建一个 publish.gradle 文件(例如在项目根目录下),用于发布 .aar 文件到本地 Maven 仓库

收起

groovy

复制代码
apply plugin: 'maven-publish'

def artifactGroupId = 'com.example' // 修改为你自己的 Group ID
def artifactArtifactId = 'serialport' // 修改为你自己的 Artifact ID
def artifactVersion = '2.1' // 修改为你自己的版本号

task publishLocalAar(type: PublishToMavenLocal) {
    publishing.publications {
        aar(MavenPublication) {
            groupId artifactGroupId
            artifactId artifactArtifactId
            version artifactVersion
            artifact("$rootDir/CyberWin/android_lib/cyber_libs_wlzc/serialport-2.1.aar")
        }
    }
}
  • 在项目根目录的 build.gradle 中应用 publish.gradle

收起

groovy

复制代码
apply from: 'publish.gradle'
  • 运行 publishLocalAar 任务来发布 .aar 文件到本地 Maven 仓库

收起

sh

复制代码
./gradlew publishLocalAar
  • 在你的项目的 build.gradle 中通过 Maven 坐标引用这个 .aar 文件

收起

groovy

复制代码
dependencies {
    implementation 'com.example:serialport:2.1' // 根据你自己的 Group ID、Artifact ID 和版本号调整
}
2. 将 .aar 文件解压并作为模块导入

你可以将 .aar 文件解压,然后将其作为一个模块导入到你的项目中。

步骤如下

  • 解压 .aar 文件

    • serialport-2.1.aar 文件重命名为 serialport-2.1.zip
    • 解压这个 zip 文件到一个目录,例如 serialport-2.1
  • 在 Android Studio 中导入这个模块

    • 在 Android Studio 中,选择 File -> New -> Import Module
    • 选择解压后的 serialport-2.1 目录,然后按照向导完成导入。
  • 在你的项目的 build.gradle 中引用这个模块

收起

相关推荐
Jackilina_Stone10 小时前
【faiss】用于高效相似性搜索和聚类的C++库 | 源码详解与编译安装
android·linux·c++·编译·faiss
棒棒AIT11 小时前
mac 苹果电脑 Intel 芯片(Mac X86) 安卓虚拟机 Android模拟器 的救命稻草(下载安装指南)
android·游戏·macos·安卓·mac
fishwheel11 小时前
Android:Reverse 实战 part 2 番外 IDA python
android·python·安全
消失的旧时光-194314 小时前
Android网络框架封装 ---> Retrofit + OkHttp + 协程 + LiveData + 断点续传 + 多线程下载 + 进度框交互
android·网络·retrofit
zcychong14 小时前
Handler(二):Java层源码分析
android
Chef_Chen16 小时前
从0开始学习R语言--Day58--竞争风险模型
android·开发语言·kotlin
用户20187928316717 小时前
演员的智能衣橱系统之Selector选择器
android
CYRUS_STUDIO17 小时前
OLLVM 混淆 + VMP 壳照样破!绕过加壳 SDK 的核心检测逻辑
android·逆向·汇编语言
Kapaseker17 小时前
憋了一周了,12000字深入浅出Android的Context机制
android