Butterknife not working in dynamic-feature sub-project: error: package R2 does not exist

Butterknife not working in dynamic-feature sub-project: error: package R2 does not exist

我正在迁移应用以使用动态交付和动态功能模块,butterknife 不再适用于新配置。

目前 butterknife 在基础 :app 模块中工作,它也可以在标有 apply plugin: 'com.android.library' 的标准库模块中工作。问题仅在我的新动态功能模块中,标有 plugin: 'com.android.dynamic-feature'。

这是我的项目级 gradle 文件:

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

buildscript {
    repositories {
        google()
        jcenter()

    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.4.1'
        classpath 'com.jakewharton:butterknife-gradle-plugin:10.1.0'

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

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

现在我的基本应用 gradle 文件(在 :app butternife 中像往常一样与 R 一起工作)

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.elksa.ddsample"
        minSdkVersion 17
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    bundle {
        language {
            enableSplit = true
        }
        density {
            enableSplit = true
        }
        abi {
            enableSplit = true
        }
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    dynamicFeatures = [":images"]
}

dependencies {
    api 'androidx.lifecycle:lifecycle-extensions:2.0.0'
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    api 'androidx.appcompat:appcompat:1.0.2'
    api 'androidx.constraintlayout:constraintlayout:1.1.3'

    // Butter Knife
    api 'com.jakewharton:butterknife:10.1.0'
    annotationProcessor 'com.jakewharton:butterknife-compiler:10.1.0'

    // Dynamic features
    implementation 'com.google.android.play:core:1.6.1'

    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.2.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}

最后是我的动态功能模块的 gradle 文件,其中 butterknife 不工作,与 R 绑定按预期给我一个 null 参考和 R2 完全不见了。

apply plugin: 'com.android.dynamic-feature'
apply plugin: 'com.jakewharton.butterknife'

android {
    compileSdkVersion 28

    defaultConfig {
        minSdkVersion 21
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation project(':app')
}

这就是我在尝试使用 butterknife 时在动态功能模块中得到的结果 (error: package R2 does not exist)

有什么想法吗?提前致谢!

在您的 “动态特征” 模块 build.gradle 文件中,还添加

// Butter Knife

    api 'com.jakewharton:butterknife:10.1.0'

    annotationProcessor 'com.jakewharton:butterknife-compiler:10.1.0'
apply plugin: 'com.android.dynamic-feature'
apply plugin: 'com.jakewharton.butterknife'

android {
  compileSdkVersion 28

  defaultConfig {
    minSdkVersion 21
    targetSdkVersion 28
    versionCode 1
    versionName "1.0"
   }
 }

  dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation project(':app')

    // Butter Knife
    api 'com.jakewharton:butterknife:10.1.0'
    annotationProcessor 'com.jakewharton:butterknife-compiler:10.1.0'
  }

终于解决了这个问题。该文档仅提及库子项目,未提及动态功能。由于我是从库迁移的,所以我假设应该应用相同的配置,但我遇到了问题。事实证明,尽管官方文档中缺少信息(这里是 link 以防万一他们更新它)

https://github.com/JakeWharton/butterknife

R 在标有 apply plugin: 'com.android.dynamic-feature' 的模块中工作得很好,就像在基础 :app 模块中工作一样。 我的问题是一个与 butterknife 无关的愚蠢错误,我修复了它并且一切正常。

现在总结一下,对于 dynamic-feature 模块,只需使用 R 而不是 R2 来执行绑定。 上面的代码按原样工作(仅进行此更改)。