You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.1 KiB
61 lines
1.1 KiB
--
|
|
-- For more information on build.settings, see the Project Build Settings guide at:
|
|
-- https://docs.coronalabs.com/guide/distribution/buildSettings
|
|
--
|
|
|
|
settings =
|
|
{
|
|
orientation =
|
|
{
|
|
-- Supported values for orientation:
|
|
-- portrait, portraitUpsideDown, landscapeLeft, landscapeRight
|
|
default = "portrait",
|
|
supported = { "portrait", },
|
|
},
|
|
|
|
--
|
|
-- Android section
|
|
--
|
|
android =
|
|
{
|
|
usesPermissions =
|
|
{
|
|
"android.permission.INTERNET",
|
|
-- Permission to retrieve current location from the GPS
|
|
"android.permission.ACCESS_FINE_LOCATION",
|
|
-- Permission to retrieve current location from WiFi or cellular service
|
|
"android.permission.ACCESS_COARSE_LOCATION"
|
|
},
|
|
},
|
|
|
|
--
|
|
-- iOS section
|
|
--
|
|
iphone =
|
|
{
|
|
xcassets = "Images.xcassets",
|
|
plist =
|
|
{
|
|
UIStatusBarHidden = false,
|
|
UILaunchStoryboardName = "LaunchScreen",
|
|
},
|
|
},
|
|
|
|
--
|
|
-- Plugins section
|
|
--
|
|
plugins =
|
|
{
|
|
|
|
},
|
|
|
|
--
|
|
-- Project section
|
|
--
|
|
excludeFiles =
|
|
{
|
|
-- Exclude unnecessary files for each platform
|
|
all = { "Icon.png", "Icon-*dpi.png", "Images.xcassets", },
|
|
android = { "LaunchScreen.storyboardc", },
|
|
},
|
|
}
|
|
|