提问人:DJ-DOO 提问时间:10/19/2023 最后编辑:Frank van PuffelenDJ-DOO 更新时间:10/19/2023 访问量:65
插件 ID:'com.google.firebase.firebase-perf 在以下任何来源中均未找到
Plugin id: 'com.google.firebase.firebase-perf was not found in any of the following sources
问:
我正在尝试通过 firebase 实现网络日志记录。
我已经按照此处的步骤操作,但是在同步gradle时出现以下错误:
* Exception is:
org.gradle.api.plugins.UnknownPluginException: Plugin [id: 'com.google.firebase.firebase-perf', version: '1.4.2', apply: false] was not found in any of the following sources:
这是我的顶级/项目文件的一部分:gradle.build
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
classpath 'com.google.gms:google-services:4.3.15'
classpath 'com.google.android.gms:oss-licenses-plugin:0.10.6'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20"
classpath "com.squareup:javapoet:1.13.0"
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.6'
classpath 'org.jacoco:org.jacoco.core:0.8.8'
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.5.0.2730"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
id 'org.jetbrains.kotlin.android' version '1.7.20' apply false
id 'com.google.firebase.firebase-perf' version '1.4.2' apply false <-- this is the line causing the issue
}
这是我的模块应用程序的一部分:gradle.build
apply plugin: 'com.android.application'
apply plugin: 'com.google.firebase.firebase-perf'
apply plugin: 'com.google.android.gms.oss-licenses-plugin'
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.google.firebase.crashlytics'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-parcelize'
apply plugin: 'kotlin-kapt'
...........................
...........................
...........................
//Analytics
implementation platform('com.google.firebase:firebase-bom:32.4.0')
implementation 'com.google.firebase:firebase-crashlytics-ktx'
implementation 'com.google.firebase:firebase-analytics-ktx'
implementation 'com.google.firebase:firebase-perf-ktx'
步骤很简单,我不知道我哪里出了问题,也不知道可能是什么。这里也问了类似的问题,但是那里没有有用的信息。
如果有人经历过类似的事情,我将不胜感激,如果你没有,也许你可以提供一些启示。
谢谢
答:
0赞
DJ-DOO
10/19/2023
#1
以防万一有人遇到这个问题。我弄清楚了问题所在。
一个非常简单的修复和一个非常愚蠢的错误。当时我正在运行 Charles Proxy,而 charles 干扰了网络,这影响了 gradle。
评论