Android and fps control

Is there a way to control the fps of an android application?
It seems that the player has a default set to 30fps. To get a super smooth feeling
for a game a 40fps or even more would be nice. Is there a way to change the default value?

Anyone know the answer to this? I’d like to know as well. Thanks.

mine always clamp to maximum of 60 fps.

Disable VSync in the Quality settings (Edit > Project Settings > Quality > QUALITY LEVEL > VSync and either disable it or set it every other (so it will sync every second frame instead of every).

What happens: If VSync is enabled and your game can’t get 60+ fps, it will go to VSync-refresh rate / 2 (30) or VSync-refreshrate/4 (15 fps), so the frame rendering can be keep synchronized to VSync. By disabling it, the frames will be rendered as fast as possible without waiting for the VSync to happen