Skip to content
Open
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 changes: 1 addition & 1 deletion ios/HelpscoutBeacon.m
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ - (dispatch_queue_t)methodQueue

// Store beaconUser locally
beaconUser = user;
[HSBeacon login:user];
[HSBeacon identify:user];
}

RCT_EXPORT_METHOD(addAttributeWithKey:(NSString *)key valueParameter:(NSString *)value)
Expand Down
4 changes: 2 additions & 2 deletions react-native-helpscout-beacon.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ Pod::Spec.new do |s|
s.version = package["version"]
s.summary = package["description"]
s.description = <<-DESC
react-native-helpscout-beacon
React Native module for the Help Scout Beacon SDK
DESC
s.homepage = "https://github.com/Driversnote-Dev/react-native-helpscout-beacon"
s.license = "MIT"
# s.license = { :type => "MIT", :file => "FILE_LICENSE" }
s.authors = { "Driversnote.com" => "ja@driversnote.com" }
s.platforms = { :ios => "9.0" }
s.source = { :git => "https://github.com/Driversnote-Dev/react-native-helpscout-beacon.git", :tag => "master" }
s.source = { :git => "https://github.com/Driversnote-Dev/react-native-helpscout-beacon.git", :tag => package["version"] }

s.source_files = "ios/**/*.{h,m,swift}"
s.requires_arc = true
Expand Down