File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1+ ## 9.2.0+1
2+
3+ - Fix [ bug] ( https://github.com/dart-lang/native/issues/2824 ) where the build
4+ hook was trying to access the code config if it was not provided.
5+
16## 9.2.0
27
38- Migrate to from a Flutter plugin to native assets. This enables
Original file line number Diff line number Diff line change @@ -27,6 +27,11 @@ final logger = Logger('')
2727
2828void main (List <String > args) async {
2929 await build (args, (input, output) async {
30+ if (! input.config.buildCodeAssets) {
31+ // Don't build any other asset types.
32+ return ;
33+ }
34+
3035 const supportedOSs = {OS .iOS, OS .macOS};
3136 final os = input.config.code.targetOS;
3237 if (! supportedOSs.contains (os)) {
Original file line number Diff line number Diff line change 44
55name : objective_c
66description : ' A library to access Objective C from Flutter that acts as a support library for package:ffigen.'
7- version : 9.2.0
7+ version : 9.2.0+1
88repository : https://github.com/dart-lang/native/tree/main/pkgs/objective_c
99issue_tracker : https://github.com/dart-lang/native/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aobjective_c
1010
You can’t perform that action at this time.
0 commit comments