Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --
- -- For more information on build.settings see the Corona SDK Build Guide at:
- -- http://docs.coronalabs.com/guide/distribution/buildSettings/index.html
- --
- settings = {
- splashScreen = {
- enable = false
- },
- orientation = {
- default = "landscapeRight",
- supported = {"landscapeLeft", "landscapeRight"}
- },
- excludeFiles = {
- -- Include only the necessary icon files on each platform
- iphone = { "Icon-*dpi.png", },
- android = { "Icon.png", "Icon-Small-*.png", "Icon*@2x.png", },
- },
- --
- -- iOS Section
- --
- iphone = {
- xcassets = "Images.xcassets",
- plist = {
- ITSAppUsesNonExemptEncryption = false,
- NSPhotoLibraryUsageDescription = "Die App würde gerne auf deine Fotos zugreifen.",
- NSPhotoLibraryAddUsageDescription = "Die App speichert Screenshots in Deiner Foto App.",
- NSCameraUsageDescription = "Not used by this app",
- NSCalendarsUsageDescription = "Not used by this app",
- UIStatusBarHidden = false,
- UIPrerenderedIcon = true, -- set to false for "shine" overlay
- CFBundleDisplayName = "XXXXXXX",
- CFBundleName = "XXXXXXX",
- CoronaUseIOS7IPadPhotoPickerLandscapeOnlyWorkaround = true,
- CoronaUseIOS6IPadPhotoPickerLandscapeOnlyWorkaround = true,
- CoronaUseIOS7LandscapeOnlyWorkaround = true,
- CoronaUseIOS6LandscapeOnlyWorkaround = true,
- MinimumOSVersion = "8.0", -- Comment out when testing on Xcode simulator
- UILaunchStoryboardName = "LaunchScreen",
- UILaunchImages = {
- { --iPhone 4 Portait
- ["UILaunchImageMinimumOSVersion"] = "7.0",
- ["UILaunchImageName"] = "Default",
- ["UILaunchImageOrientation"] = "Portrait",
- ["UILaunchImageSize"] = "{320, 480}"
- },
- { --iPhone 5 Portait
- ["UILaunchImageMinimumOSVersion"] = "7.0",
- ["UILaunchImageName"] = "Default-568h",
- ["UILaunchImageOrientation"] = "Portrait",
- ["UILaunchImageSize"] = "{320, 568}"
- },
- { -- iPad / iPad Retina Landscape Right
- ["UILaunchImageMinimumOSVersion"] = "7.0",
- ["UILaunchImageName"] = "Default-Landscape",
- ["UILaunchImageOrientation"] = "LandscapeRight",
- ["UILaunchImageSize"] = "{768, 1024}"
- },
- { -- iPad / iPad Retina Landscape Left
- ["UILaunchImageMinimumOSVersion"] = "7.0",
- ["UILaunchImageName"] = "Default-Portrait",
- ["UILaunchImageOrientation"] = "LandscapeLeft",
- ["UILaunchImageSize"] = "{768, 1024}"
- },
- { --iPhone 6 Landscape Right
- ["UILaunchImageMinimumOSVersion"] = "8.0",
- ["UILaunchImageName"] = "Default-667h",
- ["UILaunchImageOrientation"] = "LandscapeRight",
- ["UILaunchImageSize"] = "{375, 667}"
- },
- { --iPhone 6 Landscape Left
- ["UILaunchImageMinimumOSVersion"] = "8.0",
- ["UILaunchImageName"] = "Default-667h",
- ["UILaunchImageOrientation"] = "LandscapeLeft",
- ["UILaunchImageSize"] = "{375, 667}"
- },
- { -- iPhone 6 Plus Landscape Right
- ["UILaunchImageMinimumOSVersion"] = "8.0",
- ["UILaunchImageName"] = "Default-736h",
- ["UILaunchImageOrientation"] = "LandscapeRight",
- ["UILaunchImageSize"] = "{414, 736}"
- },
- { -- iPhone 6 Plus Landscape Left
- ["UILaunchImageMinimumOSVersion"] = "8.0",
- ["UILaunchImageName"] = "Default-736h",
- ["UILaunchImageOrientation"] = "LandscapeLeft",
- ["UILaunchImageSize"] = "{414, 736}"
- },
- { -- iPad Pro Landscape Right
- ["UILaunchImageMinimumOSVersion"] = "9.0",
- ["UILaunchImageName"] = "Default-Landscape-1366",
- ["UILaunchImageOrientation"] = "LandscapeRight",
- ["UILaunchImageSize"] = "{1024, 1366}"
- },
- { -- iPad Pro Landscape Left
- ["UILaunchImageMinimumOSVersion"] = "9.0",
- ["UILaunchImageName"] = "Default-Landscape-1366",
- ["UILaunchImageOrientation"] = "LandscapeLeft",
- ["UILaunchImageSize"] = "{1024, 1366}"
- },
- { -- iPhone X Landscape Right
- ["UILaunchImageMinimumOSVersion"] = "11.0",
- ["UILaunchImageName"] = "Default-Landscape-2436",
- ["UILaunchImageOrientation"] = "LandscapeRight",
- ["UILaunchImageSize"] = "{1125, 2436}"
- },
- { -- iPhone X Landscape Left
- ["UILaunchImageMinimumOSVersion"] = "11.0",
- ["UILaunchImageName"] = "Default-Landscape-2436",
- ["UILaunchImageOrientation"] = "LandscapeLeft",
- ["UILaunchImageSize"] = "{1125, 2436}"
- },
- },
- CFBundleLocalizations = {
- "de", --German
- },
- --[[
- -- iOS app URL schemes:
- CFBundleURLTypes = {
- {
- CFBundleURLSchemes = {
- "fbXXXXXXXXX", -- replace XXXXXXXXX with your Facebook appId
- }
- }
- }
- --]]
- }
- },
- --
- -- Android Section
- --
- android = {
- minSdkVersion = "21",
- usesExpansionFile = true,
- usesPermissions = {
- "android.permission.INTERNET",
- "com.android.vending.CHECK_LICENSE",
- "android.permission.WRITE_EXTERNAL_STORAGE"
- },
- },
- --
- -- Plugin Section
- --
- plugins = {
- -- key is the name passed to Lua's 'require()'
- ["CoronaProvider.native.popup.social"] = {
- -- required
- publisherId = "com.coronalabs",
- },
- },
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement