1

我有带有即时模块的应用程序,即时模块只有 2 个依赖项基本模块和一个功能模块。我试图生成签名的 apk,但我有一个问题:

Cannot choose between the following configurations of project :instant:
  - kapt
  - kaptDebug
  - kaptRelease
All of them match the consumer attributes:
  - Configuration 'kapt':
      - Found artifactType 'processed-jar' but wasn't required.
      - Required com.android.build.api.attributes.BuildTypeAttr 'release' but no value provided.
      - Required com.android.build.gradle.internal.dependency.AndroidTypeAttr 'Metadata' but no value provided.
  - Configuration 'kaptDebug':
      - Found artifactType 'processed-jar' but wasn't required.
      - Required com.android.build.api.attributes.BuildTypeAttr 'release' but no value provided.
      - Required com.android.build.gradle.internal.dependency.AndroidTypeAttr 'Metadata' but no value provided.
  - Configuration 'kaptRelease':
      - Found artifactType 'processed-jar' but wasn't required.
      - Required com.android.build.api.attributes.BuildTypeAttr 'release' but no value provided.
      - Required com.android.build.gradle.internal.dependency.AndroidTypeAttr 'Metadata' but no value provided.

我生成了很多次apk,但今天我有这个错误。当我尝试进行以后的提交时,他们也遇到了这个问题,但是一周前这个提交工作正常。

这是我的即时模块 gradle:

apply plugin: 'com.android.instantapp'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 28
    buildToolsVersion '28.0.2'
}

dependencies {
    implementation project(':base')
    implementation project(':bo')
}

这是我的功能模块:

dependencies {
    implementation project(':base')
    implementation project(path: ':settings')
    implementation project(':video-player')

    implementation 'com.android.support:recyclerview-v7:28.0.0'
    implementation 'com.android.support:cardview-v7:28.0.0'
    implementation 'com.android.support:design:28.0.0'
    implementation 'de.hdodenhof:circleimageview:2.2.0'
    implementation 'jp.wasabeef:blurry:2.1.1'
    implementation 'com.romandanylyk:pageindicatorview:1.0.1'
    implementation 'net.cachapa.expandablelayout:expandablelayout:2.9.2'

    //RxJava
    implementation 'com.jakewharton.retrofit:retrofit2-rxjava2-adapter:1.0.0'
    implementation 'io.reactivex.rxjava2:rxandroid:2.0.2'
    implementation 'io.reactivex.rxjava2:rxjava:2.2.0'

    //time ago
    implementation 'com.github.marlonlom:timeago:3.0.2'
    //Glide
    implementation 'com.github.bumptech.glide:glide:4.7.1'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.7.1'
}
4

1 回答 1

0

正如@Hassan Ibraheem 所说,问题出在instantapp 模块的apply plugin语句kotlin-android中。kotlin-android-extensions我只需要删除它们,因为这个模块不包含任何代码。

于 2018-10-19T10:42:20.080 回答