这个问题涉及我在android-annotations
框架与gradle
中android studio
进行整合时遇到的问题。这里https://github.com/excilys/androidannotations/wiki/Building-Project-Gradle
提示如何将其与android项目集成。不幸的是,我没有使用gradle
进展,谷歌也无法提供Gradle Sync错误的有效帮助:
Error:(28, 0) Could not find property 'plugin' on root project 'value'.
表示符合
apply plugin 'com.android.application'
我在annotations
集成期间添加的内容。
ENV:
Android Studio (Beta) 0.8.9
------------------------------------------------------------
Gradle 1.4
------------------------------------------------------------
Gradle build time: Monday, September 9, 2013 8:44:25 PM UTC
Groovy: 1.8.6
Ant: Apache Ant(TM) version 1.9.3 compiled on April 8 2014
Ivy: non official version
JVM: 1.7.0_65 (Oracle Corporation 24.65-b04)
OS: Linux 3.13.0-37-generic amd64
欣赏任何溶剂。
答案 0 :(得分:4)
正确的语法是apply plugin: 'com.android.application'
(注意冒号)。