Skip to content

Commit 48db60b

Browse files
authored
[webview_flutter_lwe] Fix bugs for Tizen 10.0 support (#876)
1 parent ac6b72d commit 48db60b

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

packages/webview_flutter_lwe/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## NEXT
1+
## 0.3.9
22

33
* Update code format.
4+
* Fix bugs for Tizen 10.0 support
45

56
## 0.3.8
67

packages/webview_flutter_lwe/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This package is not an _endorsed_ implementation of `webview_flutter`. Therefore
2121
```yaml
2222
dependencies:
2323
webview_flutter: ^4.10.0
24-
webview_flutter_lwe: ^0.3.8
24+
webview_flutter_lwe: ^0.3.9
2525
```
2626
2727
## Example

packages/webview_flutter_lwe/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: webview_flutter_lwe
22
description: Tizen implementation of the webview_flutter plugin backed by Lightweight Web Engine.
33
homepage: https://github.com/flutter-tizen/plugins
44
repository: https://github.com/flutter-tizen/plugins/tree/master/packages/webview_flutter_lwe
5-
version: 0.3.8
5+
version: 0.3.9
66

77
environment:
88
sdk: ^3.5.0

packages/webview_flutter_lwe/tizen/project_def.prop

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ USER_CPP_INC_FILES =
2121

2222
# Linker options
2323
USER_LIB_DIRS = lib/${BUILD_ARCH}
24-
USER_LIBS = pthread lightweight-web-engine.flutter tuv lightweight-web-engine.flutter-impl
24+
USER_LIBS = pthread stdc++ lightweight-web-engine.flutter tuv lightweight-web-engine.flutter-impl
2525
USER_LFLAGS = -Wl,-rpath='$$ORIGIN'

packages/webview_flutter_lwe/tizen/src/buffer_pool.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,8 @@ void SingleBufferPool::Release(BufferUnit* buffer) {}
114114

115115
#ifndef NDEBUG
116116
#include <cairo.h>
117+
118+
#include <cstdio>
117119
void BufferUnit::DumpToPng(int file_name) {
118120
char file_path[256];
119121
sprintf(file_path, "/tmp/dump%d.png", file_name);

0 commit comments

Comments
 (0)