File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ## 3.0.2
2+
3+ * Fix a [ bug] ( https://github.com/dart-lang/http/issues/1929 ) where code
4+ assets were built on non-code-assets hook invocations.
5+
16## 3.0.1
27
38* Fix a [ bug] ( https://github.com/dart-lang/http/issues/1925 ) where native
Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ import 'package:native_toolchain_c/native_toolchain_c.dart';
99
1010void main (List <String > args) async {
1111 await build (args, (input, output) async {
12+ if (! input.config.buildCodeAssets) {
13+ return ;
14+ }
1215 if (input.config.code.targetOS != OS .iOS &&
1316 input.config.code.targetOS != OS .macOS) {
1417 return ;
Original file line number Diff line number Diff line change 11name : cupertino_http
2- version : 3.0.1
2+ version : 3.0.2
33description : >-
44 A macOS/iOS Flutter plugin that provides access to the Foundation URL
55 Loading System.
You can’t perform that action at this time.
0 commit comments