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

chore: update dependencies #38

Merged
merged 12 commits into from
Oct 1, 2024
Merged

Conversation

andrewjl-mux
Copy link
Contributor

@andrewjl-mux andrewjl-mux commented Sep 30, 2024

  • Update Mux Data AVPlayer and Core SDK dependencies
  • Replace Specta unit tests with XCTest
  • Clean-up

* switch to plain text in LICENSE

* move run-tests script to scripts

* remove unnecessary example files

* stop tracking Podfile.lock changes

* stop tracking Pods directory content changes

* remove old comment about travis CI, it is no longer used
@andrewjl-mux andrewjl-mux requested a review from a team as a code owner September 30, 2024 16:55
@andrewjl-mux andrewjl-mux force-pushed the ajlb/chore/update-dependencies branch 3 times, most recently from 0a2c7dc to 2a38f7a Compare September 30, 2024 18:05
Copy link
Contributor

@daytime-em daytime-em left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

Had a non-blocking question about whether we should remove Podfile.lock

Example/Podfile.lock Outdated Show resolved Hide resolved
[_playerBinding dispatchAdEvent: playbackEvent];
} else {
_sendAdplayOnStarted = YES;
}
playbackEvent = [MUXSDKAdPlayingEvent new];
playbackEvent = [[MUXSDKAdPlayingEvent alloc] init];
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Calling alloc and init is equivalent to new. new doesn't support custom initializers (initializers other than init, typically these take an argument). Modern Objective-C recommends use of custom initializers or factory methods (+ (instancetype)factoryMethodA) for more explicitness. See here..

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Everything here is compiled with Automatic Reference Counting enabled, which disallows explicit management of reference counts except in limited circumstances. Bridging calls to older APIs. Not used in this SDK.

@andrewjl-mux andrewjl-mux merged commit 82e8644 into master Oct 1, 2024
1 check passed
andrewjl-mux added a commit that referenced this pull request Oct 1, 2024
andrewjl-mux added a commit that referenced this pull request Oct 1, 2024
@andrewjl-mux
Copy link
Contributor Author

Release branch PR: #40

@andrewjl-mux andrewjl-mux deleted the ajlb/chore/update-dependencies branch October 1, 2024 17:33
@andrewjl-mux
Copy link
Contributor Author

LGTM!

Had a non-blocking question about whether we should remove Podfile.lock

#38 (comment)

daytime-em pushed a commit that referenced this pull request Oct 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants