Skip to content

Commit

Permalink
Set CURRENT_PROJECT_VERSION to avoid validation error on submitting t…
Browse files Browse the repository at this point in the history
…o the app store

When you install this library via carthage, CFBundleVersion is missing because CURRENT_PROJECT_VERSION is not set.
This results in "Info.plist file is missing the required key: CFBundleVersion" error when you try to submit your app to the app store.

It looks like there are other libraries having this issue.
Flight-School/AnyCodable#20 (comment)
  • Loading branch information
kiyot committed Jul 11, 2020
1 parent a3a74bd commit cda7f81
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions DynamicBlurView.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,7 @@
OBJ_31 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CURRENT_PROJECT_VERSION = 1;
ENABLE_TESTABILITY = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand Down Expand Up @@ -375,6 +376,7 @@
OBJ_32 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CURRENT_PROJECT_VERSION = 1;
ENABLE_TESTABILITY = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand Down

0 comments on commit cda7f81

Please sign in to comment.