Skip to content

Commit d2db6e6

Browse files
authored
feat: bump tooling minimum requirements (#1518)
* feat: bump cocoapods minimum requirement >=1.16.0 * feat: bump ios-deploy minimum requirement >=1.12.2
1 parent 538fe8e commit d2db6e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/check_reqs.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ const XCODEBUILD_MIN_VERSION = '15.0.0';
2929
const XCODEBUILD_NOT_FOUND_MESSAGE =
3030
`Please install version ${XCODEBUILD_MIN_VERSION} or greater from App Store`;
3131

32-
const IOS_DEPLOY_MIN_VERSION = '1.9.2';
32+
const IOS_DEPLOY_MIN_VERSION = '1.12.2';
3333
const IOS_DEPLOY_NOT_FOUND_MESSAGE =
3434
`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'`;
3535

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

3939
/**

0 commit comments

Comments
 (0)