Skip to content

Deya Eldeen

Portfolio and about me

  • 3D Design & Animation (Archive)
  • Apps & Games
  • About & Contact

Recent Posts

  • iOS Library : Flatswitch
  • quick tip : How to collapse all issues in the Xcode issue navigator
  • quick tip : Running Android Emulators from terminal

Categories

  • Uncategorized

Tags

  • Android (1)
  • iOS (1)
  • Xcode (2)

iOS Library : Flatswitch

https://github.com/deya-eldeen/FlatSwitch
pod 'FlatSwitch'

Posted on 05/08/202005/08/2020Tags iOS, XcodeLeave a comment on iOS Library : Flatswitch

quick tip : How to collapse all issues in the Xcode issue navigator

hold ⌘ to : close a type of warnings
hold shift and ⌘ to : close all types of warnings

** this is not documented elsewhere, and just discovered it by trying, and thought I will share it.

Posted on 05/08/202006/08/2020Tags XcodeLeave a comment on quick tip : How to collapse all issues in the Xcode issue navigator

quick tip : Running Android Emulators from terminal

to list the emulators you have

~/Library/Android/sdk/tools/emulator -list-avds

for example, I have this Nexus_5X_API_24

so the command to run that emulator is

cd ~/Library/Android/Sdk/tools && ./emulator -avd Nexus_5X_API_24
Posted on 05/08/202006/08/2020Tags AndroidLeave a comment on quick tip : Running Android Emulators from terminal