-
Notifications
You must be signed in to change notification settings - Fork 4
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
Rsmith/support swift #74
Changes from 22 commits
fe5c792
a79516f
9bf9513
e77c1f2
c28fd6c
0fa5c47
48d69f9
906c998
c6d0abe
25807a5
a4c305c
1ecb502
407c7b3
dff4951
e72768d
4bb4981
eb6b717
708b640
c0de75f
0bf29e1
cf0df4e
faea269
13007ab
f1f69e6
f9fa19a
fa56e43
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Scheme | ||
LastUpgradeVersion = "1520" | ||
version = "1.7"> | ||
<BuildAction | ||
parallelizeBuildables = "YES" | ||
buildImplicitDependencies = "NO"> | ||
<BuildActionEntries> | ||
<BuildActionEntry | ||
buildForTesting = "YES" | ||
buildForRunning = "YES" | ||
buildForProfiling = "YES" | ||
buildForArchiving = "YES" | ||
buildForAnalyzing = "YES"> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "588EB71B2995BC3A00C0163A" | ||
BuildableName = "ExampleSwift - SPM.app" | ||
BlueprintName = "ExampleSwift - SPM" | ||
ReferencedContainer = "container:ExampleSwift.xcodeproj"> | ||
</BuildableReference> | ||
</BuildActionEntry> | ||
</BuildActionEntries> | ||
</BuildAction> | ||
<TestAction | ||
buildConfiguration = "Debug" | ||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | ||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | ||
shouldUseLaunchSchemeArgsEnv = "YES" | ||
shouldAutocreateTestPlan = "YES"> | ||
</TestAction> | ||
<LaunchAction | ||
buildConfiguration = "Debug" | ||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | ||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | ||
launchStyle = "0" | ||
useCustomWorkingDirectory = "NO" | ||
ignoresPersistentStateOnLaunch = "NO" | ||
debugDocumentVersioning = "YES" | ||
debugServiceExtension = "internal" | ||
allowLocationSimulation = "YES"> | ||
<BuildableProductRunnable | ||
runnableDebuggingMode = "0"> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "588EB71B2995BC3A00C0163A" | ||
BuildableName = "ExampleSwift - SPM.app" | ||
BlueprintName = "ExampleSwift - SPM" | ||
ReferencedContainer = "container:ExampleSwift.xcodeproj"> | ||
</BuildableReference> | ||
</BuildableProductRunnable> | ||
</LaunchAction> | ||
<ProfileAction | ||
buildConfiguration = "Release" | ||
shouldUseLaunchSchemeArgsEnv = "YES" | ||
savedToolIdentifier = "" | ||
useCustomWorkingDirectory = "NO" | ||
debugDocumentVersioning = "YES"> | ||
<BuildableProductRunnable | ||
runnableDebuggingMode = "0"> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "588EB71B2995BC3A00C0163A" | ||
BuildableName = "ExampleSwift - SPM.app" | ||
BlueprintName = "ExampleSwift - SPM" | ||
ReferencedContainer = "container:ExampleSwift.xcodeproj"> | ||
</BuildableReference> | ||
</BuildableProductRunnable> | ||
</ProfileAction> | ||
<AnalyzeAction | ||
buildConfiguration = "Debug"> | ||
</AnalyzeAction> | ||
<ArchiveAction | ||
buildConfiguration = "Release" | ||
revealArchiveInOrganizer = "YES"> | ||
</ArchiveAction> | ||
</Scheme> |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"object": { | ||
"pins": [ | ||
{ | ||
"package": "ATTNSDKFramework", | ||
"repositoryURL": "https://github.com/attentive-mobile/attentive-ios-sdk", | ||
"state": { | ||
"branch": "rsmith/support-swift", | ||
"revision": "0bf29e1001e180c0b84fe8e2bd350de7232a8346", | ||
"version": null | ||
} | ||
} | ||
] | ||
}, | ||
"version": 1 | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// swift-tools-version:5.3 | ||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "ExampleSwift", | ||
platforms: [ | ||
.iOS(.v12) | ||
], | ||
products: [ | ||
.library( | ||
name: "ExampleSwift", | ||
targets: ["ExampleSwift"]), | ||
], | ||
dependencies: [ | ||
.package(url: "https://github.com/attentive-mobile/attentive-ios-sdk", .branch("rsmith/support-swift")) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. will adapt this to point to main once this PR is merged |
||
], | ||
targets: [ | ||
.target( | ||
name: "ExampleSwift", | ||
dependencies: [ | ||
.product(name: "ATTNSDKFramework", package: "attentive-ios-sdk")], | ||
path: "ExampleSwift" // Ensure this path exists and is correct | ||
), | ||
] | ||
) |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// swift-tools-version:5.9 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "ATTNSDKFramework", | ||
platforms: [.iOS(.v12)], | ||
products: [ | ||
.library(name: "ATTNSDKFramework", targets: ["ATTNSDKFramework"]) | ||
|
||
], | ||
targets: [ | ||
.target( | ||
name: "ATTNSDKFramework", | ||
path: "Sources/" | ||
) | ||
] | ||
) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#import <Foundation/Foundation.h> | ||
|
||
FOUNDATION_EXPORT double ATTNSDKFrameworkVersionNumber; | ||
|
||
FOUNDATION_EXPORT const unsigned char ATTNSDKFrameworkVersionString[]; | ||
|
||
#import <../ATTNSDK.h> | ||
#import <../ATTNUserIdentity.h> | ||
#import <../ATTNEventTracker.h> | ||
#import <../ATTNItem.h> | ||
#import <../ATTNPrice.h> | ||
#import <../ATTNEvent.h> | ||
#import <../ATTNPurchaseEvent.h> | ||
#import <../ATTNProductViewEvent.h> | ||
#import <../ATTNAddToCartEvent.h> | ||
#import <../ATTNOrder.h> | ||
#import <../ATTNCart.h> | ||
#import <../ATTNCustomEvent.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will adapt this to be main once this PR is merged