Android:Database Inspector: Error reading Sqlite database: Database ‘LiveSqliteDatabaseId

Database Inspector: Error reading Sqlite database: Database 'LiveSqliteDatabaseId

报错描述:

启动应用程序时,我突然在右下角事件日志中收到此消息

Database Inspector: Error reading Sqlite database: Database 'LiveSqliteDatabaseId(path=/data/data/app-dir/databases/google_app_measurement_local.db, name=google_app_measurement_local.db, connectionId=1) not found

解决办法:

发生这种情况的原因有很多,例如:
1.Android Studio IDE(数据库检查器)有错误
2.构建缓存已损坏
3.您使用的 google 库可能存在版本冲突

Android Studio IDE(数据库检查器)有错误

在这种情况下,您实际上无法做太多正确的修复,但作为解决方法,您可以禁用数据库检查器。正如您所提到的,您正在使用 Android studio 4.2,该版本可以让用户禁用数据库检查器。
Android Studio 4.2.0+

Database Inspector -> (device list dropdown in top-left corner) -> Stop Inspector

Android:Database Inspector: Error reading Sqlite database: Database ‘LiveSqliteDatabaseId_第1张图片

4.2.0以下

File -> Invalidate Caches/Restart -> Just Restart (no need to invalidate caches)

构建缓存已损坏

只需使缓存失效并重新启动项目即可

File -> Invalidate Caches/Restart -> Invalidate and Restart

如果其构建文件夹已损坏,这应该可以解决问题。

Firebase 库存在冲突

首先,确保您拥有所有这些的最新版本。但我必须建议使用Firebase Android Bom来对 Firebase 库进行版本控制。它会自动控制应为您包含在应用程序 Gralde 文件中的每个库选择哪些版本。参见示例:

dependencies {
  // Import the BoM for the Firebase platform
  implementation platform('com.google.firebase:firebase-bom:28.3.0')

  // Declare the dependencies for the desired Firebase products without specifying versions
  // For example, declare the dependencies for Firebase Authentication and Cloud Firestore
  implementation 'com.google.firebase:firebase-auth'
  implementation 'com.google.firebase:firebase-firestore'
}

你可能感兴趣的:(数据库,android,sqlite)