The title says a lot, i am trying to get my app to be in portrait by default if it is opened on a iPhone and i only want portrait mode to be displayed on Iphone. Since there is more space on ipad, i would like it to be in landscape by default and only support landscape.
is there a way to do it with the build setting ?
something like :
settings = {
iphone ={
plist={
orientation= {
default = “portrait”,
content = “portrait”,
supported = {“portrait” }
}
}
}
}
or just change the values contained inside the table from the plist?
settings = {
orientation= {
supported = {“landscapeRight”, “landscapeLeft”,“portrait”, “portraitUpsideDown”}
}
iphone ={
plist={
orientation.default=“portrait”
}
}
}
ty for the time you will take on that question