Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ dependencies {
implementation "androidx.browser:browser:1.8.0"
implementation 'io.reactivex.rxjava3:rxkotlin:3.0.1'
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'com.frontegg.sdk:android:1.3.34'
implementation 'com.frontegg.sdk:android:1.3.35'
testImplementation "junit:junit:4.13.2"
}

Expand Down
8 changes: 4 additions & 4 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ For full documentation, visit the Frontegg Developer Portal:

The React Native wrapper depends on the underlying native SDKs:

- On **Android**, the plugin and example app use `com.frontegg.sdk:android:1.3.34`.
- On **iOS**, the plugin depends on `FronteggSwift` **1.3.10** via CocoaPods.
- On **Android**, the plugin and example app use `com.frontegg.sdk:android:1.3.35`.
- On **iOS**, the plugin depends on `FronteggSwift` **1.3.11** via CocoaPods.

After upgrading, run `pod install` in your iOS project and rebuild both platforms.

Expand All @@ -49,8 +49,8 @@ After upgrading, run `pod install` in your iOS project and rebuild both platform

The React Native wrapper depends on the underlying native SDKs:

- On **Android**, the plugin and example app use `com.frontegg.sdk:android:1.3.34`.
- On **iOS**, the plugin depends on `FronteggSwift` **1.3.10** via CocoaPods.
- On **Android**, the plugin and example app use `com.frontegg.sdk:android:1.3.35`.
- On **iOS**, the plugin depends on `FronteggSwift` **1.3.11** via CocoaPods.

After upgrading, run `pod install` in your iOS project and rebuild both platforms.

Expand Down
4 changes: 2 additions & 2 deletions docs/advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Passkeys provide a seamless, passwordless login experience using WebAuthn and pl

1. **iOS Version**: Ensure your project targets iOS 15 or later to support the necessary WebAuthn APIs.
2. **Android**: Use Android SDK 26+.
3. **Frontegg SDK Version**: Use Frontegg iOS SDK version 1.3.10 or later.
3. **Frontegg SDK Version**: Use Frontegg iOS SDK version 1.3.11 or later.

#### Android setup

Expand All @@ -63,7 +63,7 @@ Passkeys provide a seamless, passwordless login experience using WebAuthn and pl
```groovy
dependencies {
implementation 'androidx.browser:browser:1.8.0'
implementation 'com.frontegg.sdk:android:1.3.34'
implementation 'com.frontegg.sdk:android:1.3.35'
}
```

Expand Down
4 changes: 2 additions & 2 deletions docs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ yarn ios --simulator "iPhone 17 Pro Max"

If a physical iPhone is connected, React Native may target the device and fail on code signing (`com.your.bundle`). Use `--simulator` or disconnect the device.

The `frontegg_spm` helper pins **FronteggSwift 1.3.10** from `https://github.com/frontegg/frontegg-ios-swift.git`, links it to the **FronteggRN** CocoaPods target, and configures the app Xcode project so SPM resolves without duplicate symbol errors at link time.
The `frontegg_spm` helper pins **FronteggSwift 1.3.11** from `https://github.com/frontegg/frontegg-ios-swift.git`, links it to the **FronteggRN** CocoaPods target, and configures the app Xcode project so SPM resolves without duplicate symbol errors at link time.

> **Embedded mode step-up:** `FronteggSwift` **1.3.10** routes `stepUp()` through the embedded `WKWebView` when `embeddedMode` is enabled (instead of `ASWebAuthenticationSession`), so MFA/step-up reuses the existing web session. Set `<key>embeddedMode</key><true/>` in `Frontegg.plist` if you use the embedded login box.
> **Embedded mode step-up:** `FronteggSwift` **1.3.11** routes `stepUp()` through the embedded `WKWebView` when `embeddedMode` is enabled (instead of `ASWebAuthenticationSession`), so MFA/step-up reuses the existing web session. Set `<key>embeddedMode</key><true/>` in `Frontegg.plist` if you use the embedded login box.

#### Step-up from JavaScript

Expand Down
2 changes: 1 addition & 1 deletion example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ android {
dependencies {
// The version of react-native is set by the React Native Gradle Plugin
implementation("com.facebook.react:react-android")
implementation 'com.frontegg.sdk:android:1.3.34'
implementation 'com.frontegg.sdk:android:1.3.35'
debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}")
debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
exclude group:'com.squareup.okhttp3', module:'okhttp'
Expand Down
2 changes: 1 addition & 1 deletion ios/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ let package = Package(
],
products: [],
dependencies: [
.package(url: "https://github.com/frontegg/frontegg-ios-swift.git", exact: "1.3.10"),
.package(url: "https://github.com/frontegg/frontegg-ios-swift.git", exact: "1.3.11"),
],
targets: []
)
4 changes: 2 additions & 2 deletions ios/frontegg_spm.rb
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# frozen_string_literal: true

# Links FronteggSwift (SPM 1.3.10) to the FronteggRN CocoaPods target after `pod install`.
# Links FronteggSwift (SPM 1.3.11) to the FronteggRN CocoaPods target after `pod install`.
# Patches Pods.xcodeproj/project.pbxproj as text — xcodeproj gem save() breaks Xcode 26.
module FronteggSPM
PACKAGE_URL = 'https://github.com/frontegg/frontegg-ios-swift.git'
PACKAGE_VERSION = '1.3.10'
PACKAGE_VERSION = '1.3.11'
PRODUCT_NAME = 'FronteggSwift'

PACKAGE_REF_ID = '2F0A5C48A15A74750BE517A0'
Expand Down
Loading