Skip to content

Commit edf1e6d

Browse files
Messaging: fix a warning in macOS build and sample podfile file path (#6070)
1 parent da034ba commit edf1e6d

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

Example/watchOSSample/Podfile

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@ use_frameworks!
33
target 'SampleWatchAppWatchKitExtension' do
44
platform :watchos, '6.0'
55

6-
pod 'FirebaseCore', :path => '../../../../../'
7-
pod 'GoogleUtilities', :path => '../../../../../'
8-
pod 'FirebaseMessaging', :path => '../../../../../'
9-
pod 'FirebaseInstanceID', :path => '../../../../../'
10-
pod 'FirebaseCoreDiagnostics', :path => '../../../../../'
11-
pod 'GoogleDataTransport', :path => '../../../../../'
12-
pod 'FirebaseInstallations', :path => '../../../../../'
13-
pod 'FirebaseStorage', :path => '../../../../../'
6+
pod 'FirebaseCore', :path => '../../'
7+
pod 'GoogleUtilities', :path => '../../'
8+
pod 'FirebaseMessaging', :path => '../../'
9+
pod 'FirebaseInstanceID', :path => '../../'
10+
pod 'FirebaseCoreDiagnostics', :path => '../../'
11+
pod 'GoogleDataTransport', :path => '../../'
12+
pod 'FirebaseInstallations', :path => '../../'
13+
pod 'FirebaseStorage', :path => '../../'
1414

1515
end
1616

1717
target 'ServiceExtension' do
1818
platform :watchos, '6.0'
19-
pod 'FirebaseMessaging', :path => '../../../../../'
20-
pod 'FirebaseInstanceID', :path => '../../../../../'
19+
pod 'FirebaseMessaging', :path => '../../'
20+
pod 'FirebaseInstanceID', :path => '../../'
2121
end

FirebaseMessaging/Tests/UnitTests/FIRMessagingContextManagerServiceTest.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
static NSString *const kMessageIdentifierKey = @"gcm.message_id";
3232
static NSString *const kMessageIdentifierValue = @"1584748495200141";
3333

34+
API_AVAILABLE(macos(10.14))
3435
@interface FIRMessagingContextManagerServiceTest : XCTestCase
3536

3637
@property(nonatomic, readwrite, strong) NSDateFormatter *dateFormatter;

0 commit comments

Comments
 (0)