Skip to main content
Question

Unity SDK paywall cannot lock to current orientation making them unusable

  • January 6, 2026
  • 1 reply
  • 14 views

Forum|alt.badge.img+5

the new unity paywalls is nice, but my game is locked in landscape mode (very common in Unity games).

The RevenueCat paywalls pop up in portrait mode. It’s very weird, and feels unnatural.

Is there any hack to fix this? can I modify the open source code to fix this for myself somehow, if you can give me some ideas?

Right now, Unity paywalls isnt usable because of this, and I think its very common problem since many games lock to landscape mode

This post has been closed for comments

1 reply

Forum|alt.badge.img+8
  • RevenueCat Staff
  • January 8, 2026

Hi, I responded internally to your ticket request on this as follows:

You can force landscape on Android by adding something like this to your AndroidManifest:

<activity
android:name="com.revenuecat.purchases.ui.revenuecatui.activity.PaywallActivity"
android:screenOrientation="landscape"
android:exported="false" />

 For iOS in the Info.plist of your app you should be able to remove UIInterfaceOrientationPortrait and UIInterfaceOrientationPortraitUpsideDown to force landscape.