我目前正在开发一个使用AndroidAnnotations开发的Android库,并使用一些片段。当它被编译为Android应用程序时,代码很好,一切正常。当它被编译为Android库时,它会中断,因为它无法找到任何AndroidAnnotations生成的类。
我使用@EActivity(resName="activity_name")
而不是@EActivity(R.layout.activity_name)
为每个活动添加注释,这可以纠正一些错误。
我遇到的问题是,在某些活动中,我动态创建了一些像这样的碎片(例如):
PhotoFragment fragment = PhotoFragment_.builder().someParams("a string param").build();
当我尝试编译为Android库时,此调用失败,因为它无法找到动态生成的PhotoFragment_
类。是否有解决方案使其工作?通过改变我创建片段的方式,还是通过配置AndroidAnnotations?
编辑20/04/2016
我的build.gradle
(模块级别):
apply plugin: 'com.android.library'
apply plugin: 'android-apt'
def AAVersion = '4.0.0'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
// Barcode library (ZXing)
compile 'com.journeyapps:zxing-android-embedded:3.0.2'
compile 'com.google.zxing:core:3.2.0'
// Android Annotations
apt "org.androidannotations:androidannotations:$AAVersion"
compile "org.androidannotations:androidannotations-api:$AAVersion"
// Android Bootstrap
compile 'com.beardedhen:androidbootstrap:2.1.0'
// Gson
compile 'com.google.code.gson:gson:2.4'
// Some auto-generated BS
compile 'com.android.support:design:23.2.1'
compile 'com.android.support:support-v4:23.2.1'
// Robotium --> Emulate User Interaction on tests
compile 'com.jayway.android.robotium:robotium-solo:5.5.4'
// Android Testing
androidTestCompile 'com.android.support:support-annotations:23.2.1'
androidTestCompile 'com.android.support.test:runner:0.5'
androidTestCompile 'com.android.support.test:rules:0.5'
// OkHTTP (HTTP Client Library)
compile 'com.squareup.okhttp3:okhttp:3.2.0'
}
apt {
arguments {
library 'true'
}
}
非常感谢!
答案 0 :(得分:3)
经过讨论,结果发现代码中存在编译错误(与注释处理器无关)。这是甚至没有调用AndroidAnnotations处理器,并且没有生成类。
解决方案是修复"正常"编译错误,然后注释处理器将运行。这很难,因为错误将隐藏在许多生成的类未找到的错误中,因此需要彻底阅读。