Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Recommended build setting removal of Code_signing_identity #1010

Merged
merged 5 commits into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
8 changes: 4 additions & 4 deletions Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ PODS:
- SwiftLint (0.52.0)

DEPENDENCIES:
- AEPRulesEngine (from `https://github.com/adobe/aepsdk-rulesengine-ios.git`, branch `staging`)
- AEPRulesEngine (from `https://github.com/adobe/aepsdk-rulesengine-ios.git`, branch `main`)
- SwiftLint (= 0.52.0)

SPEC REPOS:
Expand All @@ -12,18 +12,18 @@ SPEC REPOS:

EXTERNAL SOURCES:
AEPRulesEngine:
:branch: staging
:branch: main
:git: https://github.com/adobe/aepsdk-rulesengine-ios.git

CHECKOUT OPTIONS:
AEPRulesEngine:
:commit: 7750ad5041c23c76053713441546116738e0fdcb
:commit: 514d2b3787c545bfa6749ffce5dd3e6f560c9319
:git: https://github.com/adobe/aepsdk-rulesengine-ios.git

SPEC CHECKSUMS:
AEPRulesEngine: fe5800653a4bee07b1e41e61b4d5551f0dba557b
SwiftLint: 13280e21cdda6786ad908dc6e416afe5acd1fcb7

PODFILE CHECKSUM: a44ac53a3add19e798640cae6e55c46c924d1a3d
PODFILE CHECKSUM: 97254cbd04fab126044d7f41eb570457b9466316

COCOAPODS: 1.14.3
8 changes: 8 additions & 0 deletions TestProject/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.DS_Store
/.build
/Packages
xcuserdata/
DerivedData/
.swiftpm/configuration/registries.json
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
.netrc
31 changes: 31 additions & 0 deletions TestProject/Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
// swift-tools-version:5.3
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
emdobrin marked this conversation as resolved.
Show resolved Hide resolved
let package = Package(
name: "TestProject",
defaultLocalization: "en-US",
platforms: [
.iOS(.v12), .tvOS(.v12)
],
products: [
.library(
name: "TestProject",
targets: ["TestProject"]
)
],
dependencies: [
.package(name: "AEPCore", path: "../"),
],
targets: [
.target(
name: "TestProject",
dependencies: [
.product(name: "AEPCore", package: "AEPCore"),
.product(name: "AEPIdentity", package: "AEPCore"),
.product(name: "AEPLifecycle", package: "AEPCore"),
.product(name: "AEPServices", package: "AEPCore"),
.product(name: "AEPSignal", package: "AEPCore"),
])
]
)

2 changes: 2 additions & 0 deletions TestProject/Sources/TestProject/TestProject.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// The Swift Programming Language
// https://docs.swift.org/swift-book
12 changes: 12 additions & 0 deletions TestProject/Tests/TestProjectTests/TestProjectTests.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import XCTest
@testable import TestProject

final class TestProjectTests: XCTestCase {
func testExample() throws {
// XCTest Documentation
// https://developer.apple.com/documentation/xctest

// Defining Test Cases and Test Methods
// https://developer.apple.com/documentation/xctest/defining_test_cases_and_test_methods
}
}