How to change framerate for Android?

Hi, does anyone know how to set the framerate for Android builds? Similar to how you can set it for iOS through AppController. Thank you.

Well, you could do it via Time.captureFramerate = 30 to lock it at max 30 fps.

http://unity3d.com/support/documentation/ScriptReference/Time-captureFramerate.html

Alternatively you can synchronize it with the VSync. Edit > Project Settings > Quality and change the “VSync Count” to every VBlank. However, this won’t allow you to set FPS independently of the VSync