Comparing version 10.2.0 to 11.0.0
{ | ||
"name": "forceios", | ||
"version": "10.2.0", | ||
"version": "11.0.0", | ||
"description": "Utilities for creating mobile apps based on the Salesforce Mobile SDK for iOS", | ||
@@ -5,0 +5,0 @@ "keywords": [ "mobilesdk", "ios", "salesforce", "mobile", "sdk" ], |
@@ -31,3 +31,3 @@ /* | ||
var VERSION= '10.2.0'; | ||
var VERSION= '11.0.0'; | ||
@@ -65,6 +65,6 @@ module.exports = { | ||
// pluginRepoUri: 'https://github.com/forcedotcom/SalesforceMobileSDK-CordovaPlugin#dev', // dev | ||
minVersion: '11.0.0', | ||
minVersion: '12.0.0', | ||
pluginRepoUri: 'salesforce-mobilesdk-cordova-plugin@v' + VERSION, // GA | ||
platformVersion: { | ||
ios: '6.2.0', | ||
ios: '6.3.0', | ||
android: '11.0.0' | ||
@@ -71,0 +71,0 @@ } |
@@ -112,3 +112,3 @@ /* | ||
if (config.platform === 'ios') { | ||
if (config.platform.split(',').indexOf('ios') != -1) { | ||
if (utils.getToolVersion('xcodebuild -version') < 14000000) { | ||
@@ -177,5 +177,14 @@ // Use legacy build for xcode 13 and older | ||
" end\n" + | ||
"end" + | ||
"\n" + | ||
"post_install do |installer|\n" + | ||
" installer.pods_project.targets.each do |target|\n" + | ||
" if target.deployment_target.to_i < 9\n" + | ||
" target.build_configurations.each do |config|\n" + | ||
" config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'\n" + | ||
" end\n" + | ||
" end\n" + | ||
" end\n" + | ||
"end" | ||
utils.logInfo('Updating Podfile for project ' + config.appname); | ||
@@ -182,0 +191,0 @@ fs.writeFileSync(podfilePath, originalPodfileContent.replace("use_frameworks!","") + preInstallCode); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
109916
2496