gpt4 book ai didi

android - 无法访问 com.google.android.gms.internal.zzbfm 的 zzbfm 类文件未找到

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:43:36 26 4
gpt4 key购买 nike

我正在将我的 Android 应用程序项目从 GCM 迁移到 FCM。为此,我在 Android Studio 中使用了 Firebase 助手工具,并遵循了 Google 开发人员指南中的说明。一切顺利,并根据助手工具更改了我的 FCM 应用程序代码。现在,是时候运行和测试应用程序了。我得到了以下奇怪的错误:

cannot access zzbfm class file for com.google.android.gms.internal.zzbfm not found

我在使用谷歌地图并尝试设置标记位置时遇到此错误。这是我的应用级别 gradle:

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' }
mavenCentral()
maven { url 'https://dl.bintray.com/kennyc1012/maven' }
}


android {
signingConfigs {
msapp {
}
}

compileSdkVersion 26
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "com.package"
minSdkVersion 16
targetSdkVersion 28
multiDexEnabled true
useLibrary 'org.apache.http.legacy'
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
renderscriptTargetApi 18
renderscriptSupportModeEnabled true
}
dexOptions {
javaMaxHeapSize "4g"
}
buildTypes {

release {
lintOptions {
checkReleaseBuilds false
abortOnError false
}
minifyEnabled false
shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
//Default
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.google.firebase:firebase-messaging:11.8.0'
testImplementation 'junit:junit:4.12'

//modules
implementation 'com.facebook.android:facebook-android-sdk:4.+'
//jar files
implementation files('libs/classes.jar')
implementation files('libs/YouTubeAndroidPlayerApi.jar')

//google repos
implementation 'com.android.support:appcompat-v7:26.0.0'
implementation 'com.android.support:support-v4:26.0.0'
implementation 'com.android.support:recyclerview-v7:26.0.0'
implementation 'com.google.android.gms:play-services:11.8.0'
implementation 'com.google.android.gms:play-services-analytics:11.8.0'
implementation 'com.google.android.gms:play-services-maps:11.8.0'
implementation 'com.android.support:design:26.0.0'


//square lib
implementation 'com.squareup.retrofit2:converter-gson:2.0.0'
//compile 'com.squareup.leakcanary:leakcanary-android:1.5'

//text manupulation
implementation 'commons-lang:commons-lang:2.6'

//permission library.
implementation 'com.karumi:dexter:5.0.0'

implementation 'com.google.firebase:firebase-core:16.0.3'
}

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

最佳答案

为了解决您的问题,首先我会要求您始终使用指定的和更新的版本。 1. 将 + 替换为特定版本:classpath 'io.fabric.tools:gradle:1.25.4' 2. 暂时尝试使用相同版本运行apk,

  compileSdkVersion 27
buildToolsVersion '27.0.3'

targetSdkVersion 27
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:support-v4:27.1.1'
implementation 'com.android.support:recyclerview-v7:27.1.1'

3。使用更新版本的 google play 服务

 implementation 'com.google.android.gms:play-services:16.0.3'
implementation 'com.google.android.gms:play-services-analytics:16.0.3'
implementation 'com.google.android.gms:play-services-maps:15.0.1'

这将解决您的问题。

关于android - 无法访问 com.google.android.gms.internal.zzbfm 的 zzbfm 类文件未找到,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52251502/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com