Skip to content

Commit f4e876e

Browse files
committed
Improved environment variables
1 parent c8eb074 commit f4e876e

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -88,3 +88,4 @@ fastlane/test_output
8888
# https://github.com/johnno1962/injectionforxcode
8989

9090
iOSInjectionProject/
91+
env-variables.sh

LensCreditCardsDemo.xcodeproj/project.pbxproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@
195195
);
196196
runOnlyForDeploymentPostprocessing = 0;
197197
shellPath = /bin/sh;
198-
shellScript = "# Type a script or drag a script file from your workspace to insert its path.\nINFO_PLIST=\"$BUILT_PRODUCTS_DIR/$INFOPLIST_PATH\"\n/usr/libexec/PlistBuddy -c \"Add :VERYFI_CLIENT_ID string $VERYFI_CLIENT_ID\" \"$INFO_PLIST\"\n/usr/libexec/PlistBuddy -c \"Add :VERYFI_USERNAME string $VERYFI_USERNAME\" \"$INFO_PLIST\"\n/usr/libexec/PlistBuddy -c \"Add :VERYFI_API_KEY string $VERYFI_API_KEY\" \"$INFO_PLIST\"\n/usr/libexec/PlistBuddy -c \"Add :VERYFI_URL string $VERYFI_URL\" \"$INFO_PLIST\"\n";
198+
shellScript = "# Type a script or drag a script file from your workspace to insert its path.\nif [ -f ./env-variables.sh ]\nthen\nsource ./env-variables.sh\nfi\nINFO_PLIST=\"$BUILT_PRODUCTS_DIR/$INFOPLIST_PATH\"\n/usr/libexec/PlistBuddy -c \"Add :VERYFI_CLIENT_ID string $VERYFI_CLIENT_ID\" \"$INFO_PLIST\"\n/usr/libexec/PlistBuddy -c \"Add :VERYFI_USERNAME string $VERYFI_USERNAME\" \"$INFO_PLIST\"\n/usr/libexec/PlistBuddy -c \"Add :VERYFI_API_KEY string $VERYFI_API_KEY\" \"$INFO_PLIST\"\n/usr/libexec/PlistBuddy -c \"Add :VERYFI_URL string $VERYFI_URL\" \"$INFO_PLIST\"\n";
199199
};
200200
DD88E022C9E1900C82AE2E20 /* [CP] Check Pods Manifest.lock */ = {
201201
isa = PBXShellScriptBuildPhase;

Podfile.lock

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
PODS:
2+
- AWSCore (2.28.0)
3+
- AWSS3 (2.28.0):
4+
- AWSCore (= 2.28.0)
5+
- VeryfiLens-CreditCards (1.6.5.4):
6+
- AWSS3
7+
8+
DEPENDENCIES:
9+
- VeryfiLens-CreditCards (= 1.6.5.4)
10+
11+
SPEC REPOS:
12+
https://github.com/CocoaPods/Specs.git:
13+
- AWSCore
14+
- AWSS3
15+
https://repo.veryfi.com/shared/lens/veryfi-lens-podspec.git:
16+
- VeryfiLens-CreditCards
17+
18+
SPEC CHECKSUMS:
19+
AWSCore: 0ebe9ba8a459893cdf268ce0bae61875efd0182b
20+
AWSS3: 40a2bed039c432e580f1d4b4f740ca80f0610a9e
21+
VeryfiLens-CreditCards: af9426165ece343b9321627bdb486572b22b8c4d
22+
23+
PODFILE CHECKSUM: 0bdd667fc02d0d7ad0456424832134814b8d5774
24+
25+
COCOAPODS: 1.11.3

0 commit comments

Comments
 (0)