Sorry, that was a type. It is 2100
The only change I’ve made since the last post is that once I updated the Corona Simulator, the Graphics 2.0 tripped the sizing, so I reverted back to Compatibility v1 in my Config.
How can I find it in the terminal
Is there any way I can send it to you to review?
Open up your terminal.
Use the “cd” command to change to the directory where your main.lua is. For instance if you have a folder named Projects off of your home folder and inside it your app is named “MyApp”
cd ~/Projects/MyApp
Then use the “ls” command to see what’s there:
ls -la
If you want, you can make a .zip file (no .rar files please) and put it somewhere that I can get to it (dropbox etc.) But I don’t think having me look at it will do you much good. I can’t repeat your development environment which is the main issues you are having. You have to remove that icon file locally.
If you us Sublime Text, then you should be able to turn on the file listing side bar and see the files that way. You can right click (or CTRL-Click) and remove the file that way too.
Even if I fix the Icon issues, how can I resolve the error with the Corona Signing?
Here is the thread that was discussing this issue: http://forums.coronalabs.com/topic/41367-comcoronalabstemplate-app-store-publishing-error/
The solution was to completely clean out the certificates and keys.
Ive cleared all of my Certificates and Keys and have remade all my profiles. I do not know what to do and I am backed against a wall. Any guidelines or walkthroughs to make sure I did everything correctly would be very appreciated
UPDATE: Re deleted everything and tried again, this time only getting one error.
Package Summary:
1 package(s) were not uploaded because they had problems:
/var/folders/38/rp_fjvt50_v66sg1s9gkmrwm0000gn/T/789609023.itmsp - Error Messages:
Apple’s web service operation was not successful
Unable to authenticate the package: 789609023.itmsp
ERROR ITMS-9000: “Invalid Code Signing. The executable ‘RJJH.app/RJJH’ must be signed with the certificate that is contained in the provisioning profile.” at SoftwareAssets/SoftwareAsset (MZItmspSoftwareAssetPackage)
Please Help if you have any idea,
Did you re-download the profiles and restart corona SDK after doing so? Have you rebooted?
Just restarted my computer and now have 3 more errors
Package Summary:
1 package(s) were not uploaded because they had problems:
/var/folders/38/rp_fjvt50_v66sg1s9gkmrwm0000gn/T/789609023.itmsp - Error Messages:
Apple’s web service operation was not successful
Unable to authenticate the package: 789609023.itmsp
ERROR ITMS-9000: “Missing required icon file. The bundle does not contain an app icon for iPad of exactly ‘72x72’ pixels, in .png format.” at SoftwareAssets/SoftwareAsset (MZItmspSoftwareAssetPackage)
ERROR ITMS-9000: “Invalid Code Signing. The executable ‘RJJH.app/RJJH’ must be signed with the certificate that is contained in the provisioning profile.” at SoftwareAssets/SoftwareAsset (MZItmspSoftwareAssetPackage)
ERROR ITMS-9000: “Your package contains a file 'RJJH.app/Icon ’ with a name that contains invalid characters. Avoid using control characters in the file names.” at SoftwareAssets/SoftwareAsset (MZItmspSoftwareAssetPackage)
Just redid the terminal trick and now am back to one error.
Well your file with the name Icon and no .png is back. If you never removed it, it’s still there. The other error is missing the 72x72 icon. You have to provide a full set of icons that we listed in the guide I pointed you to earlier. Are you using an IDE or do you have your project folder colored or with an Icon on it?
Those of course don’t solve the certificate problem.
When you hit the Build screen, can you provide me a screen shot? I’d like to see what options you are setting there.
The icon error is fixed after I removed the stray file again. Im just left with the “ERROR ITMS-9000: “Invalid Code Signing. The executable ‘RJJH.app/RJJH’ must be signed with the certificate that is contained in the provisioning profile.” at SoftwareAssets/SoftwareAsset (MZItmspSoftwareAssetPackage)” error now.
That error tells me that the provisioning profile you are selecting on the build screen is not built with your certificate.
Rob
Two ideas to try:
-
Make sure an explicit app ID was used rather than a wildcard one.
-
Make sure there are no typos in build.settings.
I am using an explicit app ID and still receiving the same errors. could it be anything else?
I am not getting any issues in the Corona Builder
I remember seeing someone else’s post. There was a complex structure of tables-within-tables in build.settings, they missed some brackets, and the build process got confused, leading to an error during submission, as far as I remember.
-- Supported values for orientation: -- portrait, portraitUpsideDown, landscapeLeft, landscapeRight settings = { orientation = { default = "portrait", supported = { "portrait", } }, iphone = { plist = { UIStatusBarHidden = false, UIPrerenderedIcon = true, -- set to false for "shine" overlay --UIApplicationExitsOnSuspend = true, -- uncomment to quit app on suspend UIAppFonts = { "basictitlefont.ttf", }, --[[-- iOS app URL schemes: CFBundleURLTypes = { { CFBundleURLSchemes = { "fbXXXXXXXXXXXXXX", -- example scheme for facebook "coronasdkapp", -- example second scheme } } } --]] } }, --[[-- Android permissions androidPermissions = { "android.permission.INTERNET", },]]-- }
This is all thats in my build settings