OK made some progress,
Using adb install and the debug keystore (all three the same)
1, test app – Success
2, MyFirstApp (another APK previously published on google play) --success
3, NewApp – Failure [Install_Parse_Failed_No_Certificates]
So this must point to something in the App itself?
My Build.Settings:
settings =
{
plugins = {
--[[remove this line to implement google game services
[“CoronaProvider.gameNetwork.google”] =
{
publisherId = “com.coronalabs”,
supportedPlatforms = { android = true },
},
]] --remove this line to implement google game services
[“CoronaProvider.ads.admob”] =
{
publisherId = “com.coronalabs”,
},
--[[remove this line to implement TapForTap
[“plugin.tapfortap”] =
{
– required
publisherId = “com.tapfortap”,
},
]] --remove this line to implement TapForTap
--[[remove this line to implement iAds
[“CoronaProvider.ads.iads”] =
{
– required
publisherId = “com.coronalabs”,
},
]] --remove this line to implement iAds
[“facebook”] =
{
– required
publisherId = “com.coronalabs”,
supportedPlatforms = { iphone = true },
},
[“facebook”] =
{
– required
publisherId = “com.coronalabs”,
supportedPlatforms = { iphone = true },
},
},
orientation = {
default = “landscapeRight”,
supported = { “landscapeRight”, }
},
android =
{
googlePlayGamesAppId = “XXXXXXXX”, --insert your app id number for google game services
usesPermissions =
{
“com.android.vending.BILLING”, --remove this line if you don’t use iAP
“android.permission.INTERNET”,
“android.permission.ACCESS_NETWORK_STATE”,
“android.permission.READ_PHONE_STATE”
},
},
iphone =
{
plist =
{
CFBundleIconFile = “Icon.png”,
CFBundleIconFiles =
{
“Icon.png”,
“Icon@2x.png”,
“Icon-60.png”,
“Icon-60@2x.png”,
“Icon-72.png”,
“Icon-72@2x.png”,
“Icon-76.png”,
“Icon-76@2x.png”,
“Icon-Small.png”,
“Icon-Small@2x.png”,
“Icon-Small-40.png”,
“Icon-Small-40@2x.png”,
“Icon-Small-50.png”,
“Icon-Small-50@2x.png”,
},
UIApplicationExitsOnSuspend = false, – must be false for single sign-on to work
FacebookAppID = “1234”, – replace XXXXXXXXX with your facebook appId
CFBundleURLTypes =
{
{
CFBundleURLSchemes =
{
“fb1234”, – replace XXXXXXXXX with your facebook appId, make sure that you leave fb in front of it
}
}
}
}
}
}