Where do I enter the SHA1 key into Corona?
Here’s my Config:
[lua]
application = {
content = {
width = 640,
height = 960, --1136
scale = “zoomstretch”,
fps = 60,
launchpad = false,
},
}
[/lua]
Here’s my Build.settings, sorry about how messy it is:
[lua]
– Supported values for orientation:
– portrait, portraitUpsideDown, landscapeLeft, landscapeRight
settings = {
orientation = {
default = “portrait”,
supported = { “portrait”, }
},
iphone = {
plist = {
UIStatusBarHidden = true,
UIPrerenderedIcon = true, – set to false for “shine” overlay
–UIApplicationExitsOnSuspend = true, – uncomment to quit app on suspend
UIAppFonts =
{
“Hiruko.otf”
}
–[[
– iOS app URL schemes:
CFBundleURLTypes =
{
{
CFBundleURLSchemes =
{
“fbXXXXXXXXXXXXXX”, – example scheme for facebook
“coronasdkapp”, – example second scheme
}
}
}
–]]
},
components = {
}
},
android =
{
usesPermissions =
{
“android.permission.INTERNET”,
googlePlayGamesAppId = “182739516720”
}
},
plugins =
{
–key is the name passed to the Lua “require()”
[“CoronaProvider.gameNetwork.google”] =
{
–required!
publisherId = “com.coronalabs”,
},
},
}
[/lua]
I think I might have the wrong App ID because I did have some trouble finding it, I might have the wrong number. How do I find it in the google play dev console?