You can generate and share a zip
file of Speedify logs by using the LogGeneration
class:
import com.speedify.speedifysdk.LogGeneration;
...
// To submit log files directly to the directory server
LogGeneration.create(currentActivity, Arrays.asList(new LogGeneration.SubmitToDirectory("user@email.com", "description of issue");));
// or
// To generate a share dialog with the log zip
LogGeneration.create(currentActivity, Arrays.asList(new LogGeneration.LaunchShareSheet()));
You may also generate logs via adb by launching it's intent, replacing your.package.id
with the package ID of your application :
adb shell am start -a your.package.id.speedifysdk.sharelogs
These will generate a Share dialog allowing you to choose where the log file is sent to.