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
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
4602278C261F860100A9E913 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4602278A261F860100A9E913 /* Main.storyboard */; };
4602278E261F860300A9E913 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 4602278D261F860300A9E913 /* Assets.xcassets */; };
46022791261F860300A9E913 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4602278F261F860300A9E913 /* LaunchScreen.storyboard */; };
46E3834626582D9600BA2502 /* FlurryDestination.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46E3834526582D9600BA2502 /* FlurryDestination.swift */; };
46E3834C26582D9E00BA2502 /* UIKitScreenTracking.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46E3834826582D9E00BA2502 /* UIKitScreenTracking.swift */; };
46E3834D26582D9E00BA2502 /* ConsentTracking.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46E3834926582D9E00BA2502 /* ConsentTracking.swift */; };
46E3834E26582D9E00BA2502 /* IDFACollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46E3834A26582D9E00BA2502 /* IDFACollection.swift */; };
Expand All @@ -34,7 +33,6 @@
46022792261F860300A9E913 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
460227BC2620C02B00A9E913 /* SegmentUIKitExample-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "SegmentUIKitExample-Bridging-Header.h"; sourceTree = "<group>"; };
469F7AFA265D8D890038E773 /* SegmentUIKitExample.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = SegmentUIKitExample.entitlements; sourceTree = "<group>"; };
46E3834526582D9600BA2502 /* FlurryDestination.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FlurryDestination.swift; sourceTree = "<group>"; };
46E3834826582D9E00BA2502 /* UIKitScreenTracking.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UIKitScreenTracking.swift; sourceTree = "<group>"; };
46E3834926582D9E00BA2502 /* ConsentTracking.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ConsentTracking.swift; sourceTree = "<group>"; };
46E3834A26582D9E00BA2502 /* IDFACollection.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = IDFACollection.swift; sourceTree = "<group>"; };
Expand All @@ -60,7 +58,6 @@
children = (
46E3835026582DA400BA2502 /* tasks */,
46E3834726582D9E00BA2502 /* other_plugins */,
46E3834426582D9600BA2502 /* destination_plugins */,
46022783261F860100A9E913 /* SegmentUIKitExample */,
46022782261F860100A9E913 /* Products */,
46E383552658307800BA2502 /* Frameworks */,
Expand Down Expand Up @@ -91,15 +88,6 @@
path = SegmentUIKitExample;
sourceTree = "<group>";
};
46E3834426582D9600BA2502 /* destination_plugins */ = {
isa = PBXGroup;
children = (
46E3834526582D9600BA2502 /* FlurryDestination.swift */,
);
name = destination_plugins;
path = ../../destination_plugins;
sourceTree = "<group>";
};
46E3834726582D9E00BA2502 /* other_plugins */ = {
isa = PBXGroup;
children = (
Expand Down Expand Up @@ -206,7 +194,6 @@
buildActionMask = 2147483647;
files = (
46E3835326582DA400BA2502 /* CustomScreenTracking.swift in Sources */,
46E3834626582D9600BA2502 /* FlurryDestination.swift in Sources */,
46E3834F26582D9E00BA2502 /* ConsoleLogger.swift in Sources */,
46022789261F860100A9E913 /* Tab1ViewController.swift in Sources */,
46022785261F860100A9E913 /* AppDelegate.swift in Sources */,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,6 @@ class AppDelegate: UIResponder, UIApplicationDelegate {

Analytics.support.add(plugin: ConsoleLogger(name: "support"))
Analytics.support.add(plugin: ConsentTracking(name: "consent"))

// setup flurry on the main instance
// NOTE: This is currently commented out due to lack of arm64 support in the flurry SDK via swift package manager.
//let flurry = FlurryDestination(name: "Flurry", analytics: Analytics.main)
//Analytics.main.add(plugin: flurry)

Analytics.support.track(name: "test event")

Expand Down