This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo nano .bash_profile | |
=> Add the following lines to .bash_profile after the “User specific environment and startup programs” comment: | |
export ANDROID_HOME=$HOME/Android/Sdk | |
export PATH=$PATH:$ANDROID_HOME/emulator | |
export PATH=$PATH:$ANDROID_HOME/tools | |
export PATH=$PATH:$ANDROID_HOME/tools/bin | |
export PATH=$PATH:$ANDROID_HOME/platform-tools |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://docs.expo.dev/guides/local-app-production/ | |
cd android && ./gradlew app:bundleRelease | |
`Cutting the long story short the command gradlew bundleRelease is used to generate an .aab file where as the command gradlew assembleRelease is used to generate .apk file so use the command accordingly` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// monogen - generator for vscode monoaki pro | |
https://monogen.vercel.app/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 1. see all docker images | |
docker images | |
# build image from docker file if the docker file is in CWD. | |
docker build -t myimage . | |
# build image from docker file with tag | |
docker build -t myimage:V1 . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Mixin to avoid writing terrible media queries */ | |
@mixin minQuery($propertyName, $defaultValue, $mediaQueries: ()) { | |
#{$propertyName}: #{$defaultValue}; | |
@each $breakpoint, $value in $mediaQueries { | |
@media (min-width: #{$breakpoint}) { | |
#{$propertyName}: #{$value}; | |
} | |
} |