├── .gitignore ├── LICENSE ├── Listener.apk ├── README.md ├── Test_File.py └── V1.0 ├── App_cpu_13_36_54.txt ├── Command.py ├── GC_file.txt ├── Listener.apk ├── Log_Analysis.py ├── Meminfo_13_36_54.txt ├── Monkey_Script.py ├── NetWorkFile_13_36_54.txt ├── Start_Time_13_36_54.txt ├── Start_time.sh ├── batteryFile_13_36_54.txt ├── cpu.sh └── testtime.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytest15/AndroidPerformanceTest_Python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytest15/AndroidPerformanceTest_Python/HEAD/LICENSE -------------------------------------------------------------------------------- /Listener.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytest15/AndroidPerformanceTest_Python/HEAD/Listener.apk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytest15/AndroidPerformanceTest_Python/HEAD/README.md -------------------------------------------------------------------------------- /Test_File.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytest15/AndroidPerformanceTest_Python/HEAD/Test_File.py -------------------------------------------------------------------------------- /V1.0/App_cpu_13_36_54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytest15/AndroidPerformanceTest_Python/HEAD/V1.0/App_cpu_13_36_54.txt -------------------------------------------------------------------------------- /V1.0/Command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytest15/AndroidPerformanceTest_Python/HEAD/V1.0/Command.py -------------------------------------------------------------------------------- /V1.0/GC_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytest15/AndroidPerformanceTest_Python/HEAD/V1.0/GC_file.txt -------------------------------------------------------------------------------- /V1.0/Listener.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytest15/AndroidPerformanceTest_Python/HEAD/V1.0/Listener.apk -------------------------------------------------------------------------------- /V1.0/Log_Analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytest15/AndroidPerformanceTest_Python/HEAD/V1.0/Log_Analysis.py -------------------------------------------------------------------------------- /V1.0/Meminfo_13_36_54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytest15/AndroidPerformanceTest_Python/HEAD/V1.0/Meminfo_13_36_54.txt -------------------------------------------------------------------------------- /V1.0/Monkey_Script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytest15/AndroidPerformanceTest_Python/HEAD/V1.0/Monkey_Script.py -------------------------------------------------------------------------------- /V1.0/NetWorkFile_13_36_54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytest15/AndroidPerformanceTest_Python/HEAD/V1.0/NetWorkFile_13_36_54.txt -------------------------------------------------------------------------------- /V1.0/Start_Time_13_36_54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytest15/AndroidPerformanceTest_Python/HEAD/V1.0/Start_Time_13_36_54.txt -------------------------------------------------------------------------------- /V1.0/Start_time.sh: -------------------------------------------------------------------------------- 1 | adb logcat | grep ActivityManager >Start_Time.txt 2 | -------------------------------------------------------------------------------- /V1.0/batteryFile_13_36_54.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /V1.0/cpu.sh: -------------------------------------------------------------------------------- 1 | adb shell top >App_cpu.txt 2 | -------------------------------------------------------------------------------- /V1.0/testtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytest15/AndroidPerformanceTest_Python/HEAD/V1.0/testtime.txt --------------------------------------------------------------------------------