Sure, where we go: https://www.dropbox.com/s/xzcdggcfe778gnh/build.settings?dl=0
settings = { orientation = { default = "landscapeLeft", supported = {"landscapeLeft"} --OUYA --default = "landscapeRight",supported = {"landscapeLeft", "landscapeRight"} --All }, iphone = { plist = { CFBundleDisplayName = "Royal Heroes", CFBundleIconFile = "Icon.png", CFBundleIconFiles = { "Icon.png", "Icon-60.png", "Icon-72.png", "Icon-76.png", "Icon-120.png", "Icon@2x.png", "Icon-72@2x.png", "Icon-76@2x.png", "Icon@3x.png", "Icon-Small@3x.png" }, UIStatusBarHidden=true, UIPrerenderedIcon=true, UIAppFonts = { "ShowcardGothic.ttf", "cartonsix.ttf" } }, }, android = { googlePlayGamesAppId="572279524189", usesPermissions = { "android.permission.INTERNET", "com.android.vending.BILLING", "com.xiaomi.sdk.permission.PAYMENT", "android.permission.GET\_TASKS", "android.permission.READ\_PHONE\_STATE", }, mainIntentFilter = { categories = { "tv.ouya.intent.category.GAME" }, } }, plugins = { --["CoronaProvider.analytics.flurry"] = {publisherId = "com.coronalabs"}, --["CoronaProvider.gameNetwork.google"] = {publisherId = "com.coronalabs", supportedPlatforms = { android = true }}, --["plugin.amazon.iap"] = {publisherId = "com.amazon", supportedPlatforms = { ["android-kindle"] = true }}, --["CoronaProvider.ads.iads"] = { publisherId = "com.coronalabs" , supportedPlatforms = { iphone = true }}, --["CoronaProvider.gameNetwork.apple"] = {publisherId = "com.coronalabs",supportedPlatforms = { iphone=true, ["iphone-sim"]=true }}, --["plugin.ouya"] = {publisherId = "tv.ouya"}, --["plugin.ouya.xiaomi"] = {publisherId = "tv.ouya"}, --["plugin.photon"] = {publisherId = "com.exitgames"}, }, -- This table configures the desktop app window for Win32 and OS X. window = { -- Sets up how the window should be launched on startup. (Default is "normal".) -- Supports: "normal", "minimized", "maximized", "fullscreen" defaultMode = "normal", -- Sets the default launch width and height of the view/client area of the window. -- This is the region within the borders of the window that Corona renders to. -- Ideally, this should match your "config.lua" content width and height, or larger. defaultViewWidth = 720, defaultViewHeight = 1280, -- Set to true to allow the end-user to resize the window. -- If true, then you may need to handle Corona's "resize" event to relayout your content. -- The window is not resizable by default. You must opt-in by setting this to true. resizable = true, -- These settings only apply if "resizable" is set to true up above. -- Prevents the user from resizing the window to a size smaller than these values. -- This width and height is the region within the borders of the window. -- The width and height should be set to your "config.lua" file's content width and height. -- If settings not specified, then the window can be sized down to whatever the OS allows. minViewWidth = 320, minViewHeight = 480, -- Enables/disables the window's close button. Enabled by default. -- If disabled, then you must close the window yourself in Lua via native.requestExit(). -- Note: Corona does not currently provide an event when the close button is clicked on. enableCloseButton = true, -- Enables/disables the window's minimize button. Enabled by default. enableMinimizeButton = true, -- Enables/disables the window's maximize button. Disabled by default. -- Note that the window will be resized when maximized and restored. -- If enabled, you may need to handle Corona's "resize" event to relayout your content. enableMaximizeButton = true, -- Sets the window's title bar text to a localized string. (No title bar text by default.) -- Supports 2 letter ISO 639-1 language codes. (Not case sensitive.) -- Supports optional 2 letter ISO 3166-1 country codes. (Not case sensitive.) -- Language and country codes must be separated by a '-' dash. titleText = { -- The "default" text will be used if the system is using a language and/or -- country code not defined below. This serves as a fallback mechanism. default = "Royal Heroes", }, }, }