├── EatMemory.apk ├── README.md └── .gitignore /EatMemory.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-pu/AndroidEatMemory/HEAD/EatMemory.apk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # EatMemory 2 | EatMemory是专为开发者写的一个测试小工具。它能耗尽Android系统内存,使lowMemory场景轻松实现。帮助您实现Android低内存的状态保持、对象持久化等APP被系统回收内存的测试。您不必为了测试onSaveInstanceState、onRestoreInstanceState回调而打开所有的APP或者跑上几个游戏。用EatMemory,你只需要轻轻一按! 3 | 4 | This application is used for android developer. you can testing low memory case, and you just need to press the eat button. 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | 15 | # Gradle files 16 | .gradle/ 17 | build/ 18 | /*/build/ 19 | 20 | # Local configuration file (sdk path, etc) 21 | local.properties 22 | 23 | # Proguard folder generated by Eclipse 24 | proguard/ 25 | 26 | # Log Files 27 | *.log 28 | --------------------------------------------------------------------------------