My app has become too big that I now need to use Expansion files for Android.
Here is a piece of my build.settings file:
settings = {
– Use the “orientation” table to set the default and supported device orientations
– Acceptable values are “portrait”, “portraitUpsideDown”, “landscapeRight”, or “landscapeLeft”
orientation = {
default = “landscapeRight”,
supported = { “landscapeRight” }
},
android =
{
–<strong>usesExpansionFile = true</strong>,
usesPermissions =
{
“android.permission.INTERNET”,
“com.android.vending.CHECK_LICENSE”,
“android.permission.WRITE_EXTERNAL_STORAGE”,
},
},
If I remove the comment to use Expansion files, the app is no longer in landscape.
Any ideas?