首页 > 代码库 > AA 出现app:compileDebugJavaWithJavac
AA 出现app:compileDebugJavaWithJavac
当配置好androidanotation后,使用注释时会出现如题的错误。其中错误的原因网上有挺多的帖子了,列举些网上回答的问题。 1、因为版本不是最新的问题,更新最新的sdk 2、设置JDK为本地的jdk 3、也有的说要设置 compileOptions { sourceCompatibility JavaVersion.VERSION_1_7 targetCompatibility JavaVersion.VERSION_1_6 }; 4、有可能是资源文件的名字不符合安卓规则导致 5、有可能是重复引用了相同的库文件 上面那些都有可能引起,但是我是在使用androidannotation以后才出现。因此分析是这个库的问题,后来耐心看了官方文档,发现需要在build.gradle(moudel:app)中添加 apt { arguments { androidManifestFile variant.outputs[].processResources.manifestFile } } 如下 apply plugin: apply plugin: def AAVersion = android { compileSdkVersion buildToolsVersion defaultConfig { applicationId minSdkVersion targetSdkVersion versionCode versionName testInstrumentationRunner } buildTypes { release { minifyEnabled proguardFiles getDefaultProguardFile()} } allprojects { repositories { maven { url } } } } apt { arguments { androidManifestFile variant.outputs[].processResources.manifestFile } } 这样 ,我的问题解决了。
AA 出现app:compileDebugJavaWithJavac
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。