Hi Veena,
We found the problem to be the ComScore analytics library. When the video was started, we sent an analytics call to ComScore. That call never returned for some reason, and because it was called in the UI thread, we got the ANR. Updating the library to the newest version fixed the problem. Since this happened only in Play installs, we used a rooted Android phone and altered its kernel to enable debugging mode globally. Then we installed the app from Google Play, and opened the video view. When the app stopped responding, we connected the phone to the debugger in Android Studio and hit the pause key and found out the culprit.
Because the ANR happens in manual installs in your case, I suggest that you run the application in debug mode, and when the application stops responding, hit the debugger's pause button and see what was the last line of your code that was run. I hope this helps =)
- Heikki