已应用“java”插件,但与 Android 插件不兼容

Posted

技术标签:

【中文标题】已应用“java”插件,但与 Android 插件不兼容【英文标题】:The 'java' plugin has been applied, but it is not compatible with the Android plugins 【发布时间】:2017-03-05 04:37:21 【问题描述】:

我在尝试将 Fabric 集成到我的 android 应用的 Gradle 文件时遇到以下错误。

Error:The 'java' plugin has been applied, but it is not compatible with the Android plugins.

我的 Gradle 文件如下所示:

apply plugin: 'com.android.application'
// Put Fabric plugin after Android plugin
apply plugin: 'io.fabric'

repositories 
    mavenLocal()
    flatDir 
        dirs 'libs'
    
    maven  url 'https://maven.fabric.io/public' 


android 
    compileSdkVersion 24
    buildToolsVersion '25.0.0'

    defaultConfig 
        applicationId "com.snapwebdevelopment.scanhappy"
        minSdkVersion 19
        targetSdkVersion 24
        versionCode 1
        versionName "1.0"
    
    buildTypes 
        release 
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        
    
    packagingOptions 
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/LICENSE-FIREBASE.txt'
        exclude 'META-INF/NOTICE'
    


dependencies 
    compile fileTree(include: ['*.jar'], dir: 'libs')
    // Displaying images
    compile 'com.android.support:design:24.2.1'
    compile 'com.android.support:appcompat-v7:24.2.1'
    compile 'com.github.bumptech.glide:glide:3.6.1'
    compile 'com.firebaseui:firebase-ui-auth:1.0.1'
    compile 'com.firebaseui:firebase-ui-storage:0.6.0'
    compile 'com.android.support:support-v4:24.2.1'
    compile 'com.google.firebase:firebase-storage:10.0.1'
    compile 'com.google.firebase:firebase-database:10.0.1'
    compile 'com.google.firebase:firebase-auth:10.0.1'
    compile 'me.dm7.barcodescanner:zxing:1.9'
    compile 'com.google.android.gms:play-services-vision:10.0.1'
    compile 'com.google.android.gms:play-services-location:10.0.1'
    compile 'me.anwarshahriar:calligrapher:1.0'
    testCompile 'junit:junit:4.12'
    compile 'com.stripe:stripe-android:2.0.2'
    compile 'com.android.volley:volley:1.0.0'
    compile 'com.braintreepayments:card-form:3.0.3'
    compile('com.crashlytics.sdk.android:crashlytics:2.6.6@aar') 
        transitive = true;
    

    compile files('libs/org-apache-commons-codec.jar')



apply plugin: 'com.google.gms.google-services'
apply plugin: 'announce'
apply plugin: 'java'

还有我的*** gradle 文件:

buildscript 
    repositories 
        jcenter()
        mavenLocal()
        maven  url 'https://maven.fabric.io/public' 
    
    dependencies 
        classpath 'com.android.tools.build:gradle:2.3.0'
        classpath 'com.google.gms:google-services:3.0.0'
        classpath 'io.fabric.tools:gradle:1.+'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    


allprojects 
    repositories 
        jcenter()
        mavenLocal()
        maven  url 'https://maven.fabric.io/public' 
    


task clean(type: Delete) 
    delete rootProject.buildDir

我还在 </application> 标记之前右下角的清单中添加了我的 API 密钥。我需要重新排序我的 Gradle 文件中的某些内容吗?

【问题讨论】:

【参考方案1】:

您不能在同一模块中同时应用 com.android.applicationjava 插件。

删除带有apply plugin: 'java'的行

【讨论】:

【参考方案2】:
         buildscript 
          repositories 
    maven  url 'https://maven.fabric.io/public' 


dependencies 
    classpath 'io.fabric.tools:gradle:1.+'

       

  apply plugin: 'com.android.application'
        apply plugin: 'io.fabric'

     repositories 
maven  url 'https://maven.fabric.io/public' 
      

//最后一个 应用插件:'com.google.gms.google-services'

【讨论】:

以上是关于已应用“java”插件,但与 Android 插件不兼容的主要内容,如果未能解决你的问题,请参考以下文章

更新到 android gradle 插件 3.5 后的 proguard 问题

android利用apkplug框架实现主应用与插件通讯(传递随意对象)实现UI替换

使用 Android Gradle 插件 0.7.3 在项目中添加预构建的 .so 文件

颤振医生无法识别Android Studio颤振和飞镖插件,但已安装插件

Phonegap 3.4- 已安装插件,但在我的 src 文件夹中看不到该特定插件的 Java 文件

Android开发--Gradle--tasks(三)