Beacon
Help scout mobile SDK implementation for Flutter
Overview
This plugin implements Help Scout official native SDK Learn more
Requirements
For Android
minSDKVersion
: 21(Android 5.0) or latercompiledSDK
: 29(Android 10)- Java 8 feature support
- Beacon needs Internet support Learn more
iOS
Note: For this plugin to work, set your minimum deployment target
to iOS 11.0
Add the following permission to your info.plist
file (Optional)
NSPhotoLibraryUsageDescription
NSCameraUsageDescription
NSMicrophoneUsageDescription
NSPhotoLibraryAddUsageDescription
Getting started
Setup beacon with your Beacon ID
and user's email address and name (optional)
final Beacon _beacon = Beacon(
beaconId: "XXX-XXX-XXX-XXXX-XXX",
email: "example@gmail.com",
name: "John Doe");
Launch beacon by calling _beacon.open()
method
`_beacon.open();`