Skip to content

Commit cc8b2d8

Browse files
authored
DEF-3925 - Fixes issue on iOS where symbols weren't getting linked into the final binary. (#3)
1 parent 89c4324 commit cc8b2d8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

webview/ext.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
name: WebViewExt
1+
name: WebViewExternal

webview/src/webview_common.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ static dmExtension::Result WebView_Update(dmExtension::Params* params)
297297
return Platform_Update(params);
298298
}
299299

300-
DM_DECLARE_EXTENSION(WebViewExt, "WebView", WebView_AppInitialize, WebView_AppFinalize, WebView_Initialize, WebView_Update, 0, WebView_Finalize)
300+
DM_DECLARE_EXTENSION(WebViewExternal, "WebView", WebView_AppInitialize, WebView_AppFinalize, WebView_Initialize, WebView_Update, 0, WebView_Finalize)
301301

302302

303303
} // namespace

webview/src/webview_null.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
extern "C" void WebViewExt()
1+
extern "C" void WebViewExternal()
22
{
33

44
}

0 commit comments

Comments
 (0)