Open okwasniewski opened 1 year ago
I would like to share some ideas too:
Hey @dutradotdev,
Thanks for your input! I'm not sure if it is possible to show logs for iOS app without opening Xcode. Could you provide some examples of that? I think that adding option to launch logcat is great 👍🏻
Also, it would be very useful if you could provide an example of filtering logs (for both platforms).
could you add supporting scrcpy feature ?
could you add supporting scrcpy feature ?
@phucynwa Thanks for the suggestion but I want to keep MiniSim focused only on emulators. Therefore I won't add it, at least for now.
@okwasniewski I don't know how to do this for iOS, for android you need to exec adb logcat and filter by tag (probably using regexes) Android: https://developer.android.com/studio/command-line/logcat iOS: https://stackoverflow.com/questions/10165641/how-can-i-get-the-console-logs-from-the-ios-simulator
you can use this to check iOS device logs
brew install libimobiledevice
idevice_id --list // list available device UDIDs
idevicesyslog -u <device udid>
It would be nice if was possible open the command below in terminal
adb logcat -v color
In this menu:
It could be an option named like Open logcat
Hey @mrcsxsiq, thanks for proposing a new feature!
Starting with version 0.6.0 you can create your own custom commands! You can achieve this by creating a new command and pasting this apple script:
osascript -e 'tell app "Terminal"
do script "adb logcat -v color"
end tell'
feature request: Wipe data for each android emulator
feature request: Wipe data for each android emulator
Hey @ameer-taghavi,
You can achieve this by creating a custom command by going to Preferences > Custom Commands.
Here is the custom command you can paste: $android_home_path/emulator/emulator @$device_name -wipe-data
Is a CLI available? I would like to use it with some scripts I've built
In this issue I want to track future feature ideas and gather some feedback around what you want to see next!