Reputation: 51
I've prepared my app to AppStore, successfully built it in Xcode and then try to Validate and got an error: "App Store Connect Operation Error No suitable application records were found. Verify your bundle identifier 'io.flutter.flutter' is correct."
I use another identifier in the app. It is the 2 build of version, first was successfully uploaded to TestFlight two weeks ago. What's wrong?
Upvotes: 0
Views: 1067
Reputation: 51
It's necessary to replace the value for CFBundleExecutable from $(FLUTTER_BUILD_NAME) to $(EXECUTABLE_NAME) in the file ios/Runner/Info.plist
Upvotes: 1
Reputation: 4552
Your bundle identifier has been set wrongly (io.flutter.flutter
). It needs to match the bundle identifier from the developer portal and the app created on App Store Connect. Change it to the one you use in the app.
Upvotes: 1