运行 模拟器时 SQLiteConnection 数据库泄漏
SQLiteConnection databases leak when running emulator
我是 运行 模拟器,收到以下关于内存泄漏的错误。有趣的是,泄漏的数据库似乎是 Google gms 而不是用户数据库。有谁知道如何修理它?谢谢!
09-27 15:55:07.252 2058-2068/com.google.android.gms W/SQLiteConnectionPool: A SQLiteConnection object for database '/data/user/0/com.google.android.gms/databases/metrics.db' was leaked! Please fix your application to end transactions in progress properly and to close the database when it is no longer needed.
09-27 15:55:07.255 2058-2068/com.google.android.gms W/SQLiteConnectionPool: A SQLiteConnection object for database '/data/user/0/com.google.android.gms/databases/help_responses.db' was leaked! Please fix your application to end transactions in progress properly and to close the database when it is no longer needed.
09-27 15:55:07.259 2058-2068/com.google.android.gms W/SQLiteConnectionPool: A SQLiteConnection object for database '/data/user/0/com.google.android.gms/databases/auto_complete_suggestions.db' was leaked! Please fix your application to end transactions in progress properly and to close the database when it is no longer needed.
打开设置 - 应用程序 - Google 播放服务 - 管理 SPACE - 清除所有数据
这可能是因为您没有使用 GoogleApiClient
的 disconnect()
方法
有关更多信息,请参阅 here。
我是 运行 模拟器,收到以下关于内存泄漏的错误。有趣的是,泄漏的数据库似乎是 Google gms 而不是用户数据库。有谁知道如何修理它?谢谢!
09-27 15:55:07.252 2058-2068/com.google.android.gms W/SQLiteConnectionPool: A SQLiteConnection object for database '/data/user/0/com.google.android.gms/databases/metrics.db' was leaked! Please fix your application to end transactions in progress properly and to close the database when it is no longer needed.
09-27 15:55:07.255 2058-2068/com.google.android.gms W/SQLiteConnectionPool: A SQLiteConnection object for database '/data/user/0/com.google.android.gms/databases/help_responses.db' was leaked! Please fix your application to end transactions in progress properly and to close the database when it is no longer needed.
09-27 15:55:07.259 2058-2068/com.google.android.gms W/SQLiteConnectionPool: A SQLiteConnection object for database '/data/user/0/com.google.android.gms/databases/auto_complete_suggestions.db' was leaked! Please fix your application to end transactions in progress properly and to close the database when it is no longer needed.
打开设置 - 应用程序 - Google 播放服务 - 管理 SPACE - 清除所有数据
这可能是因为您没有使用 GoogleApiClient
disconnect()
方法
有关更多信息,请参阅 here。