-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: upgraded to the latest version of appsflyer sdk and added suppo…
…rt for new events
- Loading branch information
Desu Sai Venkat
committed
Apr 19, 2023
1 parent
ef17b38
commit fa9ddc7
Showing
16 changed files
with
630 additions
and
229 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,29 @@ | ||
PODS: | ||
- AppsFlyerFramework (6.9.1): | ||
- AppsFlyerFramework/Main (= 6.9.1) | ||
- AppsFlyerFramework/Main (6.9.1) | ||
- FBSnapshotTestCase (2.1.4): | ||
- FBSnapshotTestCase/SwiftSupport (= 2.1.4) | ||
- FBSnapshotTestCase/Core (2.1.4) | ||
- FBSnapshotTestCase/SwiftSupport (2.1.4): | ||
- FBSnapshotTestCase/Core | ||
- Rudder (1.8.0) | ||
- Rudder-Appsflyer (2.1.0): | ||
- AppsFlyerFramework (~> 6.9.1) | ||
- Rudder (~> 1.0) | ||
- AppsFlyerFramework (6.10.1): | ||
- AppsFlyerFramework/Main (= 6.10.1) | ||
- AppsFlyerFramework/Main (6.10.1) | ||
- Rudder (1.13.0) | ||
- Rudder-Appsflyer (2.2.0): | ||
- AppsFlyerFramework (~> 6.10) | ||
- Rudder (~> 1.12) | ||
|
||
DEPENDENCIES: | ||
- FBSnapshotTestCase | ||
- Rudder-Appsflyer (from `../`) | ||
|
||
SPEC REPOS: | ||
trunk: | ||
- AppsFlyerFramework | ||
- FBSnapshotTestCase | ||
- Rudder | ||
|
||
EXTERNAL SOURCES: | ||
Rudder-Appsflyer: | ||
:path: "../" | ||
|
||
SPEC CHECKSUMS: | ||
AppsFlyerFramework: dc9aa675faa8e1a2ed40fb295d3c5408ee2b972a | ||
FBSnapshotTestCase: 094f9f314decbabe373b87cc339bea235a63e07a | ||
Rudder: 0a5272646aa3b89295526cea2bf54d092044848a | ||
Rudder-Appsflyer: e1f26d1d24d3a9351c7079b3f9c87815680da426 | ||
AppsFlyerFramework: 88a6eed37ad52bcee4ad74232efa8e22809d06c9 | ||
Rudder: 840bf4dfd9816ce6a82cb8870f1a2d4a44ed2652 | ||
Rudder-Appsflyer: 94b945c1dff963d5e655719980453ccbb9c083eb | ||
|
||
PODFILE CHECKSUM: 72f0e785b3e2e2c1b9276c5aee9c1558d47208ad | ||
PODFILE CHECKSUM: 49c77f0049a9ff4b4e9202c3918c8ff06a57b815 | ||
|
||
COCOAPODS: 1.11.3 | ||
COCOAPODS: 1.12.0 |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
Example/Rudder-Appsflyer/RudderConfig/Rudder-Appsflyer_Example-Bridging-Header.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// | ||
// Use this file to import your target's public headers that you would like to expose to Swift. | ||
// | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// | ||
// RudderConfig.swift | ||
// Rudder-Appsflyer | ||
// | ||
// Created by Desu Sai Venkat on 12/04/23. | ||
// | ||
import Foundation | ||
|
||
@objc | ||
class RudderConfig: NSObject, Codable { | ||
@objc let WRITE_KEY: String | ||
@objc let PROD_DATA_PLANE_URL: String | ||
@objc let PROD_CONTROL_PLANE_URL: String | ||
@objc let LOCAL_DATA_PLANE_URL: String | ||
@objc let LOCAL_CONTROL_PLANE_URL: String | ||
@objc let DEV_DATA_PLANE_URL: String | ||
@objc let DEV_CONTROL_PLANE_URL: String | ||
|
||
@objc | ||
class func create(from url: URL) -> RudderConfig? { | ||
if let data = try? Data(contentsOf: url), | ||
let rudderConfig = try? PropertyListDecoder().decode(RudderConfig.self, from: data) { | ||
return rudderConfig | ||
} | ||
return nil | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
Example/Rudder-Appsflyer/RudderConfig/SampleRudderConfig.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<!-- | ||
SampleRudderConfig.plist | ||
Rudder-Appsflyer | ||
Created by Desu Sai Venkat on 13/04/23. | ||
Copyright (c) 2023 arnabp92. All rights reserved. | ||
--> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>WRITE_KEY</key> | ||
<string></string> | ||
<key>PROD_DATA_PLANE_URL</key> | ||
<string></string> | ||
<key>PROD_CONTROL_PLANE_URL</key> | ||
<string></string> | ||
<key>LOCAL_DATA_PLANE_URL</key> | ||
<string></string> | ||
<key>LOCAL_CONTROL_PLANE_URL</key> | ||
<string></string> | ||
<key>DEV_DATA_PLANE_URL</key> | ||
<string></string> | ||
<key>DEV_CONTROL_PLANE_URL</key> | ||
<string></string> | ||
</dict> | ||
</plist> |
Oops, something went wrong.