343

使用带有 gradle 插件版本的 Android Studio 3.3 Canary 11 3.3.0-alpha11。尝试同步 gradle 时会引发以下错误

WARNING: API 'variant.getExternalNativeBuildTasks()' is obsolete and has been 
replaced with 'variant.getExternalNativeBuildProviders()'.
It will be removed at the end of 2019.
For more information, see https://d.android.com/r/tools/task-configuration- 
avoidance
Affected Modules: app

单击错误会导致我进入 gradle 文件中的这一行

applicationVariants.all { variant ->
            variant.outputs.all {
                outputFileName = "${variant.name}-${variant.versionName}.apk"
            }
        }

我到底需要在这里改变什么?

项目build.gradle

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
        mavenCentral() // jcenter() works as well because it pulls from Maven Central
        maven { url "https://maven.google.com" }
        google()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:3.3.0-alpha11'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
        classpath "io.realm:realm-gradle-plugin:4.1.1"
        classpath 'com.google.gms:google-services:3.2.1'
        classpath 'com.google.firebase:firebase-plugins:1.1.5'
    }
}

allprojects {
    repositories {
        jcenter()
        maven { url "https://maven.google.com" }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

// Define versions in a single place
ext {
    // Sdk and tools
    minSdkVersion = 21
    targetSdkVersion = 27
    compileSdkVersion = 27
    buildToolsVersion = '27.0.3'

    // App dependencies
    supportLibraryVersion = '27.1.1'
    appCompactLibraryVersion = '27.1.1'
    playServicesVersion = '15.0.1'
    firebaseVersionCore = '16.0.1'
    firebaseVersionPerf = '16.0.0'
    firebaseVersionMessaging = '17.1.0'

    //lottie
    lottieVersion = '2.5.0'
}

应用程序构建.gradle

buildscript {
    repositories {
        maven { url 'https://maven.fabric.io/public' }
    }

    dependencies {
        classpath 'io.fabric.tools:gradle:1.25.4'
    }
    buildscript {
        repositories {
            maven { url "https://maven.google.com" }
            maven { url 'https://maven.fabric.io/public' }
            mavenCentral()

        }

        dependencies {
            // These docs use an open ended version so that our plugin
            // can be updated quickly in response to Android tooling updates

            // We recommend changing it to the latest version from our changelog:
            // https://docs.fabric.io/android/changelog.html#fabric-gradle-plugin
            classpath 'io.fabric.tools:gradle:'
        }
    }
}
apply plugin: 'com.android.application'
apply plugin: 'com.google.firebase.firebase-perf'
repositories {
    maven { url 'https://maven.fabric.io/public' }
}

apply plugin: 'io.fabric'
apply plugin: 'realm-android'

android {

    realm {
        syncEnabled = false
    }

    dexOptions {
        javaMaxHeapSize "4g"
    }

    compileSdkVersion rootProject.ext.compileSdkVersion

    defaultConfig {
        applicationId "example.com"
        minSdkVersion rootProject.ext.minSdkVersion
        multiDexEnabled true
        versionCode mVersionCode
        versionName mVersionName
        vectorDrawables.useSupportLibrary = true

    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    buildTypes {

        applicationVariants.all { variant ->
            variant.outputs.all {
                outputFileName = "${variant.name}-${variant.versionName}.apk"
            }
        }

        release {
            shrinkResources true
            minifyEnabled true
            useProguard true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'

            lintOptions {
                disable 'MissingTranslation'
            }

            applicationVariants.all { variant ->
                variant.outputs.all {
                    outputFileName = "${variant.name}-${variant.versionName}.apk"
                }
            }

        }
        debug {
            shrinkResources true
            minifyEnabled true
            useProguard true
            debuggable true
            versionNameSuffix '-DEBUG'
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'debug-proguard-rules.pro'

            ext.enableCrashlytics = false
            crunchPngs false

        }
    }

    flavorDimensions "default"

    lintOptions {

        checkReleaseBuilds false

    }

    packagingOptions {
        exclude 'META-INF/DEPENDENCIES.txt'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/NOTICE.txt'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/notice.txt'
        exclude 'META-INF/license.txt'
        exclude 'META-INF/dependencies.txt'
        exclude 'META-INF/LGPL2.1'
    }
    buildToolsVersion '28.0.2'
}

configurations {
    implementation.exclude group: "org.apache.httpcomponents", module: "httpclient"
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')

    implementation "com.android.support:appcompat-v7:$rootProject.appCompactLibraryVersion"
    implementation "com.android.support:support-compat:$rootProject.supportLibraryVersion"
    implementation "com.android.support:mediarouter-v7:$rootProject.supportLibraryVersion"
    implementation "com.android.support:cardview-v7:$rootProject.supportLibraryVersion"
    implementation "com.android.support:design:$rootProject.supportLibraryVersion"


    api 'com.squareup.retrofit2:retrofit:2.4.0'
    api 'com.squareup.okhttp3:okhttp:3.11.0'
    api 'com.squareup.okhttp3:logging-interceptor:3.10.0'
    implementation 'com.google.code.gson:gson:2.8.2'
    implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
    implementation 'com.squareup.picasso:picasso:2.5.2'
    implementation 'com.squareup.retrofit2:adapter-rxjava:2.3.0'
    implementation 'com.android.support:multidex:1.0.3'
    implementation 'com.daimajia.easing:library:2.0@aar'
    implementation 'com.daimajia.androidanimations:library:2.3@aar'

    implementation 'com.akexorcist:googledirectionlibrary:1.0.5'
    implementation 'io.reactivex:rxandroid:1.2.1'
    implementation 'io.reactivex:rxjava:1.3.0'
    // Wifi hotspot library
    implementation 'cc.mvdan.accesspoint:library:0.2.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'org.jsoup:jsoup:1.10.3'
    api "com.airbnb.android:lottie:$rootProject.lottieVersion"
    implementation 'com.android.support:support-v4:27.1.1'
    implementation 'com.android.support:recyclerview-v7:27.1.1'
    testImplementation 'junit:junit:4.12'
    implementation 'com.jakewharton:butterknife:8.8.1'

    debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.5.4'
    releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.4'

    implementation 'com.googlecode.libphonenumber:libphonenumber:8.2.0'

    implementation "com.google.android.gms:play-services-base:$rootProject.playServicesVersion"
    implementation "com.google.android.gms:play-services-cast-framework:$rootProject.playServicesVersion"
    implementation "com.google.android.gms:play-services-auth:$rootProject.playServicesVersion"
    implementation "com.google.android.gms:play-services-identity:$rootProject.playServicesVersion"
    implementation "com.google.android.gms:play-services-awareness:$rootProject.playServicesVersion"
    implementation "com.google.android.gms:play-services-cast:$rootProject.playServicesVersion"
    implementation "com.google.android.gms:play-services-drive:$rootProject.playServicesVersion"
    implementation "com.google.android.gms:play-services-location:$rootProject.playServicesVersion"
    implementation "com.google.android.gms:play-services-maps:$rootProject.playServicesVersion"

    implementation "com.google.firebase:firebase-core:$rootProject.firebaseVersionCore"
    implementation "com.google.firebase:firebase-perf:$rootProject.firebaseVersionPerf"
    implementation "com.google.firebase:firebase-messaging:$rootProject.firebaseVersionMessaging"
    implementation "com.google.firebase:firebase-analytics:$rootProject.firebaseVersionCore"


    api('com.crashlytics.sdk.android:crashlytics:2.8.0@aar') {
        transitive = true
    }
    api('com.crashlytics.sdk.android:answers:1.4.1@aar') {
        transitive = true
    }
    annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
    api project(path: ':libraryBTHelper')
    api project(':bkk_rush')

    debugApi 'com.amitshekhar.android:debug-db:1.0.3'
    api "org.jdeferred:jdeferred-android-aar:1.2.6"
    implementation 'com.android.support:gridlayout-v7:27.1.1'
}

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

我在 app/build.gradle 文件中跳过了一些常量和其他敏感信息。

4

21 回答 21

292

该问题已在其最新版本中修复'io.fabric.tools:gradle:1.30.0'

请使用1.30.0更新您的两个 gradle fabric 工具

buildscript {
  // ... repositories, etc. ...

   dependencies {
       // ...other dependencies ...
       classpath 'io.fabric.tools:gradle:1.30.0'
   }
}

更多详情https://github.com/firebase/firebase-android-sdk/issues/198#issuecomment-473435453

于 2019-03-16T05:41:48.120 回答
248

编辑

此问题已在Fabric 1.28.0中修复。在您build.gradle的项目级别中,添加以下行:

classpath 'io.fabric.tools:gradle:1.28.1'

上一个答案

它发生在我将 Android Studio 更新到 3.3.0 之后。apply plugin: 'io.fabric'是原因。我已向 Firebase 团队发送了一份关于此问题的错误报告。

您有 3 个选项:

build.gradle您的应用程序模块中:

apply plugin: 'com.android.application'
// apply plugin: 'io.fabric' <== this plugin causes the error

但是,即使出现此错误,您仍然可以构建和运行您的项目。忽略它。

于 2019-01-14T20:37:32.360 回答
60

在应用程序build.gradle中,降级到这个稳定版本的 gradle:

classpath 'com.android.tools.build:gradle:3.2.1'

它发生在我将 Android Studio 更新到 3.3 之后,这是一个临时解决方案,直到他们修复它。


编辑: 你不需要降级你的 Android Studio

于 2019-01-14T22:20:19.560 回答
16

更新 从今天开始,您可以使用它classpath 'io.fabric.tools:gradle:1.28.0'来解决此问题!

如果在应用程序 gradle 文件上注释掉Crashlytics的插件暂时对您有用io.fabric

//apply plugin: 'io.fabric'

然后升级您对项目 gradle 文件的结构 gradle 依赖项将永久解决该问题:

classpath 'io.fabric.tools:gradle:1.27.0'

注意:这不会删除警告,但可以让您将 Crashlytics 与 AS3.3+ 一起使用

于 2019-01-17T16:56:33.377 回答
13

不确定实际问题是什么,但从项目解决的问题中注释掉与 crashlytics 相关的依赖项。

于 2018-10-13T19:13:10.137 回答
11

它已被确认为 Crashlytics 的错误,他们正在努力解决。

https://issuetracker.google.com/issues/116408637

引自谷歌受让人:

je...@google.com #23 2019 年 1 月 23 日上午 1:40 大家好

感谢您的耐心等待。

看起来所有情况下的错误都来自崩溃分析,我已经向他们提交了错误。

我会及时通知您最新状态。

对我来说,我的调试应用程序在我的设备上运行良好,只需运行并忽略警告而不评论 Crashlytics 或 Fabric。我还没有尝试生产。

更新:

Google 问题跟踪器已将此问题标记为无法修复(不可行),因为所有问题都来自 Crashlytics,并让 Crashlytics 团队完成修复(尽管他们是同一个 Google 员工......)。

他们建议点击此链接获取 Crashlytics 更新:

https://github.com/firebase/firebase-android-sdk/issues/198

注意:我仍在使用带有 io.fabric.tools:gradle:1.26.0 的 Android Studio 3.3,而没有评论任何 Craslytics,它在我的调试应用程序上运行良好。

更新:

我现在可以确认它在我的生产/发布版本应用程序上运行良好。我怎么知道它有效?因为它给我发回了崩溃报告-_-'

无论如何,只需忽略警告,他们最终应该修复它。

哇,刚刚读到它已经用织物 1.28.0 修复了 :)

于 2019-01-23T00:35:36.147 回答
8

2019 年 1 月 24 日最新消息

在此处输入图像描述

信息在这里https://issuetracker.google.com/issues/116408637

我们需要等到 Crashlytics 提出解决方案,这里是 GitHub 问题打开

https://github.com/firebase/firebase-android-sdk/issues/198

我现在使用不评论io.fabric插件的唯一方法是降级我的 gradle 并升级我的织物类路径(这适用于我的生产应用程序)

 dependencies {
        classpath 'com.android.tools.build:gradle:3.2.1'
        classpath 'com.google.gms:google-services:4.2.0'
        classpath 'io.fabric.tools:gradle:1.27.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
于 2019-01-23T18:43:11.997 回答
4

如前所述,问题出在 Fabric/Crashlytics 上。

apply plugin: 'io.fabric'

这是 Crashlytics/Firebase 方面的错误,请检查以下链接并查看错误状态:https ://github.com/firebase/firebase-android-sdk/issues/198

于 2019-01-25T21:08:49.887 回答
3

问题跟踪器可能指的是“惰性任务配置” -

这至少是避免任务配置所暗示的。

但是一个可能会阻止访问这个过时的方法BaseVariantImpl,什么时候variant.outputs.all不会访问该方法(内部) - 或者当检查可以阻止访问时;或通过名称访问变体时;或以某种方式禁用变体的外部本机构建任务。另请参阅单变体项目同步选项,这似乎是相关的。

或等待构建工具 3.3.0-alpha123.3.0-beta1...这甚至不是一个release candidate,因此投入大量时间可能毫无意义——除非使用它来提交另一个错误报告。

新的快速反馈快速反馈按钮看起来仍然是最有前途的。

于 2018-09-24T21:28:44.573 回答
3

对我来说,我遵循了以下步骤: 1. 升级项目级别 build.gradle 的 Gradle 依赖项。

        classpath 'io.fabric.tools:gradle:1.28.0'
  1. 在应用级别 build.gradle 中添加此插件依赖项 apply plugin: 'com.android.application' 。

        apply plugin: 'io.fabric'
    
  2. 将项目与 gradle 文件同步。

于 2019-03-22T14:48:11.440 回答
2

这是因为您的 Android Studio 从 Android Studio 3.2.0 更新到了 Android Studio 3.3.0。更新 IO.Fabric 的 Gradle 依赖项(项目)。像:

classpath 'io.fabric.tools:gradle:1.27.1'

并将您的 Kotlin 版本更新为

classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.20"

这将解决这个问题。谢谢

于 2019-02-07T05:29:58.257 回答
1

这已在最新版本的 Fabric gradle 插件 1.28.0 中得到修复,该插件已于今天上线。在你的顶级 build.gradle 中有这个:

buildscript {
// ... repositories, etc. ...

dependencies {
    // ...other dependencies ...
    **classpath 'io.fabric.tools:gradle:1.28.0'**
}
于 2019-01-16T10:44:46.120 回答
1

构建日志打印如何调试它,特别是您需要运行构建-Pandroid.debug.obsoleteApi=true,这将打印调用已弃用 API 的堆栈跟踪,您将能够确定哪个插件/代码调用它。

如果它最终成为您的代码- 使用新的 Provider API(阅读 Lazy Task Configuration doc

如果它来自其他插件- 向他们报告堆栈跟踪和警告消息,并可能提交补丁。在这种情况下,它与io.fabric问题有关。

于 2019-01-17T06:20:47.453 回答
0

当我打开项目时,我按下了Run migrations出现在右下角的按钮Android Studio。执行了迁移并且在没有注释掉Crashlytics依赖关系的情况下解决了问题。

在此处输入图像描述

于 2019-01-14T22:45:41.940 回答
0

将模块文件中的源代码兼容性更改build.gradle为 Java 8 修复了该问题

compileOptions {
    sourceCompatibility 1.8
    targetCompatibility 1.8
}

添加这些行后,请务必重建项目

于 2019-01-15T10:52:35.580 回答
0

这将修复错误:在任务栏上单击 Tools->Kotlin->Configure Kotlin in Project

于 2019-01-16T13:31:46.620 回答
0

就我而言,我需要使用io.fabric插件,解决方案是更新到最新的织物工具 gradle 版本:

classpath 'com.android.tools.build:gradle:3.3.0'
classpath 'io.fabric.tools:gradle:1.27.0'
于 2019-01-17T12:13:12.560 回答
0

对于那些需要保持 Fabric 插件应用的人,临时的解决方案是在项目级别回到之前版本的 gradle。

将类路径版本更改为com.android.tools.build:gradle:3.2.1.

于 2019-01-18T12:40:14.947 回答
0

这是最新gradle(在我的情况下3.3.2)版本和Fabric.io插件的问题。现在由新版本解决了用户应该在他们的顶层有这个build.gradle

buildscript {
   // ... repositories, etc. ...

    dependencies {
        // ...other dependencies ...
        classpath 'io.fabric.tools:gradle:1.28.0'
    }
}
于 2019-03-15T19:19:46.903 回答
0

修复是将根构建 gradle 文件更新为最新的。这个答案现在成立。在未来,新的变化将由 gradle 和 android SDK 实现。有时答案会在适当的时候发生变化。

repositories {
    maven { url "https://jitpack.io" }
    maven {
        url 'https://maven.fabric.io/public'
    }
    google()
    jcenter()

}
dependencies {

    classpath 'com.android.tools.build:gradle:3.5.0'
    classpath 'com.google.gms:google-services:4.3.0'
    classpath 'io.fabric.tools:gradle:1.30.0'
}
于 2019-08-22T18:32:33.900 回答
-7

首先,这不是错误

这是警告

并且它在更新 gradle 到 3.3.0 时出现 经常发生因为 io.fabric 所以等到更新结构当前版本仍然显示警告是'io.fabric.tools:gradle:1.27.1'

于 2019-01-31T23:13:09.670 回答