我收到此错误:
android-apt插件与Android Gradle插件不兼容。请改用“annotationProcessor”配置
因为我用这个不工作:
Android Studio警告:使用不兼容的插件进行注释处理
升级到Android Studio 2.3后android-apt的不兼容插件
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath "io.realm:realm-gradle-plugin:1.1.1"
classpath 'com.google.gms:google-services:3.0.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
apply plugin: 'com.android.application'
apply plugin: 'realm-android'
android {
compileSdkVersion 24
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "com.queivera.manna"
minSdkVersion 14
targetSdkVersion 24
versionCode 3
versionName "1.3"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
/* IMPORTANT :
* Be careful when update dependencies, different version library may caused error */
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
// google library
compile 'com.android.support:appcompat-v7:24.1.1'
compile 'com.android.support:cardview-v7:24.1.1'
compile 'com.android.support:recyclerview-v7:24.1.1'
compile 'com.android.support:design:24.1.1'
compile 'com.android.support:support-v4:24.1.1'
compile 'com.google.android.gms:play-services-ads:9.2.1'
compile 'com.google.android.gms:play-services-analytics:9.2.1'
compile 'com.google.firebase:firebase-messaging:9.2.1'
// library for api
compile('com.squareup.retrofit2:retrofit:2.0.0-beta4') {
exclude module: 'okhttp'
}
compile 'com.squareup.okhttp3:okhttp:3.2.0'
compile 'com.squareup.okhttp3:logging-interceptor:3.0.1'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
compile 'com.squareup.picasso:picasso:2.5.2'
// ripple effect library
compile 'com.balysv:material-ripple:1.0.2'
}
apply plugin: 'com.google.gms.google-services'
我也面临同样的问题。这个错误是由于领域插件依赖性造成的。请更新到插件的最新版本。我已经更新了gradle中的领域依赖项。构建到这个
classpath "io.realm:realm-gradle-plugin:5.0.0"
并且错误已被消除。
下面的build.gradle(项目)文件
应用插件:'realmandroid' android{编译SDK版本24 buildToolsVersion'26.0.2' } /*重要提示:*更新依赖项时要小心,不同版本的库可能会导致错误/依赖项{编译文件树(目录:'libs',include:['.jar']))testCompile'junit:junit:4.12'//google library compile'com.androi
根据这个答案和这个答案,我已经在应用程序gradle中进行了更改,但它仍然显示我在构建应用程序时跟踪错误。 我在这里错过了什么? 这是我的应用程序Gradle 我使用的是Android Studio3.0,渐变版本是3.0
所以我只想创建一个hello world应用程序,事情就这样发生了 构建文件'C:\User\Yuness\AndroidStudioProjects\MyApplication 2\build.gradle'行:3 在以下任何来源中均未找到插件[id:'com.android.application',版本:'7.1.2',apply:false]: 尝试:使用--info或--debug选项运
问题内容: 因此,我制作了一个可穿戴应用程序,可以在其中使用MessageListenerService通过屏幕上的按钮来控制自动驾驶汽车。在尝试构建项目后,我遇到了一些问题,它要求我从已经安装的SDK中安装“ Android支持存储库”。我在SO(链接)上发现了另一个类似的问题, 该问题具有某种解决方案,但现在它说 “错误:已应用Java插件,但与Android插件不兼容” 这是我的可穿戴模块中
自从升级到Android Studio 4.1后,我在启动时不断收到以下错误消息: 插件错误:插件“Android Studio的结构”不兼容(仅在IntelliJ IDEA中支持)。 该插件既没有在设置中列出