我一直在将AndriodAnnotations与Eclipse(ADT)结合使用,没有任何问题。最近,我决定探索Android Studio。在构建应用程序时,将Android Studio与AndroidAnnotations一起使用会遇到一些问题。下面是错误:
显示三个错误时,我可以运行该应用程序而没有任何问题。
下面是我的build.gradle:
apply plugin: 'com.android.application'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.2+'
}
}
apply plugin: 'android'
apply plugin: 'android-apt'
android {
compileSdkVersion 19
buildToolsVersion "19.1.0"
defaultConfig {
applicationId "com.test.restaurantmenu"
minSdkVersion 15
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
apt {
arguments {
androidManifestFile variant.processResources.manifestFile
resourcePackageName "com.test.restaurantmenu"
}
}
dependencies {
apt "org.androidannotations:androidannotations:3.0+"
compile "org.androidannotations:androidannotations-api:3.0+"
compile 'com.android.support:appcompat-v7:+'
compile 'com.github.satyan:sugar:1.3'
compile fileTree(dir: 'libs', include: ['*.jar'])
}
我已启用注释处理器,如下所示:
<< img src =“ https://image.soinside.com/eyJ1cmwiOiAiaHR0cHM6Ly9pLnN0YWNrLmltZ3VyLmNvbS9VZ3AwUy5wbmcifQ==” alt =“在此处输入图像描述”>
设置中是否有任何遗漏或错误的步骤?
我安装了“ Android SDK工具23.0.2”,所有错误均已解决。
<< img src =“ https://image.soinside.com/eyJ1cmwiOiAiaHR0cHM6Ly9pLnN0YWNrLmltZ3VyLmNvbS9INnhkYS5wbmcifQ==” alt =“在此处输入图像描述”>
[如果您使用的是Kotlin,但出现显示错误
错误:-source 1.3不支持注释(使用-source 5或更高以启用注释)
替换implementation org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version
带有implementation org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version
在模块级build.gradle的依赖项中