This file contains 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
# custom Android Studio VM options, see https://developer.android.com/studio/intro/studio-config.html | |
# Initial stack memory size, affects idea start speed | |
-Xms4G | |
# Maximum heap memory size that Android Studio can use, reduces the garbage collection frequency. | |
-Xmx8G | |
# Initial Permanent generation | |
-XX:PermSize=2048M |
This file contains 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
- adb shell dumpsys activity | grep -i run | |
- adb shell dumpsys activity activities | grep -i run |
This file contains 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
// put in project/build.gradle | |
subprojects { | |
task allDeps(type: DependencyReportTask) {} | |
} |