TimmyRB / snapkit

SnapKit is a Flutter plugin that allows you to integrate Snapchat's own SDKs into your Flutter projects!
https://pub.dev/packages/snapkit
MIT License
30 stars 16 forks source link

fixing video upload from android #45

Open nnajjar01 opened 2 years ago

nnajjar01 commented 2 years ago

The problem is that snapkit package is currently unavailable to share video on Android.

actually, it's not unavailable as it is described on the package readme page, you can share the video if it's an asset only, and that is because the share function (line 200) uses the rootBundle to load the video The solution is too simple just replace this line: ByteData byteData = await rootBundle.load(videoPath!); with this line: Uint8List byteData = await File(videoPath!).readAsBytes();

now we can call the share function and just give it the video path.