如何解决任务“:app:uploadCrashlyticsMappingFileRelease”执行失败主机名不能为空
尝试创建发布签名的 apk 时,构建在任务中失败app:uploadCrashlyticsMappingFileRelease'.Host name must not be empty.
我已启用混淆。
buildTypes {
release {
minifyEnabled true // Enables code shrinking,obfuscation,and optimization
shrinkResources true // Enables resource shrinking,which is performed by the Android Gradle plugin
firebaseCrashlytics {
mappingFileUploadEnabled true
}
proguardFiles getDefaultProguardFile('proguard-android.txt'),'proguard-rules.pro'
}
}
同时,使用
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
// Apply the Crashlytics Gradle plugin
apply plugin: 'com.google.firebase.crashlytics'
implementation 'com.google.firebase:firebase-auth:20.0.1'
implementation 'com.google.firebase:firebase-firestore:22.0.1'
implementation 'com.google.firebase:firebase-core:18.0.0'
//the Firebase SDK for Google Analytics.
implementation 'com.google.firebase:firebase-analytics:18.0.0'
//the Firebase Crashlytics SDK.
implementation 'com.google.firebase:firebase-crashlytics:17.3.0'
和,
classpath 'com.google.gms:google-services:4.3.4' // Google Services plugin
// Add the Crashlytics Gradle plugin.
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.4.1'
有人遇到同样的问题吗? 我尝试清除 gradle 缓存并删除 crashlytics 依赖项,因为我读到它将由 Android Studio 自动处理,但当时没有记录崩溃。
我使用的是 Android Studio 4.1.1(从之前的版本升级)
Build #AI-201.8743.12.41.6953283,构建于 2020 年 11 月 5 日运行时 版本:1.8.0_242-release-1644-b3-6222593 amd64 虚拟机:OpenJDK 64 位 JetBrains s.r.o Linux 5.4.0-58-generic GC 的服务器 VM:ParNew, ConcurrentMarkSweep 内存:1246M 内核:4 注册表: ide.new.welcome.screen.force=true,external.system.auto.import.disabled=true 非捆绑插件: com.android.tool.sizereduction.plugin 当前桌面:ubuntu:GNOME。
解决方法
如果您使用的是 Android Studio 4.0 或更高版本,肯定会出现此问题。您需要从 Gradle 文件中删除这些 Crashlytics 行,因为它会由工作室自动管理。
build.grade(Module:app)
apply plugin: 'com.google.firebase.crashlytics
implementation 'com.google.firebase:firebase-crashlytics:X.X.X'
build.grade(Project:appname)
classpath 'com.google.firebase:firebase-crashlytics-gradle:X.X.X'
检查您的 Gradle 脚本根目录。如果有这个文件:gradle.properties(全局属性),检查值是否正确。
删除了所有这些属性,我的问题解决了
systemProp.http.proxyHost=
systemProp.http.proxyPort=80
systemProp.https.proxyHost=
systemProp.https.proxyPort=80
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。