diff --git a/build/config/fuchsia/gn_configs.gni b/build/config/fuchsia/gn_configs.gni index 5f04aa7aca9f0..a35fac7bf60ea 100644 --- a/build/config/fuchsia/gn_configs.gni +++ b/build/config/fuchsia/gn_configs.gni @@ -25,7 +25,7 @@ declare_args() { # value to specify the API level the packages produced from this repository # should be targeting, e.g. in their top-level //.gn file. A value of -1 # means that no API level will be passed to the tools that consumes it. -fuchsia_target_api_level = 18 +fuchsia_target_api_level = 19 # The SDK manifest file. This is useful to include as a dependency # for some targets in order to cause a rebuild when the version of the diff --git a/tools/fuchsia/build_fuchsia_artifacts_test.py b/tools/fuchsia/build_fuchsia_artifacts_test.py index 316b867808ce8..bf50b6983598c 100755 --- a/tools/fuchsia/build_fuchsia_artifacts_test.py +++ b/tools/fuchsia/build_fuchsia_artifacts_test.py @@ -11,7 +11,7 @@ def test_read_fuchsia_target_api_level(self): # It's expected to update this test each time the fuchsia_target_api_level # in //flutter/build/config/fuchsia/gn_configs.gni is changed, so we don't # accidentally publish the artifacts with an incorrect api level suffix. - self.assertEqual(build_fuchsia_artifacts.ReadTargetAPILevel(), '18') + self.assertEqual(build_fuchsia_artifacts.ReadTargetAPILevel(), '19') if __name__ == '__main__':