android - Kapt 不在即时应用功能模块中生成类

标签 android dagger-2 android-instant-apps kapt

我在我的 android 应用程序中使用 dagger2。即使没有错误,它也不会生成 Dagger 组件类。

我在设置中启用了注释处理器并重新启动了我的 android studio,但这对我不起作用。我也读了这个帖子Dagger2 not generating Daggercomponent classes并在一个线程上读到 apt 已被弃用,所以我正在使用 annotationProcessor

基础模块 build.gradle

apply plugin: 'com.android.feature'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'

android {
    compileSdkVersion 26
    buildToolsVersion "26.0.1"
    baseFeature true
    defaultConfig {
        minSdkVersion 23
        targetSdkVersion 26
        versionCode 1
        versionName "0.0.1"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    application project(':app')
    feature project(":main")
    feature project(":tv")  

    api 'com.android.support:appcompat-v7:26.0.2'
    api 'com.android.support.constraint:constraint-layout:1.0.2'
    api 'com.android.support:design:26.0.2'

    api "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
    api "org.jetbrains.anko:anko-commons:$anko_version"

    api "android.arch.lifecycle:runtime:1.0.0-alpha9"
    api "android.arch.lifecycle:extensions:1.0.0-alpha9"
    kapt "android.arch.lifecycle:compiler:1.0.0-alpha9"

    api 'com.squareup.retrofit2:retrofit:2.3.0'
    api "com.squareup.retrofit2:converter-moshi:2.0.0"

    api 'com.google.dagger:dagger:2.11'
    kapt 'com.google.dagger:dagger-compiler:2.11'

    api 'com.github.bumptech.glide:glide:4.0.0'
    kapt 'com.github.bumptech.glide:compiler:4.0.0'

    // new version 1.5.2 has some multi dex issue
    debugApi 'com.squareup.leakcanary:leakcanary-android:1.5.1'
    releaseApi 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.1'
}

repositories {
    mavenCentral()
}

apply plugin: 'com.google.gms.google-services'

电视功能 build.gradle

apply plugin: 'com.android.feature'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
    compileSdkVersion 26
    buildToolsVersion "26.0.1"


    defaultConfig {
        minSdkVersion 23
        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'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
    implementation project(':base')
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.0'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.0'
}

项目build.gradle

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    ext.kotlin_version = '1.1.3-2'
    ext.anko_version = '0.10.1'
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.0-beta4'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath 'com.google.gms:google-services:3.1.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

网络组件.kt

@Component(modules = arrayOf(AppModule::class, NetModule::class))
interface NetComponent {
    fun inject(activity: MainActivity)
}

apt 在 apt 目录中生成了 dagger 类,但即使我在整个项目目录中搜索,现在也没有这样的 dagger 生成类。

enter image description here

我看到它没有生成 DaggerNetComponent 类,因为编译时也没有错误。有谁知道可能是什么问题?

最佳答案

您的模块是一个免安装应用功能模块。看起来 kapt 还不支持这些。

我无法用来源支持这一点,但这应该有效:

  • 功能模块
    • 图书馆模块 + Dagger + kapt

将所有内容从您的功能模块移至库模块。然后使功能模块依赖于库模块。

库模块支持 kapt。

This sample project在 Instant App Feature 模块中使用 Dagger 和 Kapt,它开箱即用。您的项目设置一定有其他问题,这与 Dagger 或注释处理无关。

遍历 Instant App Codelab并确保您没有误解任何内容。

然后原始答案应该有效。

原始答案

使用kapt 代替annotationProcessor 配置。如:

kapt "android.arch.lifecycle:compiler:1.0.0-alpha9"
kapt 'com.google.dagger:dagger-compiler:2.11'
kapt 'com.github.bumptech.glide:compiler:4.0.0'

如果您正在使用数据绑定(bind),请同时添加:

kapt "com.android.databinding:compiler:3.0.0-beta4"

当您使用不同的构建插件版本时,不要忘记更新版本。

Kotlin 插件不获取 annotationProcessor 依赖项,我们必须使用 kapt 依赖项。

最后,要使用最新版本的 Kotlin 注释处理器,请将它放在模块的 build.gradle 顶部:

apply plugin: 'kotlin-kapt'

Kotlin 对 com.android.feature 模块的支持是 added in Kotlin 1.1.4 ,确保你至少使用那个。

关于android - Kapt 不在即时应用功能模块中生成类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46080018/

相关文章:

android - 使用 dagger2 时未生成 DataBindingComponent

Android Instant App 未正确安装(表现像普通应用程序)

android - 如何强制使用溢出菜单而不是 native 菜单?

android - 找不到参数的方法 compile() [com.android.support :appcompat-v7:25. 0.0]

Android:ADB 未加载

java - 从不正确的线程 Android 访问 Realm

android - 使用 dagger2 进行 Robolectric 测试 Activity

android - 有关 Android 与 RxAndroid、Dagger 2 和 Realm 的问题

Android Studio Preview 3.0 - 运行即时应用程序时应用程序安装失败

Android 即时应用程序 - 不能 "Run unverified software, run arbitrary native code"。仅即时应用程序运行时