Skip to content

Commit e46446e

Browse files
authored
Fix tvOS 13 build break (#3550)
1 parent 3cd9695 commit e46446e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GoogleDataTransport/GDTLibrary/GDTPlatform.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ - (instancetype)init {
7676
object:nil];
7777

7878
#if defined(__IPHONE_13_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000
79-
if (@available(iOS 13, *)) {
79+
if (@available(iOS 13, tvOS 13.0, *)) {
8080
[notificationCenter addObserver:self
8181
selector:@selector(iOSApplicationWillEnterForeground:)
8282
name:UISceneWillEnterForegroundNotification

0 commit comments

Comments
 (0)