Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ionic-team/capacitor
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7.0.1
Choose a base ref
...
head repository: ionic-team/capacitor
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7.1.0
Choose a head ref
  • 13 commits
  • 35 files changed
  • 10 contributors

Commits on Feb 3, 2025

  1. docs(CapApp-SPM/README): fix typo (#7860)

    rbalet authored Feb 3, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    55d002c View commit details

Commits on Feb 6, 2025

  1. fix(ios): listen for CapacitorViewDidAppear (#7850)

    jcesarmobile authored Feb 6, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    e24ffb7 View commit details
  2. fix(ios): don't check isMediaExtension on range requests (#7868)

    jcesarmobile authored Feb 6, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    028caa5 View commit details

Commits on Feb 7, 2025

  1. fix(android): add EdgeToEdge compatibility (#7871)

    markemer authored Feb 7, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    64a8bc4 View commit details
  2. feat(cli): add more configurations to build command (#7769)

    Co-authored-by: jcesarmobile <jcesarmobile@gmail.com>
    Co-authored-by: Mark Anderson <mark@ionic.io>
    Co-authored-by: Mark Anderson <mark.anderson@outsystems.com>
    4 people authored Feb 7, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    90f95d1 View commit details

Commits on Feb 19, 2025

  1. fix(android): sanitize portable file name (#7894)

    shipley-dcc authored Feb 19, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    5f09297 View commit details

Commits on Feb 24, 2025

  1. feat: Add function to inject external JS into WebView before document…

    … load (#7864)
    theproducer authored Feb 24, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    ec0954c View commit details

Commits on Mar 5, 2025

  1. fix(http): boundary not added for Request objects (#7897)

    jcesarmobile authored Mar 5, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    bdaa6f3 View commit details
  2. fix(cli): don't run bundle if not installed (#7896)

    jcesarmobile authored Mar 5, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    ee55f6c View commit details
  3. feat(android): add adjustMarginsForEdgeToEdge configuration option (#…

    …7885)
    
    Co-authored-by: jcesarmobile <jcesarmobile@gmail.com>
    markemer and jcesarmobile authored Mar 5, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    1ea86d1 View commit details
  4. fix(core): use getPlatform instead of platform in cordova.js (#7902)

    scr2em authored Mar 5, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    277db7b View commit details

Commits on Mar 10, 2025

  1. fix(ios): Reset plugin listeners when WebView process is terminated (#…

    gabeschine authored Mar 10, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    d039157 View commit details

Commits on Mar 12, 2025

  1. Release 7.1.0

    Github Workflow (on behalf of markemer) committed Mar 12, 2025
    Copy the full SHA
    17fe053 View commit details
Showing with 465 additions and 61 deletions.
  1. +19 −0 CHANGELOG.md
  2. +13 −0 android/CHANGELOG.md
  3. +9 −0 android/capacitor/src/main/assets/native-bridge.js
  4. +19 −3 android/capacitor/src/main/java/com/getcapacitor/Bridge.java
  5. +8 −0 android/capacitor/src/main/java/com/getcapacitor/CapConfig.java
  6. +37 −0 android/capacitor/src/main/java/com/getcapacitor/CapacitorWebView.java
  7. +12 −1 android/capacitor/src/main/java/com/getcapacitor/FileUtils.java
  8. +15 −0 android/capacitor/src/main/java/com/getcapacitor/JSExport.java
  9. +23 −3 android/capacitor/src/main/java/com/getcapacitor/JSInjector.java
  10. +2 −2 android/package.json
  11. +11 −0 cli/CHANGELOG.md
  12. +1 −1 cli/package.json
  13. +7 −1 cli/src/config.ts
  14. +40 −0 cli/src/declarations.ts
  15. +17 −0 cli/src/definitions.ts
  16. +45 −0 cli/src/index.ts
  17. +64 −39 cli/src/ios/build.ts
  18. +1 −1 cli/src/ios/update.ts
  19. +12 −0 cli/src/tasks/build.ts
  20. +1 −0 cli/src/tasks/copy.ts
  21. +7 −0 core/CHANGELOG.md
  22. +1 −1 core/cordova.js
  23. +11 −0 core/native-bridge.ts
  24. +1 −1 core/package.json
  25. +2 −2 ios-spm-template/App/CapApp-SPM/README.md
  26. +13 −0 ios/CHANGELOG.md
  27. +2 −0 ios/Capacitor/Capacitor/CAPBridgeProtocol.swift
  28. +12 −1 ios/Capacitor/Capacitor/CAPBridgeViewController.swift
  29. +29 −0 ios/Capacitor/Capacitor/CapacitorBridge.swift
  30. +14 −0 ios/Capacitor/Capacitor/JSExport.swift
  31. +1 −2 ios/Capacitor/Capacitor/WebViewAssetHandler.swift
  32. +4 −0 ios/Capacitor/Capacitor/WebViewDelegationHandler.swift
  33. +9 −0 ios/Capacitor/Capacitor/assets/native-bridge.js
  34. +2 −2 ios/package.json
  35. +1 −1 lerna.json
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,25 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [7.1.0](https://github.com/ionic-team/capacitor/compare/7.0.1...7.1.0) (2025-03-12)

### Bug Fixes

- **android:** add EdgeToEdge compatibility ([#7871](https://github.com/ionic-team/capacitor/issues/7871)) ([64a8bc4](https://github.com/ionic-team/capacitor/commit/64a8bc40de2522c75a94a40cba6c8ccd82481cb8))
- **android:** sanitize portable file name ([#7894](https://github.com/ionic-team/capacitor/issues/7894)) ([5f09297](https://github.com/ionic-team/capacitor/commit/5f092970e33da1ec896efc4e2a5ae3fb77fca658))
- **cli:** don't run bundle if not installed ([#7896](https://github.com/ionic-team/capacitor/issues/7896)) ([ee55f6c](https://github.com/ionic-team/capacitor/commit/ee55f6c54639c1a61fa4f9eed1f366ba2d968b86))
- **core:** use getPlatform instead of platform in cordova.js ([#7902](https://github.com/ionic-team/capacitor/issues/7902)) ([277db7b](https://github.com/ionic-team/capacitor/commit/277db7b48caaf870eefdf701ea99332c4338d7ed))
- **http:** boundary not added for Request objects ([#7897](https://github.com/ionic-team/capacitor/issues/7897)) ([bdaa6f3](https://github.com/ionic-team/capacitor/commit/bdaa6f3c38c33f3a021ac61f2de89101a5b66cff))
- **ios:** don't check isMediaExtension on range requests ([#7868](https://github.com/ionic-team/capacitor/issues/7868)) ([028caa5](https://github.com/ionic-team/capacitor/commit/028caa5378d359fb1004098aa93a24ad0f49a4ae))
- **ios:** listen for CapacitorViewDidAppear ([#7850](https://github.com/ionic-team/capacitor/issues/7850)) ([e24ffb7](https://github.com/ionic-team/capacitor/commit/e24ffb7d4de0bf3d53e92537f21c864f121c1fad))
- **ios:** Reset plugin listeners when WebView process is terminated ([#7905](https://github.com/ionic-team/capacitor/issues/7905)) ([d039157](https://github.com/ionic-team/capacitor/commit/d0391576726955b2c1b484f1ca9a03465b9ef67e))

### Features

- Add function to inject external JS into WebView before document load ([#7864](https://github.com/ionic-team/capacitor/issues/7864)) ([ec0954c](https://github.com/ionic-team/capacitor/commit/ec0954c197543e913939f3ab9c4bcb172bfa3530))
- **android:** add adjustMarginsForEdgeToEdge configuration option ([#7885](https://github.com/ionic-team/capacitor/issues/7885)) ([1ea86d1](https://github.com/ionic-team/capacitor/commit/1ea86d166afd315e72847c5e734a8c175fb90e04))
- **cli:** add more configurations to build command ([#7769](https://github.com/ionic-team/capacitor/issues/7769)) ([90f95d1](https://github.com/ionic-team/capacitor/commit/90f95d1a829f3d87cb46af827b5bfaac319a9694))

## [7.0.1](https://github.com/ionic-team/capacitor/compare/7.0.0...7.0.1) (2025-01-21)

### Bug Fixes
13 changes: 13 additions & 0 deletions android/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [7.1.0](https://github.com/ionic-team/capacitor/compare/7.0.1...7.1.0) (2025-03-12)

### Bug Fixes

- **android:** add EdgeToEdge compatibility ([#7871](https://github.com/ionic-team/capacitor/issues/7871)) ([64a8bc4](https://github.com/ionic-team/capacitor/commit/64a8bc40de2522c75a94a40cba6c8ccd82481cb8))
- **android:** sanitize portable file name ([#7894](https://github.com/ionic-team/capacitor/issues/7894)) ([5f09297](https://github.com/ionic-team/capacitor/commit/5f092970e33da1ec896efc4e2a5ae3fb77fca658))
- **http:** boundary not added for Request objects ([#7897](https://github.com/ionic-team/capacitor/issues/7897)) ([bdaa6f3](https://github.com/ionic-team/capacitor/commit/bdaa6f3c38c33f3a021ac61f2de89101a5b66cff))

### Features

- Add function to inject external JS into WebView before document load ([#7864](https://github.com/ionic-team/capacitor/issues/7864)) ([ec0954c](https://github.com/ionic-team/capacitor/commit/ec0954c197543e913939f3ab9c4bcb172bfa3530))
- **android:** add adjustMarginsForEdgeToEdge configuration option ([#7885](https://github.com/ionic-team/capacitor/issues/7885)) ([1ea86d1](https://github.com/ionic-team/capacitor/commit/1ea86d166afd315e72847c5e734a8c175fb90e04))

## [7.0.1](https://github.com/ionic-team/capacitor/compare/7.0.0...7.0.1) (2025-01-21)

**Note:** Version bump only for package @capacitor/android
9 changes: 9 additions & 0 deletions android/capacitor/src/main/assets/native-bridge.js
Original file line number Diff line number Diff line change
@@ -468,6 +468,15 @@ var nativeBridge = (function (exports) {
if (doPatchHttp) {
// fetch patch
window.fetch = async (resource, options) => {
const headers = new Headers(options === null || options === void 0 ? void 0 : options.headers);
const contentType = headers.get('Content-Type') || headers.get('content-type');
if ((options === null || options === void 0 ? void 0 : options.body) instanceof FormData &&
(contentType === null || contentType === void 0 ? void 0 : contentType.includes('multipart/form-data')) &&
!contentType.includes('boundary')) {
headers.delete('Content-Type');
headers.delete('content-type');
options.headers = headers;
}
const request = new Request(resource, options);
if (request.url.startsWith(`${cap.getServerUrl()}/`)) {
return win.CapacitorWebFetch(resource, options);
22 changes: 19 additions & 3 deletions android/capacitor/src/main/java/com/getcapacitor/Bridge.java
Original file line number Diff line number Diff line change
@@ -121,6 +121,8 @@ public class Bridge {
private HostMask appAllowNavigationMask;
private Set<String> allowedOriginRules = new HashSet<String>();
private ArrayList<String> authorities = new ArrayList<>();
private ArrayList<String> miscJSFileInjections = new ArrayList<String>();
private Boolean canInjectJS = true;
// A reference to the main WebView for the app
private final WebView webView;
public final MockCordovaInterfaceImpl cordovaInterface;
@@ -1017,14 +1019,28 @@ private JSInjector getJSInjector() {
String cordovaPluginsJS = JSExport.getCordovaPluginJS(context);
String cordovaPluginsFileJS = JSExport.getCordovaPluginsFileJS(context);
String localUrlJS = "window.WEBVIEW_SERVER_URL = '" + localUrl + "';";
String miscJS = JSExport.getMiscFileJS(miscJSFileInjections, context);

return new JSInjector(globalJS, bridgeJS, pluginJS, cordovaJS, cordovaPluginsJS, cordovaPluginsFileJS, localUrlJS);
miscJSFileInjections = new ArrayList<>();
canInjectJS = false;

return new JSInjector(globalJS, bridgeJS, pluginJS, cordovaJS, cordovaPluginsJS, cordovaPluginsFileJS, localUrlJS, miscJS);
} catch (Exception ex) {
Logger.error("Unable to export Capacitor JS. App will not function!", ex);
}
return null;
}

/**
* Inject JavaScript from an external file before the WebView loads.
* @param path relative to public folder
*/
public void injectScriptBeforeLoad(String path) {
if (canInjectJS) {
miscJSFileInjections.add(path);
}
}

/**
* Restore any saved bundle state data
* @param savedInstanceState
@@ -1589,9 +1605,9 @@ public Bridge create() {
config
);

if (webView instanceof CapacitorWebView) {
CapacitorWebView capacitorWebView = (CapacitorWebView) webView;
if (webView instanceof CapacitorWebView capacitorWebView) {
capacitorWebView.setBridge(bridge);
capacitorWebView.edgeToEdgeHandler(bridge);
}

bridge.setCordovaWebView(mockWebView);
Original file line number Diff line number Diff line change
@@ -54,6 +54,7 @@ public class CapConfig {
private String errorPath;
private boolean zoomableWebView = false;
private boolean resolveServiceWorkerRequests = true;
private String adjustMarginsForEdgeToEdge = "disable";

// Embedded
private String startPath;
@@ -181,6 +182,7 @@ private CapConfig(Builder builder) {
this.errorPath = builder.errorPath;
this.zoomableWebView = builder.zoomableWebView;
this.resolveServiceWorkerRequests = builder.resolveServiceWorkerRequests;
this.adjustMarginsForEdgeToEdge = builder.adjustMarginsForEdgeToEdge;

// Embedded
this.startPath = builder.startPath;
@@ -285,6 +287,7 @@ private void deserializeConfig(@Nullable Context context) {
webContentsDebuggingEnabled = JSONUtils.getBoolean(configJSON, "android.webContentsDebuggingEnabled", isDebug);
zoomableWebView = JSONUtils.getBoolean(configJSON, "android.zoomEnabled", JSONUtils.getBoolean(configJSON, "zoomEnabled", false));
resolveServiceWorkerRequests = JSONUtils.getBoolean(configJSON, "android.resolveServiceWorkerRequests", true);
adjustMarginsForEdgeToEdge = JSONUtils.getString(configJSON, "android.adjustMarginsForEdgeToEdge", "disable");

String logBehavior = JSONUtils.getString(
configJSON,
@@ -401,6 +404,10 @@ public boolean isUsingLegacyBridge() {
return useLegacyBridge;
}

public String adjustMarginsForEdgeToEdge() {
return adjustMarginsForEdgeToEdge;
}

public int getMinWebViewVersion() {
if (minWebViewVersion < MINIMUM_ANDROID_WEBVIEW_VERSION) {
Logger.warn("Specified minimum webview version is too low, defaulting to " + MINIMUM_ANDROID_WEBVIEW_VERSION);
@@ -581,6 +588,7 @@ public static class Builder {
private int minHuaweiWebViewVersion = DEFAULT_HUAWEI_WEBVIEW_VERSION;
private boolean zoomableWebView = false;
private boolean resolveServiceWorkerRequests = true;
private String adjustMarginsForEdgeToEdge = "disable";

// Embedded
private String startPath = null;
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
package com.getcapacitor;

import android.content.Context;
import android.os.Build;
import android.util.AttributeSet;
import android.util.TypedValue;
import android.view.KeyEvent;
import android.view.inputmethod.BaseInputConnection;
import android.view.inputmethod.EditorInfo;
import android.view.inputmethod.InputConnection;
import android.webkit.WebView;
import androidx.core.graphics.Insets;
import androidx.core.view.ViewCompat;
import androidx.core.view.WindowInsetsCompat;

public class CapacitorWebView extends WebView {

@@ -49,4 +54,36 @@ public boolean dispatchKeyEvent(KeyEvent event) {
}
return super.dispatchKeyEvent(event);
}

public void edgeToEdgeHandler(Bridge bridge) {
String configEdgeToEdge = bridge.getConfig().adjustMarginsForEdgeToEdge();

if (configEdgeToEdge.equals("disable")) return;

boolean autoMargins = false;
boolean forceMargins = configEdgeToEdge.equals("force");

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.VANILLA_ICE_CREAM && configEdgeToEdge.equals("auto")) {
TypedValue value = new TypedValue();
boolean foundOptOut = getContext().getTheme().resolveAttribute(android.R.attr.windowOptOutEdgeToEdgeEnforcement, value, true);
boolean optOutValue = value.data != 0; // value is set to -1 on true as of Android 15, so we have to do this.

autoMargins = !(foundOptOut && optOutValue);
}

if (forceMargins || autoMargins) {
ViewCompat.setOnApplyWindowInsetsListener(this, (v, windowInsets) -> {
Insets insets = windowInsets.getInsets(WindowInsetsCompat.Type.systemBars());
MarginLayoutParams mlp = (MarginLayoutParams) v.getLayoutParams();
mlp.leftMargin = insets.left;
mlp.bottomMargin = insets.bottom;
mlp.rightMargin = insets.right;
mlp.topMargin = insets.top;
v.setLayoutParams(mlp);

// Don't pass window insets to children
return WindowInsetsCompat.CONSUMED;
});
}
}
}
13 changes: 12 additions & 1 deletion android/capacitor/src/main/java/com/getcapacitor/FileUtils.java
Original file line number Diff line number Diff line change
@@ -219,7 +219,8 @@ private static String getCopyFilePath(Uri uri, Context context) {
int nameIndex = cursor.getColumnIndex(OpenableColumns.DISPLAY_NAME);
cursor.moveToFirst();
String name = (cursor.getString(nameIndex));
File file = new File(context.getFilesDir(), name);
String fileName = sanitizeFilename(name);
File file = new File(context.getFilesDir(), fileName);
try {
InputStream inputStream = context.getContentResolver().openInputStream(uri);
FileOutputStream outputStream = new FileOutputStream(file);
@@ -289,4 +290,14 @@ private static String getPathToNonPrimaryVolume(Context context, String tag) {
}
return null;
}

private static String sanitizeFilename(String displayName) {
String[] badCharacters = new String[] { "..", "/" };
String[] segments = displayName.split("/");
String fileName = segments[segments.length - 1];
for (String suspString : badCharacters) {
fileName = fileName.replace(suspString, "_");
}
return fileName;
}
}
15 changes: 15 additions & 0 deletions android/capacitor/src/main/java/com/getcapacitor/JSExport.java
Original file line number Diff line number Diff line change
@@ -21,6 +21,21 @@ public static String getGlobalJS(Context context, boolean loggingEnabled, boolea
return "window.Capacitor = { DEBUG: " + isDebug + ", isLoggingEnabled: " + loggingEnabled + ", Plugins: {} };";
}

public static String getMiscFileJS(ArrayList<String> paths, Context context) {
List<String> lines = new ArrayList<>();

for (String path : paths) {
try {
String fileContent = readFileFromAssets(context.getAssets(), "public/" + path);
lines.add(fileContent);
} catch (IOException ex) {
Logger.error("Unable to read public/" + path);
}
}

return TextUtils.join("\n", lines);
}

public static String getCordovaJS(Context context) {
String fileContent = "";
try {
26 changes: 23 additions & 3 deletions android/capacitor/src/main/java/com/getcapacitor/JSInjector.java
Original file line number Diff line number Diff line change
@@ -20,6 +20,7 @@ class JSInjector {
private String cordovaPluginsJS;
private String cordovaPluginsFileJS;
private String localUrlJS;
private String miscJS;

public JSInjector(
String globalJS,
@@ -29,6 +30,19 @@ public JSInjector(
String cordovaPluginsJS,
String cordovaPluginsFileJS,
String localUrlJS
) {
this(globalJS, bridgeJS, pluginJS, cordovaJS, cordovaPluginsJS, cordovaPluginsFileJS, localUrlJS, null);
}

public JSInjector(
String globalJS,
String bridgeJS,
String pluginJS,
String cordovaJS,
String cordovaPluginsJS,
String cordovaPluginsFileJS,
String localUrlJS,
String miscJS
) {
this.globalJS = globalJS;
this.bridgeJS = bridgeJS;
@@ -37,6 +51,7 @@ public JSInjector(
this.cordovaPluginsJS = cordovaPluginsJS;
this.cordovaPluginsFileJS = cordovaPluginsFileJS;
this.localUrlJS = localUrlJS;
this.miscJS = miscJS;
}

/**
@@ -45,7 +60,7 @@ public JSInjector(
* @return
*/
public String getScriptString() {
return (
String scriptString =
globalJS +
"\n\n" +
localUrlJS +
@@ -58,8 +73,13 @@ public String getScriptString() {
"\n\n" +
cordovaPluginsFileJS +
"\n\n" +
cordovaPluginsJS
);
cordovaPluginsJS;

if (miscJS != null) {
scriptString += "\n\n" + miscJS;
}

return scriptString;
}

/**
4 changes: 2 additions & 2 deletions android/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@capacitor/android",
"version": "7.0.1",
"version": "7.1.0",
"description": "Capacitor: Cross-platform apps with JavaScript and the web",
"homepage": "https://capacitorjs.com",
"author": "Ionic Team <hi@ionic.io> (https://ionic.io)",
@@ -23,7 +23,7 @@
"verify": "./gradlew clean lint build test -b capacitor/build.gradle"
},
"peerDependencies": {
"@capacitor/core": "^7.0.0"
"@capacitor/core": "^7.1.0"
},
"publishConfig": {
"access": "public"
11 changes: 11 additions & 0 deletions cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [7.1.0](https://github.com/ionic-team/capacitor/compare/7.0.1...7.1.0) (2025-03-12)

### Bug Fixes

- **cli:** don't run bundle if not installed ([#7896](https://github.com/ionic-team/capacitor/issues/7896)) ([ee55f6c](https://github.com/ionic-team/capacitor/commit/ee55f6c54639c1a61fa4f9eed1f366ba2d968b86))

### Features

- **android:** add adjustMarginsForEdgeToEdge configuration option ([#7885](https://github.com/ionic-team/capacitor/issues/7885)) ([1ea86d1](https://github.com/ionic-team/capacitor/commit/1ea86d166afd315e72847c5e734a8c175fb90e04))
- **cli:** add more configurations to build command ([#7769](https://github.com/ionic-team/capacitor/issues/7769)) ([90f95d1](https://github.com/ionic-team/capacitor/commit/90f95d1a829f3d87cb46af827b5bfaac319a9694))

## [7.0.1](https://github.com/ionic-team/capacitor/compare/7.0.0...7.0.1) (2025-01-21)

### Bug Fixes
2 changes: 1 addition & 1 deletion cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@capacitor/cli",
"version": "7.0.1",
"version": "7.1.0",
"description": "Capacitor: Cross-platform apps with JavaScript and the web",
"homepage": "https://capacitorjs.com",
"author": "Ionic Team <hi@ionic.io> (https://ionic.io)",
8 changes: 7 additions & 1 deletion cli/src/config.ts
Original file line number Diff line number Diff line change
@@ -267,7 +267,12 @@ async function loadIOSConfig(rootDir: string, extConfig: ExternalConfig): Promis
const podPath = lazy(() => determineGemfileOrCocoapodPath(rootDir, platformDirAbs, nativeProjectDirAbs));
const webDirAbs = lazy(() => determineIOSWebDirAbs(nativeProjectDirAbs, nativeTargetDirAbs, nativeXcodeProjDirAbs));
const cordovaPluginsDir = 'capacitor-cordova-ios-plugins';

const buildOptions = {
xcodeExportMethod: extConfig.ios?.buildOptions?.exportMethod,
xcodeSigningStyle: extConfig.ios?.buildOptions?.signingStyle,
signingCertificate: extConfig.ios?.buildOptions?.signingCertificate,
provisioningProfile: extConfig.ios?.buildOptions?.provisioningProfile,
};
return {
name,
minVersion: '14.0',
@@ -287,6 +292,7 @@ async function loadIOSConfig(rootDir: string, extConfig: ExternalConfig): Promis
webDir: lazy(async () => relative(platformDirAbs, await webDirAbs)),
webDirAbs,
podPath,
buildOptions,
};
}

Loading