Help scout mobile SDK implementation for Flutter
This plugin implements Help Scout official native SDK Learn more
minSDKVersion
: 21(Android 5.0) or latercompiledSDK
: 29(Android 10)- Java 8 feature support
- Beacon needs Internet support Learn more
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
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();`