Resizability and Orientation in Solar2D 2025.3722 ( latest update )

Looks like the latest Solar2D update fixed two orientation warnings, but there’s still one left. Below are the warnings for one of my apps (about “Resizability and orientation”) in Solar2D 2025.3721 and 2025.3722.

With 2025.3722
We detected the following resizability and orientation restrictions in your game:

com.ansca.corona.purchasing.StoreActivity.onCreate

With 2025.3721

We detected the following resizability and orientation restrictions in your app:

<activity android:name="com.ansca.corona.CameraActivity" android:screenOrientation="PORTRAIT" />
<activity android:name="com.ansca.corona.CoronaActivity" android:resizeableActivity="false" />
com.ansca.corona.purchasing.StoreActivity.onCreate

These two showed up on my console after building with 2025.3722:

<activity android:name="com.ansca.corona.CoronaActivity" android:screenOrientation="PORTRAIT" />
com.ansca.corona.purchasing.StoreActivity.onCreate

I think I don’t get the first warning you see because in my build.settings file I set all orientations to be supported, and then I just restrict the display to the one I want from code.

orientation =
	{
		default = "portrait",
		supported = { "portrait", "portraitUpsideDown", "landscapeLeft", "landscapeRight" },
	},
1 Like