File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change
1
+ # v8.9.0
2
+ - [ fixed] Fix device-only build warning for unused ` processIsTranslated ` function. (#8694 )
3
+
1
4
# v8.8.0
2
5
- [ fixed] Firebase dynamic links with custom domain will only work if the custom domain has a trailing '/'. (#7087 )
3
6
Original file line number Diff line number Diff line change @@ -155,6 +155,7 @@ - (void)webView:(WKWebView *)webView
155
155
// and -1 when an error occurs.
156
156
// From:
157
157
// https://developer.apple.com/documentation/apple-silicon/about-the-rosetta-translation-environment
158
+ #if TARGET_OS_SIMULATOR
158
159
static int processIsTranslated () {
159
160
int ret = 0 ;
160
161
size_t size = sizeof (ret);
@@ -164,6 +165,7 @@ static int processIsTranslated() {
164
165
}
165
166
return ret;
166
167
}
168
+ #endif
167
169
168
170
@end
169
171
You can’t perform that action at this time.
0 commit comments