Skip to content

Commit

Permalink
Final commit for 4.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
JumioMobileTeam committed Sep 12, 2023
1 parent 74b3558 commit 2e88040
Show file tree
Hide file tree
Showing 77 changed files with 6,591 additions and 18,764 deletions.
6 changes: 0 additions & 6 deletions DemoApp/.buckconfig

This file was deleted.

56 changes: 0 additions & 56 deletions DemoApp/.flowconfig

This file was deleted.

32 changes: 23 additions & 9 deletions DemoApp/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ build/
*.mode2v3
!default.mode2v3
*.perspectivev3
*.xcarchive
!default.perspectivev3
xcuserdata
*.xccheckout
Expand All @@ -20,7 +21,7 @@ DerivedData
*.hmap
*.ipa
*.xcuserstate
project.xcworkspace
ios/.xcode.env.local

# Android/IntelliJ
#
Expand All @@ -29,25 +30,38 @@ build/
.gradle
local.properties
*.iml
*.hprof
.cxx/
*.keystore
!debug.keystore

# node.js
#
node_modules/
npm-debug.log
yarn-error.log

# BUCK
buck-out/
\.buckd/
*.keystore

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/

*/fastlane/report.xml
*/fastlane/Preview.html
*/fastlane/screenshots
**/fastlane/report.xml
**/fastlane/Preview.html
**/fastlane/screenshots
**/fastlane/test_output

# Bundle artifact
*.jsbundle

# Ruby / CocoaPods
/ios/Pods/
/vendor/bundle/

# Temporary files created by Metro to check the health of the file watcher
.metro-health-check*

# testing
/coverage
19 changes: 7 additions & 12 deletions DemoApp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,13 @@ post_install do |installer|
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
end
end
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
end
`sed -i -e $'s/__IPHONE_10_0/__IPHONE_13_0/' #{installer.sandbox.root}/RCT-Folly/folly/portability/Time.h`
path = "Pods/Target Support Files/Pods-DemoApp/Pods-DemoApp-frameworks.sh"
lines = File.readlines(path)
lines.insert(177, 'install_framework "${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/hermes.framework"'+"\n")
File.write(path, lines.join, mode: "w")
react_native_post_install(
installer,
config[:reactNativePath],
:mac_catalyst_enabled => false
)
__apply_Xcode_12_5_M1_post_install_workaround(installer)
end
```

Expand Down
Loading

0 comments on commit 2e88040

Please sign in to comment.