Android 模拟器 Mac OSX 位置
Android 模拟器将其所有数据及其本身保存在哪里?
在 SDK 文件夹中还是其他地方?
Where does Android emulator keep all its data and itself?
Inside the SDK folder or somewhere else?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我假设您正在谈论为模拟器创建的 AVD。默认情况下,AVD 管理器会在 ~/.android/avd/ 内创建 AVD 目录。
您可以查看此链接以获取更多信息
http://developer.android.com/tools/devices/managing-avds-cmdline.html#DefaultLocation
I assume you are talking about the AVD that you are creating for your simulator. By default, the AVD Manager creates the AVD directory inside ~/.android/avd/
You can check this link to get more info
http://developer.android.com/tools/devices/managing-avds-cmdline.html#DefaultLocation
如果您想查看模拟器上存储的文件,可以使用 设备文件Android Studio 附带的资源管理器。
您的应用应位于
/data/data/
中If you want to see the files stored on the emulator, you can use the Device File Explorer that comes with the Android Studio.
Your app should be in
/data/data/<you-app-id>