无法从项目生成AAR文件

时间:2018-10-05 19:56:12

标签: android

我是从android studio创建库的新手。我已经在开发人员网站上阅读了此tutorial。因此,要尝试一下,我创建了一个新项目,没有做任何事,我编辑了应用程序级别的build.gradle文件,如下所示:

apply plugin: 'com.android.library'

android {
    compileSdkVersion 28
    defaultConfig {
        minSdkVersion 15
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

现在,当我尝试构建apk(应该构建aar文件)时,它没有构建任何东西,因为在构建apk时我看不到任何确认消息,例如app,也无法在app /构建/输出文件夹..

我要去哪里错了?我在本教程中有什么理解不对的地方吗?

Here is the project structure - screen shot

0 个答案:

没有答案