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 CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
### Package Management
- Swift Package Manager: Primary dependency management via `Package.swift`
- CocoaPods: Also supported via `SuperwallKit.podspec`
- Dependencies: `Superscript-iOS` at exact version 1.0.4
- Dependencies: `superscript-ios-next` at exact version 1.0.14 (slim binary-target distribution; replaces the legacy `Superscript-iOS` repo whose committed xcframework bloated clones)

## Architecture Overview

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ let package = Package(
)
],
dependencies: [
.package(url: "https://github.com/superwall/Superscript-iOS", .exact("1.0.13"))
.package(url: "https://github.com/superwall/superscript-ios-next", .exact("1.0.14"))
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "SuperwallKit",
dependencies: [
.product(name: "Superscript", package: "Superscript-iOS")
.product(name: "Superscript", package: "superscript-ios-next")
],
exclude: ["Resources/BundleHelper.swift"],
resources: [
Expand Down
10 changes: 5 additions & 5 deletions SuperwallKit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3149,7 +3149,7 @@
);
mainGroup = 5CE8CEF97A892FFF3D0D8F06;
packageReferences = (
8DF6D231FF02D65F59962D80 /* XCRemoteSwiftPackageReference "Superscript-iOS" */,
8DF6D231FF02D65F59962D80 /* XCRemoteSwiftPackageReference "superscript-ios-next" */,
);
projectDirPath = "";
projectRoot = "";
Expand Down Expand Up @@ -4019,20 +4019,20 @@
/* End XCConfigurationList section */

/* Begin XCRemoteSwiftPackageReference section */
8DF6D231FF02D65F59962D80 /* XCRemoteSwiftPackageReference "Superscript-iOS" */ = {
8DF6D231FF02D65F59962D80 /* XCRemoteSwiftPackageReference "superscript-ios-next" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/superwall/Superscript-iOS";
repositoryURL = "https://github.com/superwall/superscript-ios-next";
requirement = {
kind = exactVersion;
version = 1.0.13;
version = 1.0.14;
};
};
/* End XCRemoteSwiftPackageReference section */

/* Begin XCSwiftPackageProductDependency section */
721C720FA8360B9851DE843D /* Superscript */ = {
isa = XCSwiftPackageProductDependency;
package = 8DF6D231FF02D65F59962D80 /* XCRemoteSwiftPackageReference "Superscript-iOS" */;
package = 8DF6D231FF02D65F59962D80 /* XCRemoteSwiftPackageReference "superscript-ios-next" */;
productName = Superscript;
};
/* End XCSwiftPackageProductDependency section */
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ options:

packages:
Superscript:
url: https://github.com/superwall/Superscript-iOS
exactVersion: "1.0.13"
url: https://github.com/superwall/superscript-ios-next
exactVersion: "1.0.14"

targets:
SuperwallKit:
Expand Down
Loading