Electron app is not available for testing with TestFlight - electron

Need help with uploading app into testflight šŸ™
Now we have ā€œnot available for testingā€ error
Maybe itā€™s because of ā€œBuild Platfomsā€ field is empty
But if we add macosx platform, we run into these errors ->
Asset validation failed
Invalid Code Signing Entitlements. Your application bundle's signature contains code signing entitlements that are not supported on macOS. Specifically, key 'CFBundleSupportedPlatforms' in ā€˜ā€¦ Login Helper.app/ā€¦/Login Helper' is not supported
Asset validation failed
Invalid Code Signing Entitlements ā€¦. key 'CFBundleSupportedPlatforms' in ā€˜ā€¦ appName.app/ā€¦/ā€˜appName is not supported.
What's wrong with macosx or else?

Related

Your application bundle's signature contains code signing entitlements that are not supported on iOS. Specifically, value '*'

Constantly receiving an error on test-flight upload as follows:
ITMS-90046: "Invalid Code Signing Entitlements. Your application
bundle's signature contains code signing entitlements that are not
supported on iOS. Specifically, value '*' for key
'com.apple.developer.associated-domains' in 'Payload/MyApp.app/MyApp'
is not supported.
Went through several associated similar stackoverflow questions but didn't got the solution yet. I am providing associated-domain value for com.apple.developer.associated-domains at capabilities as "applinks:myapp.onelink.me".
My Xcode version is 10.1 and deployment target is 11.0

Xcode error - The executable was signed with invalid entitlements

I can build a game that I am developing in Objective-C no problem, and I can test run it when I hook my iPhone onto the macbook. But when I try to test an angular phonegap app through Xcode, I get the error:
The executable was signed with invalid entitlements.
The entitlements specified in your applicationā€™s Code Signing Entitlements file are invalid, not permitted, or do not match those specified in your provisioning profile. (0xE8008016).
I tried some settings, but it looks to me like the settings forsigning are the same as for the objective-c game. What's the catch?
I don't have an answer I was wondering if you ever found the solution to your problem. Since I can't leave a comment on your question. I'm entering it here.

iOS - How can I remove entitlements from a Framework?

I'm getting dreaded errors like this:
ERROR ITMS-90164: "Invalid Code Signing Entitlements. The entitlements
in your app bundle signature do not match the ones that are contained
in the provisioning profile. According to the provisioning profile,
the bundle contains a key value that is not allowed:
'XXXXXXXX.com.xxxxxx.xxxxxx.xxxxx' for the key
'application-identifier' in
'Payload/XXXXX.app/Frameworks/Zip.framework/Zip'"
and this
ERROR ITMS-90046: "Invalid Code Signing Entitlements. Your application
bundle's signature contains code signing entitlements that are not
supported on iOS. Specifically, value 'development' for key
'aps-environment' in
'Payload/XXXXX.app/Frameworks/iOSDFULibrary.framework/iOSDFULibrary'
is not supported."
And it only happens when archiving and uploading to the appstore. Development on a physical device works just fine.
I already tried everything on this post without success ERROR ITMS-90164/90046: Invalid Code Signing Entitlements
My specific scenario is that the errors are happening on manually installed Frameworks, while the Cocoapods frameworks seem to be fine.
I just also noticed this which made me come and create the question. Right before uploading the build to the App Store, on the final summary page, I noticed that Cocoapods frameworks look like this:
While the problematic frameworks (non cocoapods) look like this:
Those extra entitlements look like are to blame, but I can't figure out how to remove them.
EDIT Aug 3:
Just wanted to add that I found official documentation about entitlements troubleshooting here here and here
But it all talks about the app itself and not the frameworks.
Can anyone help me figure this out?
Thank you
I am facing similar issue for my app. I have used xcode10.1 to generate xcarchive and upload ipa from xcode instead of using application loader.
ERROR ITMS-90164/90046: Invalid Code Signing Entitlements has multiple solutions.

ERROR ITMS-90046 when trying to submit binary, using pods with use_frameworks

I am generating the release ipa using xcodebuild on command line(archive, export archive).
When uploading the binary using Application Loader I get the following error:
ERROR ITMS-90046: "Invalid Code Signing Entitlements. Your application
bundle's signature contains code signing entitlements that are not
supported on iOS. Specifically, value 'xyzabc.com.mycompany.companyapp' for
key 'application-identifier' in 'Payload/myapp.app/Frameworks/Mixpanel.framework/Mixpanel' is not supported. This value should be a string starting with your TEAMID,
followed by a dot '.', followed by the bundle identifier."
I have seen similar questions but workarounds but those have not worked for me.
Any help is appreciated.
Thx

iOS: Code Signing with Cocoapods

Just switched my app to use_frameworks with Cocoapods, everything builds fine and works fine on the phone and in our CI server. But when uploading the ipa to iTunes Connect, I get an error of
Invalid Code Signing Entitlements. Your application bundle's signature contains code signing entitlements that are not supported on iOS. Specifically, value '[CORRECT_APPLICATION_IDENTIFIER]' for key 'application-identifier' in '[PATH_TO_PODS_FRAMEWORK]' is not supported. This value should be a string starting with your TEAMID, followed by a dot '.', followed by the bundle identifier.
This error comes up for EACH framework used in the app (I have 10 pods in the app, and I have 10 errors on the screen) not sure what I should do. any ideas?

Resources