Skip to content
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.

Commit

Permalink
R3.16.0.1 Quick Fix
Browse files Browse the repository at this point in the history
The Crashlytics build ID is missing. This occurs when Crashlytics tooling is absent from your app's build configuration. Please review Crashlytics onboarding instructions and ensure you have a valid Crashlytics account.
  • Loading branch information
ryuunoakaihitomi committed Aug 22, 2022
1 parent d163004 commit 37a9db3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ android {
//targetSdkVersion compileSdkVersion
targetSdkVersion 33
// 版本号:发布日期
versionCode 20220822
versionCode 20220823
// 版本名说明: R3.x.y.z (R3:Refactoring 第三次重构,z:Quick Fix序号)
// 不要包含非ASCII可打印字符,会导致Github release文件名异常
versionName 'R3.16'
versionName 'R3.16.0.1'
resConfigs "en", "zh-rCN"

buildConfigField 'String', 'BUILD_TIME', '\"' + new Date() + '\"'
Expand Down Expand Up @@ -279,6 +279,10 @@ andResGuard {
"R.string.google_api_key",
"R.string.google_storage_bucket",
"R.string.com.crashlytics.android.build_id",
// 新增:以后在resources.arsc看到像API key的项目都要加进去
"R.string.com.google.firebase.crashlytics.mapping_file_id",
"R.string.google_crash_reporting_api_key",
"R.string.default_web_client_id",
// 使用资源入口名记录事件:getResourceEntryName()
'R.string.func_*',
]
Expand Down

0 comments on commit 37a9db3

Please sign in to comment.