Skip to content

Commit

Permalink
fix: Various build errors related to APP_VERSION_IDENTIFIER & IS_QA_B…
Browse files Browse the repository at this point in the history
…UILD
  • Loading branch information
ArthurCarli committed Aug 31, 2024
1 parent 9f40cb2 commit de8e8ab
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions AutoFill/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>APP_VERSION_IDENTIFIER =
<string>$(APP_VERSION_IDENTIFIER =
<key>IS_QA_BUILD =
<string>$(IS_QA_BUILD =
<key>APP_VERSION_IDENTIFIER</key>
<string>$(APP_VERSION_IDENTIFIER)</string>
<key>IS_QA_BUILD</key>
<string>$(IS_QA_BUILD)</string>
<key>MODULE</key>
<string>AUTOFILL_EXTENSION</string>
<key>NSExtension</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ import Foundation
public extension Bundle {
var versionNumber: String { string(forKey: "CFBundleShortVersionString") ?? "0.0.0" }
var buildNumber: String { string(forKey: "CFBundleVersion") ?? "0" }
var versionIdentifier: String? { string(forKey: "APP_VERSION_IDENTIFIER =
var versionIdentifier: String? { string(forKey: "APP_VERSION_IDENTIFIER") }
var gitCommitHash: String? { string(forKey: "GIT_COMMIT_HASH") }
var isQaBuild: Bool { bool(forKey: "IS_QA_BUILD =
var isBetaBuild: Bool { bool(forKey: "IS_BETA_BUILD =
var isQaBuild: Bool { bool(forKey: "IS_QA_BUILD") }
var isBetaBuild: Bool { bool(forKey: "IS_BETA_BUILD")}

/// Get the full name of the current version e.g "1.0.0-dev" or "1.2.0"
var fullAppVersionName: String {
Expand Down
8 changes: 4 additions & 4 deletions Share/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>APP_VERSION_IDENTIFIER =
<string>$(APP_VERSION_IDENTIFIER =
<key>IS_QA_BUILD =
<string>$(IS_QA_BUILD =
<key>APP_VERSION_IDENTIFIER</key>
<string>$(APP_VERSION_IDENTIFIER)</string>
<key>IS_QA_BUILD</key>
<string>$(IS_QA_BUILD)</string>
<key>MODULE</key>
<string>SHARE_EXTENSION</string>
<key>NSExtension</key>
Expand Down
12 changes: 6 additions & 6 deletions iOS/App/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>APP_VERSION_IDENTIFIER =
<string>$(APP_VERSION_IDENTIFIER =
<key>APP_VERSION_IDENTIFIER</key>
<string>$(APP_VERSION_IDENTIFIER)</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
Expand All @@ -19,10 +19,10 @@
</array>
<key>GIT_COMMIT_HASH</key>
<string></string>
<key>IS_BETA_BUILD =
<string>$(IS_BETA_BUILD =
<key>IS_QA_BUILD =
<string>$(IS_QA_BUILD =
<key>IS_BETA_BUILD</key>
<string>$(IS_BETA_BUILD)</string>
<key>IS_QA_BUILD</key>
<string>$(IS_QA_BUILD)</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>ITSEncryptionExportComplianceCode</key>
Expand Down

0 comments on commit de8e8ab

Please sign in to comment.