我不是android studio的专家,但直到现在我才能做我需要的东西。 现在在某些情况下我的应用程序崩溃了几次,我不知道为什么,我找不到任何日志。 我没有使用AS作为wile,在更新到2.3.1之后,没有标签(在AS底部)和日志(尤其是错误)
我能找到的唯一的东西是在Debug选项卡中的以下几行:
04/26 12:58:02: Launching app
$ adb install-multiple -r -p APPNAME PATH\app\build\intermediates\split-apk\debug\slices\slice_7.apk
Split APKs installed
$ adb shell am start -n "APPNAME.MainActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER -D
Connecting to APPNAME
Connected to the target VM, address: 'localhost:8607', transport: 'socket'
Disconnected from the target VM, address: 'localhost:8607', transport: 'socket'
应用崩溃后我得到的最后一行。 在Android Monitor选项卡中有几行如下:
04-26 15:05:42.244 3164-3175/? 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.
但我不在我的应用程序中使用SQLite。任何人都可以帮助我吗?