-
public interface FeatureInterface to be implemented by the feature, which doesn't require any storage, to be registered with SdkCore.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classFeature.Companion
-
Method Summary
-
-
Method Detail
-
onInitialize
abstract Unit onInitialize(Context appContext)
This method is called during feature initialization. At this stage feature should setup itself.
- Parameters:
appContext- Application context.
-
onStop
abstract Unit onStop()
This method is called during feature de-initialization. At this stage feature should stop itself and release resources held.
-
-
-
-