Skip to content

Commit

Permalink
feat: bump tooling minimum requirements (#1518)
Browse files Browse the repository at this point in the history
* feat: bump cocoapods minimum requirement >=1.16.0
* feat: bump ios-deploy minimum requirement >=1.12.2
  • Loading branch information
erisu authored Dec 26, 2024
1 parent 538fe8e commit d2db6e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/check_reqs.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ const XCODEBUILD_MIN_VERSION = '15.0.0';
const XCODEBUILD_NOT_FOUND_MESSAGE =
`Please install version ${XCODEBUILD_MIN_VERSION} or greater from App Store`;

const IOS_DEPLOY_MIN_VERSION = '1.9.2';
const IOS_DEPLOY_MIN_VERSION = '1.12.2';
const IOS_DEPLOY_NOT_FOUND_MESSAGE =
`Please download, build and install version ${IOS_DEPLOY_MIN_VERSION} or greater from https://github.com/ios-control/ios-deploy into your path, or do 'npm install -g ios-deploy'`;

const COCOAPODS_MIN_VERSION = '1.8.0';
const COCOAPODS_MIN_VERSION = '1.16.0';
const COCOAPODS_NOT_FOUND_MESSAGE = `Please install version ${COCOAPODS_MIN_VERSION} or greater from https://cocoapods.org/`;

/**
Expand Down

0 comments on commit d2db6e6

Please sign in to comment.