如何使用本地aar依赖?

时间:2015-03-05 02:56:59

标签: android android-gradle aar

我谷歌关于本地aar,每个人都说它可以工作,但它在android studio 1.1.0不起作用。

我尝试使用:

compile fileTree(dir: 'libs', include: ['*.aar'])

但它提示:

Warning:Project app: Only Jar-type local dependencies are supported. Cannot handle: /Users/kycq/AndroidStudioProjects/QingTaJiao/app/libs/KycqBasic-release.aar

我该如何使用当地的aar? 如果我应该使用:

compile 'com.example.library:library:1.0.0@aar'

怎么做?

2 个答案:

答案 0 :(得分:69)

我遇到了同样的错误。

这是唯一帮助我的事情:

dependencies {
   compile(name:'nameOfYourAARFileWithoutExtension', ext:'aar')
 }
repositories{
      flatDir{
              dirs 'libs'
       }
 }

参考:Adding local .aar files to Gradle build using "flatDirs" is not working

答案 1 :(得分:3)

在我的情况下,必须分发aar。当我在另一个项目中导入aar时,会出现此错误。 我解决了这个问题,使用maven依赖结构(pom,md5等等)分发aar

publishing {
  publications {
    maven(MavenPublication) {
      groupId "<GROUP_ID>"
      artifactId "<ARTIFACT_ID>"
      version <VERSION>
      artifact "$buildDir/outputs/aar/<AAR_FILE>"
      pom.withXml {
        def dependenciesNode = asNode().appendNode("dependencies")
        configurations.compile.allDependencies.each { dependency ->
          def dependencyNode = dependenciesNode.appendNode("dependency")
          dependencyNode.appendNode("groupId", dependency.group)
          dependencyNode.appendNode("artifactId", dependency.name)
          dependencyNode.appendNode("version", dependency.version)
        }
      }
    }
  }
  repositories {
    maven {
      url "$buildDir/repo"
    }
  }
}

在Android应用程序上,我需要添加本地maven存储库:

allprojects {
  repositories {
    jcenter()
    maven {
      url "<LOCAL_REPO>"
    }
  }
}

并添加依赖项:

compile("<GROUP_ID>:<ARTIFACT_ID>:<VERSION>@aar") {
  transitive = true
}