Skip to content

Commit

Permalink
fix: add @ symbol to string
Browse files Browse the repository at this point in the history
  • Loading branch information
russellwheatley committed Nov 25, 2024
1 parent 6bf5926 commit 80c90e8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -175,11 +175,11 @@ - (NSDictionary *_Nonnull)pluginConstantsForFIRApp:(FIRApp *)firebase_app {
}

- (NSString *_Nonnull)firebaseLibraryName {
return LIBRARY_NAME;
return @LIBRARY_NAME;
}

- (NSString *_Nonnull)firebaseLibraryVersion {
return LIBRARY_VERSION;
return @LIBRARY_VERSION;
}

- (NSString *_Nonnull)flutterChannelName {
Expand Down

0 comments on commit 80c90e8

Please sign in to comment.