-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.settings
73 lines (68 loc) · 1.43 KB
/
build.settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
--
-- 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 =
{
googlePlayGamesAppId = "874231189156",
usesPermissions =
{
"android.permission.INTERNET",
"com.android.vending.CHECK_LICENSE"
},
applicationChildElements =
{
[[
<meta-data android:name="com.google.android.gms.ads.APPLICATION_ID" android:value="ca-app-pub-7458926770415601~7831222224"/>
]],
}
},
--
-- iOS section
--
iphone =
{
xcassets = "ColorUpAssets/Images.xcassets",
plist =
{
UIStatusBarHidden = false,
UILaunchStoryboardName = "LaunchScreen",
},
},
--
-- Plugins section
--
plugins =
{
-- Play services
["plugin.gpgs.v2"] = {
publisherId = "com.coronalabs",
supportedPlatforms = {["android"] = true, ["android-kindle"] = true}
},
-- Admob
["plugin.admob"] = {
publisherId = "com.coronalabs"
}
},
--
-- Project section
--
excludeFiles =
{
-- Exclude unnecessary files for each platform
all = { "ColorUpAssets/assets/images/Icon.png", "ColorUpAssets/assets/images/Icon-*dpi.png", "ColorUpAssets/Images.xcassets", },
android = { "ColorUpAssets/LaunchScreen.storyboardc", },
},
}