1.7.0
- Made plugin compatible with other VB products
- Now Android library uses .aar instead of jar files
- Following a standard structure for all of our plugins now to make them compatible
- All events prototypes got changed to accomodate result object
- [Breaking Change] Changed event prototypes to accomodate result data type (standardized callback results)
From
private void DidInitialise(ReplayKitInitialisationState state, string message)
to
private void DidInitialise(InitialiseCompleteResult result, Error error)
From
private void DidRecordingStateChangeEvent(ReplayKitRecordingState state, string error)
to
private void DidRecordingStateChangeEvent(RecordingStateChangeResult result, Error error)
Last modified 6mo ago