AAR / JAR不会使用Android Studio 3.0 Canary 7生成

所以,标题几乎总结了我的问题。 任何人都知道如何解决它? 我上次创建apk时,在AS 2.X上工作正常,但是现在我正在用Kotlin开发,所以我必须使用AS 3.0。

我使用AS 3.0加那利7(这个项目是一个新鲜的项目)

这是我在我的图书馆的虚拟类(存储在“域”.library.mylibrary)

class Test { fun hello(): String { return "hello" } } 

这是我的(mylibrary)gradle:

 apply plugin: 'com.android.library' android { compileSdkVersion 26 buildToolsVersion "26.0.0" defaultConfig { minSdkVersion 19 targetSdkVersion 26 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']) androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) implementation 'com.android.support:appcompat-v7:26.0.0-beta2' testImplementation 'junit:junit:4.12' implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" //Declared in project level gradle: ext.kotlin_version = '1.1.3-2' } 

我的gradlew.bat清洁生成 – 信息日志: https ://pastebin.com/bfTZ5s4e