Additional info, I tried to minimize the code in my app to the bare minimum…
With this code in main.lua I get the following result. See for config.lua and build.settings below.
local hockeyApp = require( “plugin.hockey” )
hockeyApp.init( “real_value_with_lots_of_letters_and_numbers” )
RESULT:
Copyright © 2009-2016 C o r o n a L a b s I n c .
Version: 3.0.0
Build: 2016.2907
Platform: iPhone / x64 / 10.0 / GeForce GTX 560 Ti/PCIe/SSE2 / 4.5.0 NVIDIA 355.82 / 2016.2907 / nl_NL | NL | nl_NL | nl
Loading project from: E:\7 GDrive MP\Prive\Corona Apps\RUN\only hockey
Project sandbox folder: D:\Users\User\AppData\Local\Corona Labs\Corona Simulator\Sandbox\only hockey-72400684E579578F9FF9692FAA71CDD2\Documents
WARNING: The ‘plugin.hockey’ library is not available on this platform.
Using custom build id from app bundle: 00000 (AppSettings.lua)
Using custom Build Id 00000
BuildID: kCoronaBuild [A device build error occurred on the server.
Error:
BuildID: 578e74f4562e8
ERROR: An error occurred during build. The server returned the following message:
A device build error occurred on the server.
Error:
BuildID: 578e74f4562e8
Android build failed (5)
CONFIG.LUA
application =
{
showRuntimeErrors = true,
content =
{
scale = “adaptive”,
fps = 60,
imageSuffix = {
["@2x"] = 2,
["@3x"] = 3,
}
}
}
BUILD.SETTINGS
–
– For more information on build.settings see the Corona SDK Build Guide at:
– http://docs.coronalabs.com/guide/distribution/buildSettings/index.html
–
settings =
{
plugins =
{
[“plugin.zip”] =
{
publisherId = “com.coronalabs”,
supportedPlatforms = { iphone=true, android=true, osx=true, win32=true }
},
[“plugin.hockey”] =
{
publisherId = “com.coronalabs”,
supportedPlatforms = { iphone=true, android=true }
},
},
orientation =
{
default = “portrait”,
supported = { “portrait” }
},
android =
{
usesPermissions =
{
– Permission to access the GPS.
“android.permission.ACCESS_FINE_LOCATION”,
– Permission to retrieve current location from WiFi or cellular service.
“android.permission.ACCESS_COARSE_LOCATION”,
“android.permission.INTERNET”,
“android.permission.WRITE_EXTERNAL_STORAGE”
},
},
iphone =
{
plist =
{
NSAppTransportSecurity = { NSAllowsArbitraryLoads=true },
UIApplicationExitsOnSuspend=true,
CFBundleIconFiles =
{
“Icon.png”,
“Icon@2x.png”,
“Icon-60.png”,
“Icon-60@2x.png”,
“Icon-60@3x.png”,
“Icon-72.png”,
“Icon-72@2x.png”,
“Icon-76.png”,
“Icon-76@2x.png”,
“Icon-167.png”,
“Icon-Small.png”,
“Icon-Small@2x.png”,
“Icon-Small@3x.png”,
“Icon-Small-40.png”,
“Icon-Small-40@2x.png”,
“Icon-Small-50.png”,
“Icon-Small-50@2x.png”,
},
NSLocationWhenInUseUsageDescription = “A description to the user of why you need access to location services.”,
},
},
window =
{
titleText =
{
default = “GPS”,
},
},
}