Skip to content

Various build and test fixes #461

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

Merged
merged 1 commit into from
Nov 16, 2017
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
2,447 changes: 1,221 additions & 1,226 deletions Example/Firebase.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,16 @@
ReferencedContainer = "container:Firebase.xcodeproj">
</BuildableReference>
</TestableReference>
<TestableReference
skipped = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "DE53893D1FBB62E100199FC2"
BuildableName = "Auth_Tests_tvOS.xctest"
BlueprintName = "Auth_Tests_tvOS"
ReferencedContainer = "container:Firebase.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
<MacroExpansion>
<BuildableReference
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "DE5389291FBB62E100199FC2"
BlueprintIdentifier = "DE1FAE8F1FBCF5E100897AAA"
BuildableName = "Auth_Example_tvOS.app"
BlueprintName = "Auth_Example_tvOS"
ReferencedContainer = "container:Firebase.xcodeproj">
Expand Down Expand Up @@ -43,7 +43,7 @@
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "DE5389291FBB62E100199FC2"
BlueprintIdentifier = "DE1FAE8F1FBCF5E100897AAA"
BuildableName = "Auth_Example_tvOS.app"
BlueprintName = "Auth_Example_tvOS"
ReferencedContainer = "container:Firebase.xcodeproj">
Expand All @@ -67,7 +67,7 @@
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "DE5389291FBB62E100199FC2"
BlueprintIdentifier = "DE1FAE8F1FBCF5E100897AAA"
BuildableName = "Auth_Example_tvOS.app"
BlueprintName = "Auth_Example_tvOS"
ReferencedContainer = "container:Firebase.xcodeproj">
Expand All @@ -86,7 +86,7 @@
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "DE5389291FBB62E100199FC2"
BlueprintIdentifier = "DE1FAE8F1FBCF5E100897AAA"
BuildableName = "Auth_Example_tvOS.app"
BlueprintName = "Auth_Example_tvOS"
ReferencedContainer = "container:Firebase.xcodeproj">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@
ReferencedContainer = "container:Firebase.xcodeproj">
</BuildableReference>
</TestableReference>
<TestableReference
skipped = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "DE1FAEA31FBCF5E200897AAA"
BuildableName = "Auth_Example_tvOSTests.xctest"
BlueprintName = "Auth_Example_tvOSTests"
ReferencedContainer = "container:Firebase.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
<AdditionalOptions>
</AdditionalOptions>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
skipped = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "DE1CD5AA1FBA55AF00FC031E"
BlueprintIdentifier = "DE1EC27E1FBA5E63007D18D8"
BuildableName = "Database_Tests_tvOS.xctest"
BlueprintName = "Database_Tests_tvOS"
ReferencedContainer = "container:Firebase.xcodeproj">
Expand Down
2 changes: 1 addition & 1 deletion Firebase/Auth/Source/FIRAuthAPNSTokenManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ - (void)getTokenWithCallback:(FIRAuthAPNSTokenCallback)callback {
} else {
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
#if !defined(TARGET_OS_TV)
#if !TARGET_OS_TV
[_application registerForRemoteNotificationTypes:UIRemoteNotificationTypeAlert];
#endif // !defined(TARGET_OS_TV)
#pragma clang diagnostic pop
Expand Down