# I want more fps than 60 in android

**URL:** https://discourse.processing.org/t/i-want-more-fps-than-60-in-android/17663
**Category:** Processing for Android
**Created:** [February 9, 2020, 3:36pm UTC](https://discourse.processing.org/t/i-want-more-fps-than-60-in-android/17663 "2020-02-09T15:36:19Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![iamjustcurious](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/iamjustcurious/32/8016_2.png) [@iamjustcurious](https://discourse.processing.org/u/iamjustcurious)
#### Post date: [February 9, 2020, 3:36pm UTC](https://discourse.processing.org/t/i-want-more-fps-than-60-in-android/17663/1 "2020-02-09T15:36:19Z")

</div>

How can I get more fps than 60 in android?

---

<div class="post-metadata">

### Author: ![bucherjo](https://avatars.discourse-cdn.com/v4/letter/b/848f3c/32.png) [@bucherjo](https://discourse.processing.org/u/bucherjo)
#### Post date: [February 9, 2020, 3:42pm UTC](https://discourse.processing.org/t/i-want-more-fps-than-60-in-android/17663/2 "2020-02-09T15:42:55Z")

</div>

You can use frameRate(); in the Java-mode of Processing. This might also work for Android mode…

---

<div class="post-metadata">

### Author: ![iamjustcurious](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/iamjustcurious/32/8016_2.png) [@iamjustcurious](https://discourse.processing.org/u/iamjustcurious)
#### Post date: [February 9, 2020, 3:46pm UTC](https://discourse.processing.org/t/i-want-more-fps-than-60-in-android/17663/3 "2020-02-09T15:46:49Z")

</div>

I tried that, it didn’t work.

---

<div class="post-metadata">

### Author: ![akenaton](https://avatars.discourse-cdn.com/v4/letter/a/a88e4f/32.png) [@akenaton](https://discourse.processing.org/u/akenaton)
#### Post date: [February 10, 2020, 8:58am UTC](https://discourse.processing.org/t/i-want-more-fps-than-60-in-android/17663/4 "2020-02-10T08:58:36Z")

</div>

@iamjustcurious ===  
there is not any max frame rate for android; max frame rate relies on your phone specs (hardware && config) and as there are 10000 specs you can only speak about “average” and 60fps is considered to be this average value knowing that for some phones it is more and for others less; so, if you are trying to set the frame rate to 100fps with a phone which is only 50fps or 60fps you get absolutely nothing!Adding that setting the frame rate to the max value possible is not a good idea because the user can see the difference when your app is making heavy work or nothing; that s why a lot of real apps use 30fps…
