what is the path of emulators log files in android studio
The path of emulator's log files in Android Studio is:
<USER_HOME>/.android/avd/<AVD_NAME>/
where <USER_HOME> is the home directory of the current user, <AVD_NAME> is the name of the AVD (Android Virtual Device) you are using.
You can find the log files in the following subdirectories:
logs/: contains the emulator's main log files, including logcat and system logs.cache/: contains temporary files used by the emulator.sdcard/: contains the contents of the virtual SD card used by the emulator.
You can access these log files from Android Studio by opening the Android Device Monitor and selecting the emulator device from the Devices tab. Then, click on the Logcat tab to view the emulator's log messages
原文地址: https://www.cveoy.top/t/topic/du5c 著作权归作者所有。请勿转载和采集!