File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change
1
+ # 0.5.6
2
+ * Disable LTO on Android to fix [ #80 ] ( https://github.com/google/webcrypto.dart/issues/80 ) .
3
+ * Migrate to ` dart:js_interop ` to ensure [ wasm compatibility] ( https://dart.dev/interop/js-interop/package-web#package-web-vs-dart-html ) .
4
+
1
5
# 0.5.5
2
6
* Adds a namespace in ` build.gradle ` for compatibility with AGP 8.0.
3
7
Original file line number Diff line number Diff line change @@ -36,9 +36,10 @@ include(
36
36
# https://boringssl.googlesource.com/boringssl/+/HEAD/BUILDING.md#binary-size
37
37
add_definitions (-DOPENSSL_SMALL)
38
38
39
- # Enable link time optimization
40
- set (CMAKE_C_FLAGS "${CMAKE_CXX_FLAGS} -flto" )
41
- set (CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -flto" )
39
+ # TODO: Enable link time optimization
40
+ # Requires fixing https://github.com/google/webcrypto.dart/issues/80
41
+ # set(CMAKE_C_FLAGS "${CMAKE_CXX_FLAGS} -flto")
42
+ # set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -flto")
42
43
43
44
# Android ABIs, see also:
44
45
# https://developer.android.com/ndk/guides/abis
Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
15
15
name : webcrypto
16
- version : 0.5.5
16
+ version : 0.5.6
17
17
description : Cross-platform implementation of Web Cryptography APIs for Flutter.
18
18
repository : https://github.com/google/webcrypto.dart
19
19
You can’t perform that action at this time.
0 commit comments