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 =
- {
- orientation =
- {
- -- Supported values for orientation:
- -- portrait, portraitUpsideDown, landscapeLeft, landscapeRight
- default = "portrait",
- supported = { "portrait", }
- },
- excludeFiles =
- {
- -- Include only the necessary icon files on each platform
- iphone = { "Icon-*dpi.png", },
- android = { "Icon.png", "Icon-Small*.png", "Icon*@2x.png", "Icon*@2x.png", "Icon*@3x.png",
- "Icon-Amazon.png", "iTunes*.png", "Icon*.ico", "upload.png",
- "Icon-16.png", "Icon-24.png", "Icon-32.png", "Icon-40.png", "Icon-60.png",
- "Icon-64.png", "Icon-72.png", "Icon-120.png", "Icon-152.png", },
- },
- plugins =
- {
- --["plugin.utf8"] =
- --{
- -- publisherId = "com.coronalabs",
- --},
- -- для appodeal
- --["plugin.appodeal"] =
- --{
- -- publisherId = "com.coronalabs",
- -- supportedPlatforms = { android=true }
- --},
- --["plugin.google.play.services"] =
- --{
- -- publisherId = "com.coronalabs",
- -- supportedPlatforms = { android=true }
- --},
- ["plugin.gpgs.v2"] = {
- publisherId = "com.coronalabs",
- supportedPlatforms = { ["android"] = true, }
- },
- --["plugin.firebaseAnalytics"] =
- --{
- -- publisherId = "tech.scotth",
- -- supportedPlatforms = { android=true }
- --},
- --["plugin.firebaseDatabase"] =
- --{
- -- publisherId = "tech.scotth",
- -- supportedPlatforms = { android=true }
- --},
- -- Base
- --['plugin.appodeal.base'] = { publisherId = 'com.coronalabs' },
- --['plugin.appodeal.GoogleAdMob'] = { publisherId = 'com.coronalabs' },
- --['plugin.appodeal.StartApp'] = { publisherId = 'com.coronalabs' },
- },
- --
- -- Android Section
- --
- android =
- {
- applicationChildElements =
- {
- [[
- <meta-data android:name="com.google.android.gms.ads.APPLICATION_ID"
- android:value="ca-app-pub-6392411087117914~5103519653"/> -- replace with your app id. See: https://goo.gl/fQ2neu
- ]],
- },
- usesPermissions =
- {
- "android.permission.INTERNET",
- "android.permission.ACCESS_NETWORK_STATE",
- -- для appodeal
- "android.permission.ACCESS_COARSE_LOCATION",
- "android.permission.WRITE_EXTERNAL_STORAGE",
- "com.google.android.c2dm.permission.RECEIVE",
- },
- intentFilters = {
- {
- }
- },
- useGoogleServicesJson = true,
- },
- window = {
- defaultViewWidth = 400,
- defaultViewHeight = 600,
- resizable = true,
- titleText = {
- default = "Синонимы",
- }
- },
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement