java - How can I test Memory leaks of my application in mobile device especially in iOS and Android? -
i manual tester , don't of tool need know how can check memory leaks in mobile device itself. or there other method test it? without having knowledge of coding.
ios
for ios use instruments. see locating memory issues in app. use leaks instrument of instruments analysis tool find objects in app no longer referenced , reachable.
android
for android use eclipse memory analyzer tool or android debug monitor described in investigating ram usage
while using tools described above, should aggressively stress app code , try forcing memory leaks. 1 way provoke memory leaks in app let run while before inspecting heap. leaks trickle top of allocations in heap. however, smaller leak, longer need run app in order see it.
Comments
Post a Comment