Skip to content

Commit

Permalink
fix(android): add getComponentName to engine context interface
Browse files Browse the repository at this point in the history
  • Loading branch information
siguangli2018 authored and zoomchan-cxj committed Dec 15, 2021
1 parent d109fbf commit 92809fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Expand Up @@ -26,6 +26,8 @@
@SuppressWarnings("unused")
public interface HippyEngineContext {

String getComponentName();

HippyGlobalConfigs getGlobalConfigs();

HippyModuleManager getModuleManager();
Expand Down
Expand Up @@ -737,6 +737,7 @@ public void setComponentName(String componentName) {
this.componentName = componentName;
}

@Override
public String getComponentName() {
return componentName;
}
Expand Down

0 comments on commit 92809fc

Please sign in to comment.