我正在迁移应用程序以使用动态交付,并且动态功能模块和黄油刀在新配置下不再起作用。
当前,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文件,其中的黄油刀不起作用,与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')
}
最后,这就是我尝试使用黄油刀(error: package R2 does not exist
)时在动态功能模块中得到的内容
有什么想法吗?预先感谢!
答案 0 :(得分:0)
在您的“动态功能” 模块 build.gradle 文件中,还添加
//黄油刀
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'
}
答案 1 :(得分:0)
最后,我能够解决此问题。该文档仅提及库子项目,而不涉及动态功能。由于我是从库中迁移的,因此我假设应该应用相同的配置,但出现了问题。事实证明,尽管官方文档中缺乏信息(这里是链接,以防他们更新它)
https://github.com/JakeWharton/butterknife
R
在标有apply plugin: 'com.android.dynamic-feature'
的模块中工作正常,与在基础:app
模块上工作的方式相同。
我的问题是与黄油刀无关的愚蠢错误,我已将其修复,一切正常。
现在总结一下,对于动态功能模块,只需使用R
而不是R2
来执行绑定。
上面的代码按原样工作(仅此更改)。