-
public interface ExtensionSupportIn case you need to provide different configuration for a specific Android UI framework that is not supported by our SR instrumentation layer (e.g Material elements) you can implement this class.
-
-
Method Summary
Modifier and Type Method Description abstract Map<SessionReplayPrivacy, Map<Class<?>, WireframeMapper<View, ?>>>getCustomViewMappers()Use this method if you want to apply a custom WireframeMapper for a specific View type and for a specific SessionReplayPrivacy. abstract List<OptionSelectorDetector>getOptionSelectorDetectors()Implement this method if you need to return some specific implementations for the OptionSelectorDetector. -
-
Method Detail
-
getCustomViewMappers
abstract Map<SessionReplayPrivacy, Map<Class<?>, WireframeMapper<View, ?>>> getCustomViewMappers()
Use this method if you want to apply a custom WireframeMapper for a specific View type and for a specific SessionReplayPrivacy.
-
getOptionSelectorDetectors
abstract List<OptionSelectorDetector> getOptionSelectorDetectors()
Implement this method if you need to return some specific implementations for the OptionSelectorDetector.
-
-
-
-