android – 将AAR文件添加为Intellj项目的依赖项

我正在使用Intellij IDEA 14.1.4在从
Android Studio移动一段时间之后创建一个Android项目.我制作了一些库(通过Android Studio),并希望在Intellij中使用它们.

但是,似乎Intellij只通过libs文件夹接受.jar文件,Android Studio只创建.aar文件.

在Android Studio中,可以选择(在创建新模块时)导入现有的.jar / .aar包以放入新模块.此选项似乎不在intellij中. This user似乎认为Intellij支持这一点,但这些说明允许我创建一个全新的Gradle模块.我想要做的是使用现有的.aar文件.

我该怎么办?我应该为这个项目移回Studio,还是有办法让我使用这些.aar文件?

附: Intellij无法处理原始时期.我尝试将其添加到我的gradle文件中,但出现错误:

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

编辑
这是我的build.gradle:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.2.3'
    }
}
apply plugin: 'com.android.application'

repositories {
    jcenter()
    flatDir() {
        dirs 'libs'
    }
}

android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"

    defaultConfig {
        minSdkVersion 19
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile ':mylib@aar'
    compile 'com.android.support:appcompat-v7:22.2.0'
}

最佳答案 所以我在Intellj中看到了这个名为“Associate file …”的选项,并将aar与存档相关联.重新编译后,我收到了这个错误

Warning:Project app: Only Jar-type local dependencies are supported. Cannot handle: mylib.aar

我猜这只是Intellij的罐子.回到Android Studio,我想:)

点赞