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
| Android Cheat Sheet: | |
| https://drive.google.com/file/d/0B5XIkMkayHgRMVljUVIyZzNmQUU/view | |
| Views:VirtualLayout | |
| <RelativeLayout | |
| xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent"> | |
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
| Choices for a font size: https://material.io/guidelines/style/typography.html#typography-styles | |
| https://plus.google.com/+AndroidDevelopers/posts/gQuBtnuk6iG | |
| Color palette: https://material.io/guidelines/style/color.html#color-color-palette | |
| Material Design News: https://www.uplabs.com/material | |
| Material Design: https://material.io/guidelines/material-design/introduction.html?utm_source=udacity&utm_medium=course&utm_campaign=android_basics | |
| ConstraintLayout Article: https://medium.com/exploring-android/exploring-the-new-android-constraintlayout-eed37fe8d8f1 |
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) in AndroidStudio's settings > compile enable checkbox named Compile independent modules in parallel. | |
| 2) Under Help> Edit Custom VM Options: | |
| -Xms1024m | |
| -Xmx4096m # <------ increase this to most of your RAM | |
| -XX:MaxPermSize=1024m | |
| -XX:ReservedCodeCacheSize=440m | |
| -XX:+UseCompressedOops | |
| -XX:+HeapDumpOnOutOfMemoryError | |
| -Dfile.encoding=UTF-8 |
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
| Reinstall HAXM with more RAM: | |
| sudo $ANDROID_SDK/sdk/extras/intel/Hardware_Accelerated_Execution_Manager/silent_install.sh -u | |
| sudo $ANDROID_SDK/sdk/extras/intel/Hardware_Accelerated_Execution_Manager/silent_install.sh -m 1024 | |
| // Users/******username*******/Library/Android/sdk/extras/intel/Hardware_Accelerated_Execution_Manager |
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
| rm -Rf /Applications/Android\ Studio.app | |
| rm -Rf ~/Library/Preferences/AndroidStudio* | |
| rm ~/Library/Preferences/com.google.android.studio.plist | |
| rm -Rf ~/Library/Application\ Support/AndroidStudio* | |
| rm -Rf ~/Library/Logs/AndroidStudio* | |
| rm -Rf ~/Library/Caches/AndroidStudio* | |
| // in haxm folder /Library/Extensions/intelhaxm.kext/Contents/Resources | |
| sudo ./uninstall.sh |
NewerOlder